/* =========================
    HEADER CSS STARTS
========================= */
    :root {
      --primary-color: #f76500; 
      --light-color: #f7e9e9;
    }
    
    .full-header {
      background: white;
      box-shadow: 0 2px 12px rgba(0,0,0,0.12);
      position: static;
      
    }

    /*@media (min-width: 992px) {*/
    /*  .full-header {*/
    /*    top: 0;*/
    /*    z-index: 1050;*/
    /*  }*/
    /*}*/
    /* =========================
   SEARCH POPUP
========================= */
.search-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.search-popup.open {
    display: flex;
}

.search-box {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 30px;
    width: 90%;
    max-width: 540px;
    position: relative;
    animation: searchPopIn 0.25s ease;
}

@keyframes searchPopIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.search-input {
    width: 100%;
    height: 52px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: var(--font-family);
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-submit {
    margin-top: 12px;
    width: 100%;
    height: 48px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-family);
}

.search-submit:hover {
    background: #7e2a2a;
}

.close-search {
    position: absolute;
    top: 13px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.close-search:hover {
    background: var(--primary-color);
    color: #fff;
}

    .utility-bar { background: var(--primary-color); color: #fff; font-size: 13px; padding: 5px 0; position: sticky;}
    .logo-bar { background: #fff; padding: 5px 0; border-bottom: 1px solid #eee; }

    .brand-hindi { font-size: 16.5px; font-weight: 700; color:#e2002b; }
    .brand-english { font-size: 14.5px; font-weight: 600; color: #222; }
    .govt-tag { font-size: 12px; color: #555; }

    .main-nav { background: var(--primary-gradient); padding: .2rem 0; }

    .nav-icon {
      width: 30px; height: 30px;
      background: var(--light-color);
      color: var(--primary-color);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .nav-icon:hover {
      background: #fff;
      color: #873534;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-size: 16px;
      font-weight: 500;
      padding: 10px 16px;
          margin: 0px 8px;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
      color: #fff !important;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
    }
    .nav-link:focus-visible {
    outline: 0 !important;
    box-shadow: 0 0 0 .5rem rgb(226 226 226 / 1%) !important;
}

    .utility-tools {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      white-space: nowrap;
    }

    .lang-toggle {
      width: 38px;
      height: 20px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .35);
      border: 0;
      position: relative;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .lang-toggle .knob {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #fff;
      transition: .25s;
    }
    .lang-toggle.active .knob {
      left: 20px;
    }

    .font-size-switch {
      display: flex;
      gap: 4px;
    }
    .fs-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .25);
      color: #ac4545;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .2s;
    }
    .fs-btn.active {
      background: #fff;
      color: var(--primary-color);
    }
    @media (min-width: 992px) {
  .utility-bar {
    position: sticky;
    top: 0;
    z-index: 1050;
  }
}

    /* Dropdown Styling */
    .dropdown-submenu { position: relative; }

    @media (min-width: 992px) {
      .dropdown-submenu.open > .dropdown-menu { left: 100%; top: 0; }
    }

    @media (max-width: 991.98px) {
      .navbar-nav .dropdown-menu {
        position: static; float: none; box-shadow: none;
      }
      .dropdown-submenu > .dropdown-menu {
        margin-left: 14px;
      }
    }

    @media (max-width: 575.98px) {
      .utility-bar .container-fluid {
        flex-direction: column; align-items: flex-start !important; gap: 10px;
      }
    }

    .dropdown-menu {
      border-radius: 3px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      border: none;
      padding: 8px 0;
      min-width: 220px;
    }

    .dropdown-item {
        font-size:14px;
      padding: 11px 20px;
      color: #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .dropdown-item:hover, .dropdown-item.active {
      background: #f8e9e9 !important;
      color: var(--primary-color) !important;
    }

    .dropdown-toggle::after { display: none !important; }

    .submenu-caret { font-size: 13px; transition: transform 0.25s ease; }
    .dropdown-submenu.open > .dropdown-toggle .submenu-caret { transform: rotate(-90deg); }

    .dropdown-toggle > .fa-chevron-down { transition: transform 0.25s ease; }
    .dropdown.open > .dropdown-toggle > .fa-chevron-down { transform: rotate(180deg); }
    
    /* Force hide Google Translate toolbar */
.skiptranslate iframe { display: none !important; }
body { top: 0px !important; }
#goog-gt-tt { display: none !important; }
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
/* =========================
    HEADER CSS ENDS AND LENIS SCROLL STARTS
========================= */
/* Fix for sticky elements during smooth scrolling */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Ensure the pinned header is not affected by Lenis transform calculations */
.main-nav.nav-pinned {
    will-change: transform;
    /* If the jitter persists, add this: */
    /* transform: translate3d(0, 0, 0); */
}
/* =========================
  LENIS SCROLL ENDS AND GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    /* font-family:'Poppins',sans-serif; */
     /* font-family: 'Sora', sans-serif; */
    /* font-family: 'Hahmlet', serif; */
    background:#fff;
    overflow-x:hidden;
     font-family: var(--font-family);
}

:root{
    --primary-color: #f76500;
     --primary-gradient: linear-gradient(135deg, #f76500, #ebb83f);
    --secondary-color: #222222;
    --white-color: #ffffff;
    --light-color: #f8f9fa;
     --font-family: "Inter", sans-serif;
    
}



#backToTop{
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#backToTop.show{
    opacity: 1;
    visibility: visible;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background: var(--primary-color);
    color:#fff;
    /* padding:8px 0; */
    padding: 3px 0;
    font-size:13px;
    font-family:'Poppins',sans-serif !important;
}

.top-left{
    display:flex;
    gap:25px;
    align-items:center;
}
.top-left a{
    color: #fff;
    text-decoration: none;
}

.top-left span i{
    margin-right:8px;
}

.update-text{
    font-size:12px;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.top-right a:hover{
    transform:translateY(-2px);
}


#decreaseBtn{
    background: #fff;
    border-radius: 50px;
    padding: 2px 4px;
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
}
#increaseBtn{
     background: #fff;
    border-radius: 50px;
    padding: 2px 4px;
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
}
#reset{
     background: #000000;
    border-radius: 50px;
    padding: 2px 8px; 
    color: #fff;
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
}
.accessibility{
    border-radius: 20px;
    background: #fff;
    padding: 5px 10px;
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
}
/* =========================
   MAIN HEADER
========================= */
/*.navbar{*/
/*    background: #fff;*/
/*}*/
/*.navbar .nav-link {*/
/*  color: #222 !important;*/
/*  transition: 0.3s;*/
/*  font-size: 13px;*/
/*  font-weight: 500 !important;*/
/*}*/

/*.navbar .nav-link:hover,*/
/*.navbar .nav-link.active {*/
/*  color: var(--primary-color) !important;*/
/*  border-bottom: 2px solid var(--primary-color);*/
/*  font-weight: 500 !important;*/
/*}*/

/*.dropdown-menu {*/
/*  border-radius: 12px;*/
/*}*/

/*.navbar-brand img{*/
/*    width: 80px;*/
/*}*/



/*.lang-btn{*/
/*    background: var(--white-color);*/
/*    color: var(--secondary-color);*/
/*    border: none;*/
/*    padding: 5px 18px;*/
/*    border-radius: 30px;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*}*/

/*.lang-btn:hover{*/
/*    background: var(--primary-color);*/
/*    color: var(--white-color);*/
/*}*/


/* search popup css code  */
/*.search-popup{*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    background: rgba(0,0,0,0.6);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: 0.3s;*/
/*    z-index: 9999;*/
/*}*/

/*.search-popup.active{*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*.search-box{*/
/*    width: 90%;*/
/*    max-width: 600px;*/
/*    background: var(--white-color);*/
/*    padding: 40px;*/
/*    border-radius: 20px;*/
/*    position: relative;*/
/*    animation: popupAnimation 0.3s ease;*/
/*}*/

/*.search-input{*/
/*    width: 100%;*/
/*    height: 55px;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 50px;*/
/*    padding: 0 20px;*/
/*    outline: none;*/
/*    font-size: 16px;*/
/*}*/

/*.search-submit{*/
/*    margin-top: 15px;*/
/*    width: 100%;*/
/*    height: 50px;*/
/*    border: none;*/
/*    background: var(--primary-color);*/
/*    color: var(--white-color);*/
/*    border-radius: 50px;*/
/*    font-weight: 600;*/
/*    transition: 0.3s;*/
/*}*/

/*.search-submit:hover{*/
/*    opacity: 0.9;*/
/*}*/

/*.close-search{*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: 15px;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border: none;*/
/*    border-radius: 50%;*/
/*    background: var(--light-color);*/
/*    cursor: pointer;*/
/*    font-size: 18px;*/
/*}*/

/*@keyframes popupAnimation{*/
/*    from{*/
/*        transform: scale(0.8);*/
/*        opacity: 0;*/
/*    }*/
/*    to{*/
/*        transform: scale(1);*/
/*        opacity: 1;*/
/*    }*/
/*}*/
/*.fa-magnifying-glass{*/
/*    color: var(--primary-color) !important;*/
/*}*/

/*.fa-magnifying-glass:hover{*/
/*    color: var(--primary-color)!important;*/
/*    border: 1px solid var(--primary-color);*/
/*    padding: 10px;*/
/*    border-radius: 50px;*/
/*}*/

/* profile popup css code  */
/*.profile-wrapper{*/
/*    position: relative;*/
/*}*/

/* PROFILE ICON */
/*.nav-icon{*/
/*    width: 42px;*/
/*    height: 42px;*/
/*    background: var(--light-color);*/
/*    color: var(--secondary-color);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*    font-size: 16px;*/
/*}*/

/*.nav-icon:hover{*/
/*    color: var(--primary-color) !important;*/
/*    background: #fff;*/
/*}*/

/* SIDEBAR */
/*.profile-sidebar{*/
/*    position: fixed;*/
/*    top: 0;*/
/*    right: -350px;*/
/*    width: 320px;*/
/*    height: 100vh;*/
/*    background: var(--white-color);*/
/*    box-shadow: -5px 0 25px rgba(0,0,0,0.1);*/
/*    transition: 0.4s ease;*/
/*    z-index: 9999;*/
/*    padding: 30px 20px;*/
/*}*/

/* HOVER OPEN */
/*.profile-wrapper:hover .profile-sidebar{*/
/*    right: 0;*/
/*}*/

/* TOP */
/*.profile-top{*/
/*    text-align: center;*/
/*    padding-bottom: 25px;*/
/*    border-bottom: 1px solid #eee;*/
/*}*/

/*.profile-image{*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    background: var(--primary-color);*/
/*    color: var(--white-color);*/
/*    border-radius: 50%;*/
/*    margin: auto;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 35px;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.profile-top h4{*/
/*    margin-bottom: 5px;*/
/*}*/

/*.profile-top p{*/
/*    color: #777;*/
/*    font-size: 14px;*/
/*}*/

/* MENU */
/*.profile-menu{*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 25px 0 0;*/
/*}*/

/*.profile-menu li{*/
/*    margin-bottom: 10px;*/
/*}*/

/*.profile-menu a{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    text-decoration: none;*/
/*    padding: 14px 16px;*/
/*    border-radius: 12px;*/
/*    color: var(--secondary-color);*/
/*    transition: 0.3s;*/
/*    font-weight: 500;*/
/*}*/

/*.profile-menu a:hover{*/
/*    background: var(--primary-color);*/
/*    color: var(--white-color);*/
/*}*/

/*.profile-btn{*/
/*    color: var(--primary-color);*/
/*}*/




/* banner section css code  */


.banner-slide{
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-slide::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.096); */
}

.banner-content{
    position: absolute;
      bottom: -280px;   
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.banner-content h1{
    display: inline-block;
    font-size: 23px !important;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    padding: 30px 45px;
    border-radius: 25px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.4),
        0 0 30px rgba(0,255,255,0.15);

    text-shadow: 0 4px 15px rgba(0,0,0,0.5);

    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.banner-content h1::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(0,255,255,0.15);
    border-radius: 50%;
    top: -200px;
    left: -70px;
    filter: blur(30px);
}

.banner-content h1 span{
    display: block;
    margin-top: 10px;
    font-size: 24px;
    color: #00f7ff;
    font-weight: 600;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .banner-content h1{
        font-size: 34px;
        padding: 20px 25px;
    }

    .banner-content h1 span{
        font-size: 18px;
    }
}

@media(max-width:576px){

    .banner-content h1{
        font-size: 26px;
        line-height: 1.4;
        padding: 18px 20px;
        width: 100%;
    }

    .banner-content h1 span{
        font-size: 16px;
    }
}

.banner-content p{
    font-size: 15px !important;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.85);
}

/* BUTTON FLEX */
.banner-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary-custom{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-custom:hover{
    background: #ffffff;
    color: var(--secondary-color);
}

.btn-secondary-custom{
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary-custom:hover{
    background: var(--white-color);
    color: var(--secondary-color);
}

/* CAROUSEL BUTTONS */
.carousel-control-prev,
.carousel-control-next{
    width: 6%;
}

/* INDICATORS */
.carousel-indicators button{
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

/* RESPONSIVE */
@media(max-width: 768px){

    .banner-slide{
        height: 90vh;
    }

    .banner-content h1{
        font-size: 40px;
    }

    .banner-content p{
        font-size: 16px;
    }

}


/* recent happening section css code  */

/* =========================
RECENT HAPPENINGS SECTION CSS
========================= */

.rh-recent-happenings-section{
    background:#f5f5f5;
    padding:40px 0;
}

/* =========================
HEADING
========================= */

.rh-heading-wrapper{
    display:flex;
    align-items:center;
    /* gap:15px; */
    margin-bottom:35px;
}

.rh-heading-tag{
    background:var(--primary-color);
    color:#fff;
    padding:8px 20px;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.rh-heading-line{
    width:50% !important;
    height:4px;
    background:#c9c9e8;
}

/* =========================
COMMON CARD
========================= */

.rh-big-card,
.rh-small-card,
.rh-horizontal-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    /*transition:0.4s;*/
}

.rh-big-card:hover,
.rh-small-card:hover,
.rh-horizontal-card:hover{
    transform:translateY(-5px);
}

/* =========================
IMAGES
========================= */

.rh-card-image img,
.rh-small-image img,
.rh-horizontal-image img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:0.4s;
}

.rh-big-card:hover img,
.rh-small-card:hover img,
.rh-horizontal-card:hover img{
    transform:scale(1.05);
}

/* BIG IMAGE */
.rh-card-image img{
    height:520px;
}

/* SMALL IMAGE */
.rh-small-image img{
    height:250px;
}

/* HORIZONTAL IMAGE */
.rh-horizontal-image img{
    height:auto;
}

/* =========================
OVERLAY CONTENT BOX
========================= */

.rh-card-content,
.rh-small-content,
.rh-horizontal-content{
    position:absolute;
    bottom:0;
    left:0;
    background:#efefef;
    z-index:2;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* BIG CARD CONTENT */
.rh-card-content{
    width:100%;
    padding:11px;
    /*margin-left: 25px;*/
    /*border: 1px solid var(--primary-color);*/
}

/* SMALL CARD CONTENT */
.rh-small-content{
    width:100%;
    padding:8px;
    /*margin-left: 20px;*/
    /*border: 1px solid var(--primary-color);*/
}

/* HORIZONTAL CONTENT */
.rh-horizontal-content{
    width:100%;
    /*margin-left: 25px;*/
    padding:8px;
    /*border: 1px solid var(--primary-color);*/
}

/* =========================
TEXT
========================= */

.rh-card-content h4,
.rh-horizontal-content h4{
    font-size:16px;
    line-height:1.5;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    text-transform:uppercase;
}

.rh-small-content h5{
    font-size:11px;
    line-height:1.6;
    font-weight:700;
    color:#111;
    margin-bottom:16px;
    text-transform:uppercase;
}

/* =========================
BOTTOM CONTENT
========================= */

.rh-card-bottom,
.rh-small-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.rh-date,
.rh-duration{
    font-size:12px;
    color:#555;
    font-weight:500;
}

.rh-date i{
    margin-right:6px;
    color:#777;
}

/* =========================
SPACING
========================= */

.rh-horizontal-card{
    margin-top:-10px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .rh-card-image img{
        height:420px;
    }

    .rh-small-image img{
        height:220px;
    }

    .rh-horizontal-image img{
        height:220px;
    }

}

@media(max-width:767px){

    .rh-recent-happenings-section{
        padding:50px 0;
    }

    .rh-card-content,
    .rh-small-content,
    .rh-horizontal-content{
        position:relative;
        width:100%;
        left:0;
        bottom:0;
    }

    .rh-card-image img,
    .rh-small-image img,
    .rh-horizontal-image img{
        height:auto;
    }

    .rh-card-bottom,
    .rh-small-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .rh-card-content h4,
    .rh-horizontal-content h4{
        font-size:14px;
    }

    .rh-small-content h5{
        font-size:12px;
    }

}

/* cghs section css code  */
/* =========================================
EXACT FIGMA CGHS DESIGN
========================================= */

.exact-cghs-section{
    width:100%;
    overflow:hidden;
    margin:0;
    padding:0;
    background: var(--primary-color);
    position: relative;
    height: 350px;
}

/* LEFT SIDE */
.exact-cghs-left{
    /* background:#bf474d; */
    min-height:370px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding-left:52px;
    padding-right:45px;
}

/* CONTENT */
.exact-cghs-content{
    position:relative;
    z-index:5;
    max-width:500px;
}

.exact-cghs-content h2{
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:56px;
    line-height:0.98;
    font-weight:700;
    margin:0;
    letter-spacing:-1px;
}

/* LINE */
.exact-line{
    width:420px;
    height:1px;
    background:rgba(255,255,255,0.45);
    margin-top:14px;
    margin-bottom:14px;
}

/* PARAGRAPH */
.exact-cghs-content p{
    color:#fff;
    font-size:13px;
    line-height:1.55;
    font-family:'Inter', sans-serif;
    font-weight:400;
    max-width:465px;
    margin-bottom:26px;
}

/* BUTTON */
.exact-btn{
    width:180px;
    height:50px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#bf474d;
    text-decoration:none;
    font-family:'Playfair Display', serif;
    font-size:18px;
    font-weight:600;
    transition:0.3s ease;
    text-align: center !important;
    margin-left: 130px;
    border-radius: 8px;
}

.exact-btn span{
    font-size:36px;
    margin-top:-10px;
}

.exact-btn:hover{
    background:#f5f5f5;
    color:#bf474d;
}

/* RIGHT */
.exact-cghs-right{
    position:relative;
    min-height:370px;
    overflow:hidden;
}

/* IMAGE */
.exact-cghs-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* DIAGONAL RED LINE */
.exact-diagonal{
    position:absolute;
    width:4px;
    height:700px;
    background:#bf474d;
    top:-120px;
    left:52%;
    transform:rotate(-21deg);
    z-index:5;
}

/* RESPONSIVE */
@media(max-width:991px){

    .exact-cghs-left{
        padding:40px 30px;
    }

    .exact-cghs-content h2{
        font-size:44px;
    }

    .exact-line{
        width:100%;
    }

    .exact-btn{
        width:210px;
        height:56px;
        font-size:25px;
    }
}

@media(max-width:767px){

    .exact-cghs-content h2{
        font-size:34px;
    }

    .exact-cghs-right{
        height:320px;
    }

    .exact-diagonal{
        display:none;
    }
}

.ellipseLeft{
    width: 80px !important;
    position: absolute;
    height: 120px;
    bottom: 10px;
    left: 670px;
    
}
.ellipseRight{
    width: 80px !important;
    position: absolute;
    height: 120px;
    top: 10px;
    right: 25px;
}


/* about us sectiob css  */
.aboutAIAHL{
    padding: 20px;
}
.aAContentOne{
    display: flex;
    gap: 10px;
}
.aAContentOne img{
    width: 20px;
    height: 20px;
}
.aAContentOne h6{
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}
.aAContentTwo{
    padding: 10px 0;
}
.aAContentTwo h2{
    color: #000000;
    font-weight: 500;
    font-size: 23px;
    padding: 10px 0;
}
.aAContentTwo p{
    color: #1E1E1E;
    font-size: 14px;
    line-height: 1.6;
}
.aboutAIAHLImage{
    display: flex;
    gap: 10px;
}
.aboutAIAHLImage img{
    width: 260px;
    height: 330px;
    object-fit: cover;
}
.aAContentTwo a{
    color: #fff;
    background:var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    text-decoration: none;
}
.aAContentTwo a i{
    margin-left: 10px;
}




/* subsidiaries section css  */
/* .backgroundSubsidaries{
    background: url(../images/subsidiaries.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 387px;
} */
 .subsidiariesBoxOne{
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../images/sub1.png) !important;
      background-repeat: no-repeat;
    background-size: cover;
    height: 387px !important;
 }
  .subsidiariesBoxTwo{
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../images/sub2.png) !important;
      background-repeat: no-repeat;
    background-size: cover;
    height: 387px !important;
 }
  .subsidiariesBoxThree{
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../images/sub3.png) !important;
      background-repeat: no-repeat;
    background-size: cover;
    height: 387px !important;
 }
  .subsidiariesBoxFour{
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../images/sub4.png) !important;
      background-repeat: no-repeat;
    background-size: cover;
    height: 387px !important;
 }
.subsidiariesBox{
    padding-top: 250px;
    padding-left: 20px;
}
.subsidiariesBox span{
   font-size: 35px;
   font-weight: 600;
   color:#fff;
}
.subsidiariesBox h5{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
}
.subsidiariesBoxDifferent{
    background: var(--primary-color);
    padding: 30px 20px;
}
.subsidiariesBox p{
    font-size: 13px;
    color: #fff;
    font-weight: 400;
}
.subsidiariesBox a{
    color: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}












.subsidiariesBox {
    background: transparent;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Hover Background Effect */
.subsidiariesBox::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.subsidiariesBox:hover::before {
    opacity: 1;
}

/* Content */
.subsidiariesBox span,
.subsidiariesBox h5,
.subsidiariesBox p,
.subsidiariesBox a {
    position: relative;
    z-index: 2;
}

.subsidiariesBox span {
    font-size: 40px;
    font-weight: 700;
    /* color: rgba(255,255,255,0.15); */
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    transition: 0.4s;
}



/* Paragraph Hidden Initially */
.subsidiariesBox p {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;

    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Button Hidden Initially */
.subsidiariesBox a {
    display: inline-block;
    margin-top: 5px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Hover Show Content */
.subsidiariesBox:hover p {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
}

.subsidiariesBox:hover a {
    opacity: 1;
    transform: translateY(0);
}

/* Optional Hover Effect */
.subsidiariesBox:hover span {
    color: rgba(255,255,255,0.3);
}

.subsidiariesBox:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media(max-width:991px){

    .subsidiariesBox{
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

}





.rh-carousel-btn{
    width:50px;
    height:50px;
    background:#000;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

.rh-carousel-btn.carousel-control-prev{
    left:-25px;
}

.rh-carousel-btn.carousel-control-next{
    right:-25px;
}

.rh-carousel-btn span{
    color:#fff;
    font-size:22px;
}










/* togglr button hindi english  */
/* From Uiverse.io by ClawHack1 */ 
/* Genel stil */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 16px;
  margin: 10px;
}

/* Giriş stil */
.toggle-switch .toggle-input {
  display: none;
}

/* Anahtarın stilinin etrafındaki etiketin stil */
.toggle-switch .toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 20px;
  background-color: #fff;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Anahtarın yuvarlak kısmının stil */
.toggle-switch .toggle-label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: #ac4545;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

/* Anahtarın etkin hale gelmesindeki stil değişiklikleri */
.toggle-switch .toggle-input:checked + .toggle-label {
  background-color: #fff;
}

.toggle-switch .toggle-input:checked + .toggle-label::before {
  transform: translateX(16px);
}

/* Light tema */
.toggle-switch.light .toggle-label {
  background-color: #BEBEBE;
}

.toggle-switch.light .toggle-input:checked + .toggle-label {
  background-color: #9B9B9B;
}

.toggle-switch.light .toggle-input:checked + .toggle-label::before {
  transform: translateX(6px);
}

/* Dark tema */
.toggle-switch.dark .toggle-label {
  background-color: #4B4B4B;
}

.toggle-switch.dark .toggle-input:checked + .toggle-label {
  background-color: #717171;
}

.toggle-switch.dark .toggle-input:checked + .toggle-label::before {
  transform: translateX(16px);
}







/* our gallery section css code  */
.gallery-section-main{
    background:#f4f4f4;
}

/* SECTION TITLE */
.gallery-top-title{
    gap:12px;
}

.gallery-title-badge{
    background:#b74242;
    color:#fff;
    padding:8px 22px;
    font-size:14px;
    font-weight:600;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}

.gallery-line{
    flex:1;
    height:2px;
    background:#5c67b8;
}

/* CARD DESIGN */
.gallery-custom-card{
    background:#fff;
    border:1px solid #dddddd;
    overflow:hidden;
    transition:0.3s;
    position:relative;
}

.gallery-custom-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */
.gallery-img-box{
    position:relative;
    overflow:hidden;
}

.gallery-img-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-custom-card:hover img{
    transform:scale(1.05);
}

/* DATE */
.gallery-date-tag{
    position:absolute;
    left:10px;
    bottom:10px;
    background:#b74242;
    color:#fff;
    font-size:11px;
    padding:5px 10px;
    font-weight:500;
}

/* CONTENT */
.gallery-card-content{
    padding:18px 18px 22px;
    position:relative;
    min-height:80px;
    display: flex;
}

.gallery-card-content h4{
    font-size:15px;
    line-height:1.3;
    font-weight:700;
    color:#222;
    margin:0;
    padding-right:45px;
}

/* ARROW BUTTON */
.gallery-arrow-btn{
    width:30px;
    height:30px;
    background:#b74242;
    color:#fff;
    border-radius:50%;
    position:absolute;
    right:14px;
    /* bottom:18px; */
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:12px;
    transition:0.3s;
}

.gallery-arrow-btn:hover{
    background:#000;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){

    .gallery-card-content h4{
        font-size:18px;
    }

    .gallery-img-box img{
        height:200px;
    }

}



/* footer css code  */
.aiahl-footer-section{
    background:#f2f2f2;
    padding:30px 0 0px 0;
    border-top:2px solid var(--primary-color);
}

.footer-main-row{
    padding-bottom:35px;
}

.aiahl-footer-left{
    text-align:center;
}

.aiahl-footer-logo{
    width:120px;
    height:120px;
    background:#fff;
    border-radius:50%;
    /*margin:auto;*/
    display:flex;
    align-items:center;
    justify-content:center;
    /* box-shadow:0 5px 20px rgba(0,0,0,0.08); */
}

.aiahl-footer-logo img{
    width:120px;
}

.aiahl-footer-left p{
    font-size:13px;
    line-height:22px;
    color:#666;
    max-width:250px;
    margin:20px auto 18px;
}

.aiahl-social-icons{
    display:flex;
    /*justify-content:center;*/
    gap:10px;
}

.aiahl-social-icons a{
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#fff;
    text-decoration:none;
}

.aiahl-social-icons a:nth-child(1){
    background:#1877f2;
}

.aiahl-social-icons a:nth-child(2){
    background:#0a66c2;
}

.aiahl-social-icons a:nth-child(3){
    background:#ff0033;
}

.aiahl-social-icons a:nth-child(4){
    background:#333;
}

.aiahl-footer-links h5{
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
}

.aiahl-footer-links ul{
    padding:0;
    margin:0;
    list-style:none;
}

.aiahl-footer-links ul li{
    margin-bottom:10px;
}

.aiahl-footer-links ul li a{
    text-decoration:none;
    color:#444;
    font-size:16px;
    transition:0.3s;
}

.aiahl-footer-links ul li a:hover{
    color:#c93d3d;
    padding-left:5px;
}

.aiahl-footer-links p{
    color:#444;
    font-size:16px;
    line-height:24px;
}

/*.aiahl-accessibility-box{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    gap:8px;*/
/*    margin-top:25px;*/
/*    flex-wrap:wrap;*/
/*}*/

/*.aiahl-accessibility-box button{*/
/*    width:32px;*/
/*    height:32px;*/
/*    border:none;*/
/*    border-radius:50%;*/
/*    background:#383838;*/
/*    color:#fff;*/
/*    font-size:13px;*/
/*    font-weight:600;*/
/*}*/

/*.aiahl-accessibility-box button:nth-child(1),*/
/*.aiahl-accessibility-box button:nth-child(3){*/
/*    background:#b44141;*/
/*}*/

/*.aiahl-accessibility-box a{*/
/*    background:#b44141;*/
/*    color:#fff;*/
/*    text-decoration:none;*/
/*    padding:8px 18px;*/
/*    border-radius:30px;*/
/*    font-size:12px;*/
/*    font-weight:600;*/
/*}*/

.aiahl-footer-bottom {
    border-top: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 12px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-inner div {
    font-size: 15px;
    color: #fff;
}

.footer-bottom-inner a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom-inner a:hover {
    color: #ffcccc;
}

@media (max-width: 991px) {
    .footer-bottom-inner {
        text-align: center;
        justify-content: center;
    }
}


/* back to top button css code  */
#backToTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #c62828, #ff5252);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    animation: planeFloat 2s ease-in-out infinite;
}

#backToTop:hover{
    transform: translateY(-8px) scale(1.08);
    background: linear-gradient(135deg, #ff5252, #c62828);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

#backToTop i{
    transform: rotate(-45deg);
}

/* Floating Animation */
@keyframes planeFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Mobile Responsive */
@media(max-width:576px){

    #backToTop{
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

}


.increaseBtn{
    background: var(--primary-color) !important;
    color: #fff;
    font-size: 14px;
    padding: 2px 4px;
}
.accessibility2{
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 12px;
    font-size: 14px;
}
.decreaseBtn{
      background: var(--primary-color) !important;
    color: #fff;
    font-size: 14px;
    padding: 2px 4px;
}


.gallery-owl-carousel .owl-stage-outer{
    overflow: hidden;
}

.gallery-owl-carousel .owl-stage{
    display: flex;
    align-items: stretch;
}

.owl-prev{
   color: #fff !important;
   background: var(--primary-color) !important;
   width: 25px;
   padding: 10px !important;
}
.owl-next{
   color: #fff !important;
   background: var(--primary-color) !important;
   width: 25px;
   padding: 10px !important;
}

.owl-prev:hover{
    background: #fff !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.owl-next:hover{
    background: #fff !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}










.banner-section{
    position: relative;
}

.banner-img{
    height: auto;
    object-fit: cover;
    /* filter: brightness(45%); */
    filter: none;
}

/* FIXED CONTENT */
.banner-fixed-content{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-content{
    color: #fff;
    max-width: 700px;
}

.banner-content h1{
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.banner-content span{
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
}

.carousel-indicators,
.carousel-control-prev,
.carousel-control-next{
    z-index: 11;
}





/* ACTIVE MENU STYLE */
/*.navbar-nav .nav-link{*/
/*    position: relative;*/
/*    color: #222;*/
/*    transition: 0.3s;*/
/*}*/

/*.navbar-nav .nav-link::after{*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -2px;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: var(--primary-color);*/
/*    transition: 0.3s;*/
/*}*/

/*.navbar-nav .nav-link.active{*/
/*    color: var(--primary-color) !important;*/
/*}*/

/*.navbar-nav .nav-link.active::after{*/
/*    width: 100%;*/
/*}*/

/* ==========================================
   DROPDOWN & SUBMENU STYLING
========================================== */

/*.dropdown,*/
/*.dropdown-submenu {*/
/*    position: relative !important;*/
/*}*/

/*.dropdown-menu {*/
/*    background-color: white;*/
/*    border-radius: 4px;*/
/*    padding: 8px 0;*/
/*    min-width: 250px;*/
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.15);*/
/*    border: none;*/
/*    margin: 0;*/
/*}*/

/*.dropdown-item {*/
/*    padding: 10px 20px;*/
/*    color: #333;*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    font-weight: 500;*/
/*    transition: 0.3s background-color, 0.3s color;*/
/*}*/

/*.dropdown-item:hover {*/
/*    background-color: #f8f9fa;*/
/*    color: #AC4545;*/
/*}*/

/* ── DESKTOP HOVER LOGIC ── */
/*@media (min-width: 992px) {*/


/*    .navbar-nav > .dropdown:hover > .dropdown-menu {*/
/*        display: block !important;*/
/*        margin-top: 0;*/
/*    }*/

    
/*    .dropdown-submenu:hover > .dropdown-menu {*/
/*        display: block !important;*/
/*    }*/

    
/*    .dropdown-submenu > .dropdown-menu {*/
/*        top: 0;*/
/*        left: 100%;*/
/*        right: auto;*/
/*        margin-top: -6px;*/
/*        position: absolute;*/
/*        z-index: 9999;*/
/*        display: none;  */
/*    }*/
/*}*/


/*.dropdown-submenu > .dropdown-toggle::after {*/
/*    display: none !important;*/
/*}*/

/*.dropdown-submenu > .dropdown-item::before {*/
/*    content: ">";*/
/*    float: right;*/
/*    font-weight: bold;*/
/*    font-size: 12px;*/
/*    line-height: 18px;*/
/*    margin-right: 8px;*/
/*}*/

/* Remove Bootstrap caret from nav-level dropdown toggles */
/*.navbar-nav .dropdown-toggle::after {*/
/*    display: none !important;*/
/*}*/

/* Ensure the animated underline only shows on hover/active, not by default */
/*.navbar-nav .nav-link::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -2px;*/
    /*width: 0;*/          /* starts at 0 — only grows on hover/active */
/*    height: 2px;*/
/*    background: var(--primary-color);*/
/*    transition: 0.3s;*/
/*}*/

/*.navbar-nav .nav-link:hover::after,*/
/*.navbar-nav .nav-link.active::after {*/
/*    width: 100%;*/
/*}*/

/* ══════════════════════════════════
       CAREERS PAGE CSS
    ══════════════════════════════════ */
    .ca-page-bg { background: #f5f5f5; padding: 0 0 70px; }
    .ca-content-area { padding: 40px 0; }

    /* NAV TABS */
    .ca-nav-tabs { border-bottom: 3px solid #b93f43; gap: 0; }
    .ca-nav-tabs .nav-link {
      border-radius: 0;
      border: 1px solid #e0e0e0;
      border-bottom: none;
      background: #fff;
      color: #555;
      font-family: "Inter", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: .04em;
      padding: 11px 28px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, color .2s;
    }
    .ca-nav-tabs .nav-link:hover { background: #fff5f5; color: #9b1c20; }
    .ca-nav-tabs .nav-link.active { background: #b93f43; color: #fff; border-color: #b93f43; }
    .ca-nav-tabs .nav-link .ca-tab-count {
      font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
      border-radius: 20px; letter-spacing: .04em;
      background: #f0f0f0; color: #888;
    }
    .ca-nav-tabs .nav-link.active .ca-tab-count {
      background: rgba(255,255,255,0.28); color: #fff;
    }

    /* TABLE WRAPPER */
    .ca-table-wrap { background: #fff; border-top: 4px solid #b93f43; box-shadow: 0 4px 20px rgba(0,0,0,.08); }

    /* HEADER */
    .ca-table-header {
      background: #1a1a2e; padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    }
    .ca-table-title { font-family: "Inter", sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; }
    .ca-table-title span { color: #e8a0a2; }
    .ca-count-badge {
      background: #b93f43; color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; padding: 4px 14px;
    }

    /* SEARCH BAR */
    .ca-search-bar {
      padding: 14px 24px;
      background: #fafafa;
      border-bottom: 1px solid #ebebeb;
    }
    .ca-search-input {
      width: 100%;
      max-width: 340px;
      border: 1px solid #ddd;
      border-radius: 0;
      padding: 8px 14px 8px 36px;
      font-size: 0.84rem;
      color: #333;
      font-family: "Inter", sans-serif;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 12px center;
      outline: none;
      transition: border-color .2s;
    }
    .ca-search-input:focus { border-color: #9b1c20; }

    /* ARCHIVE NOTICE */
    .ca-archive-notice {
      padding: 10px 18px;
      font-family: "Inter", sans-serif;
      font-size: 0.82rem;
      background: #b8434354;
      color: #9f1b21;
      border-left: 3px solid #9f1b21;
    }

    /* TABLE */
    .ca-report-table { width: 100%; border-collapse: collapse; border: 1px solid #d0d0d0; }
    .ca-report-table thead tr { background: #b93f43; }
    .ca-report-table thead th {
      padding: 13px 18px; font-family: "Inter", sans-serif;
      font-size: 0.78rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: #fff;
      border: 1px solid rgba(201,83,87,0.5); white-space: nowrap;
    }
    .ca-report-table thead th:nth-child(1) { width: 44%; }
    .ca-report-table thead th:nth-child(2) { width: 14%; }
    .ca-report-table thead th:nth-child(3) { width: 14%; }
    .ca-report-table thead th:nth-child(4) { width: 28%; }
    .ca-report-table tbody tr { transition: background .18s; }
    .ca-report-table tbody tr:hover { background: #fff8f8; }
    .ca-report-table tbody td {
      padding: 14px 18px; font-family: "Inter", sans-serif;
      font-size: 0.86rem; color: #444; vertical-align: top;
      line-height: 1.5; border: 1px solid #e0e0e0;
    }
    .ca-report-table tbody td.ca-date,
    .ca-report-table tbody td.ca-last-date { font-weight: 600; color: #777; white-space: nowrap; font-size: 0.82rem; }

    .ca-notif-text { color: #1a1a2e; font-weight: 500; margin-bottom: 5px; }
    .ca-corrigendum {
      display: inline-block; background: #b8434354; color: #9f1b21;
      font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
      letter-spacing: .04em; text-transform: uppercase; margin-top: 4px;
      border-left: 3px solid #9f1b21;
    }
    .ca-links-cell { display: flex; flex-direction: column; gap: 5px; }
    .ca-adv-link {
      display: inline-flex; align-items: center; gap: 7px;
      color: #9b1c20; text-decoration: none; font-family: "Inter", sans-serif;
      font-size: 0.8rem; font-weight: 600; padding: 5px 12px;
      border: 1.5px solid #b93f43; background: #fff;
      transition: background .18s, color .18s; width: fit-content;
    }
    .ca-adv-link:hover { background: #b93f43; color: #fff; }
    .ca-new-badge {
      display: inline-block; background: #b93f43; color: #fff;
      font-size: 0.62rem; font-weight: 700; padding: 2px 7px;
      letter-spacing: .08em; text-transform: uppercase; vertical-align: middle;
      margin-left: 6px; animation: ca-blink 1.6s ease infinite;
    }
    @keyframes ca-blink { 0%,100%{opacity:1} 50%{opacity:.4} }

    @media (max-width: 767px) {
      .ca-report-table thead th,
      .ca-report-table tbody td { padding: 10px 11px; font-size: 0.8rem; }
      .ca-nav-tabs .nav-link { padding: 10px 18px; font-size: 0.82rem; }
      .aboutAIAHLImage {
    display: block;}
    .aboutAIAHLImage img {
        margin-top:4px;
    width: 100%;
    height: 200px;
    }
    @media (max-width: 575px) {
      .ca-report-table thead th:nth-child(2),
      .ca-report-table tbody td:nth-child(2) { display: none; }
    }