

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
    --color-primary: #3a5bcc;
    --color-primary-dark: rgb(47, 81, 192);
    --color-secondary: #3a5bcc;
    --color-secondary-dark: #2f51c0;
    --color-accent: #0d6efd;
    --color-text-dark: #2b2a29;
    --color-text-muted: #64748b;
    --color-bg-light: #f8fafc;
    --color-bg-soft: #f1f5f9;
    --color-border: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(8, 41, 90, 0.08);
    --shadow-hover: 0 20px 40px -15px rgba(8, 41, 90, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
}

/* Base resets & typography */
body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #313131;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}
.text-primary {
    --bs-text-opacity: 1;
    color: #313131!important;
}
i.text-primary, .text-primary i{
   color: var(--color-primary)!important;
}
.section-padding{
  padding: 60px 0;
}
/* Utilities */
.text-gold {
    color: var(--color-primary);
}

.bg-primary-dark {
    background-color: var(--color-primary);
}

.bg-soft-blue {
    background-color: #f0f6ff;
}

.btn-premium-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-primary);
}

.btn-premium-primary:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(8, 41, 90, 0.15);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-primary);
}

.btn-premium-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border:1px solid var(--color-primary)!important;
    transform: translateY(-3px);
}

.btn-premium-gold {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-secondary);
}

.btn-premium-gold:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
}

/* Top bar styles */
.top-bar {
    background-color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid var(--color-border);
    padding: 6px 0;
}

.top-bar a {
    color: var(--color-text-muted);
}

.top-bar a:hover {
    color: var(--color-primary);
}

/* Navbar */
.custom-nav {
    padding: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand img {
       height: 40px;
}

.nav-link {
        font-family: var(--font-heading);
    font-weight: 600;
    color: #2b2a29 !important;
    font-size: 15px;
    margin: 0 3px;
    position: relative;
    padding: 25px 0;
}
.nav-link .chvrn-icn{
      display: inline-block;
    margin-left: 3px;
    font-size: 12px;
    color: var(--color-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom:0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
    border: 0;
    margin: 0;
}
.nav-item:hover .nav-link::after, .nav-item:hover .nav-link.active::after{
  width: 100%;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.hdr-btns-grp{
      display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px
}
.hdr-btns-grp .register-btn .consultation-btn{
  position: relative;
    z-index: 1;
    background: var(--color-primary);
    border: 1px solid var(--color-primary-dark);
    color: #fff;
}
.hdr-btns-grp .register-btn .consultation-btn .chvrn-icn{
  position: relative;
    display: inline-block;
    font-size: 13px;
    left: 5px;
}
.hdr-btns-grp .register-btn .consultation-btn:hover{
  background: var(--color-primary-dark);
}
.hdr-btns-grp .register-btn .consultation-btn ul{
    position: absolute;
    padding: 0;
    margin: 0;
    background: #e9eefb;
    width: 200px;
    right: 0;
    top: 65px;
    padding: 10px;
    text-align: left;
    border: 1px solid rgb(46 74 138 / 10%);
    border-radius: 4px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgb(46 74 138 / 15%);
}
.hdr-btns-grp .register-btn .consultation-btn:hover ul{
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.hdr-btns-grp .register-btn .consultation-btn ul li{
  display: block;
}
.hdr-btns-grp .register-btn .consultation-btn ul li a{
      display: block;
    padding: 7px 6px;
    color: #505050;
    font-weight: 500;
    border-bottom: 1px solid rgb(46 74 138 / 10%);
}
.hdr-btns-grp .register-btn .consultation-btn ul li a:hover{
  color: var(--color-primary);
  text-decoration: underline;
}
.hdr-btns-grp .register-btn .consultation-btn ul li:last-child a{
  border-bottom: none;
}
.hdr-btns-grp .register-btn .consultation-btn ul::after{
      position: absolute;
    content: '';
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #e9eefb transparent;
    top: -20px;
    right: 30px;
    z-index: 1;
}
.consultation-btn {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    padding: 9px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    
}

.consultation-btn:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}
/* start megamenu */
     @media (min-width: 1200px) {
       
        .custom-nav .nav-item.dropdown:hover > .dropdown-menu {
          display: block !important;
          opacity: 1 !important;
          visibility: visible !important;
          transform: translateY(0) !important;
        }
        
        .custom-nav .nav-item.dropdown > .dropdown-menu {
          display: block !important;
          opacity: 0;
          visibility: hidden;
          transform: translateY(15px);
          pointer-events: auto;
          transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .custom-nav .dropdown-mega {
          position: static !important;
        }
        
        .custom-nav .dropdown-mega .dropdown-menu {
          width: 100% !important;
          max-width: 1320px;
          left: 0 !important;
          right: 0 !important;
          border: 1px solid rgba(46, 74, 138, 0.08) !important;
          box-shadow: 0 25px 60px -15px rgba(8, 41, 90, 0.2) !important;
          border-radius: 0 0 15px 15px !important;
          padding: 35px 20px !important;
          margin: auto !important;
          background: #ffffff;
          max-height: calc(100vh - 130px);
          overflow-y: auto;
          scrollbar-width: thin;
        }
        .custom-nav .nav-item.dropdown:not(.dropdown-mega) .dropdown-menu {
          min-width: 260px;
          border: 1px solid rgba(46, 74, 138, 0.08) !important;
          box-shadow: 0 15px 40px -10px rgba(8, 41, 90, 0.15) !important;
          border-radius: 12px !important;
          padding: 15px !important;
        }
      }
      .mega-menu-title {
        font-family: var(--font-heading);
        font-weight: 700;
        color: #515151;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(46, 74, 138, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .mega-menu-title a {
        color: var(--color-primary);
        text-decoration: none;
        transition: var(--transition-smooth);
      }
      .mega-menu-title a:hover {
        color: var(--color-secondary);
      }
      .dropdown-menu a.dropdown-item {
        font-size: 13.5px;
        color: #626e81;
        transition: var(--transition-smooth);
        padding: 6px 12px !important;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .dropdown-menu a.dropdown-item:hover {
        background-color: rgba(46, 74, 138, 0.05) !important;
        color: var(--color-primary) !important;
        transform: translateX(4px);
      }
      .dropdown-menu a.dropdown-item i {
        font-size: 11px;
        opacity: 0.7;
        transition: var(--transition-smooth);
      }
      .dropdown-menu a.dropdown-item:hover i {
        color: var(--color-secondary);
        opacity: 1;
      }
      @media (max-width: 1199.98px) {
        .custom-nav .dropdown-menu {
          border: none !important;
          box-shadow: none !important;
          padding-left: 15px !important;
        }
        .mega-menu-title {
          margin-top: 15px;
          font-size: 13px;
        }
      }
      .megamenu-img img{
        border-radius: 10px;
      }
      .mega-menu-title .flag_icn{
        width: 28px;
    height: 28px;
      }
      .mega-menu-title .flag_icn img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .mega-menu-title a{
        display: block;
        width: calc(100% - 35px);
      }
/* end megamenu */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0 20px 0;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
    overflow: hidden;
    height: 560px;
    z-index: 1;
}
.hero-section .vedio_box{
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-section .vedio_box video{
      width: 100%;
    height: 100%;
    /* background: transparent; */
    object-fit: cover;
    object-position: center;
}
.hero-section::before {
        content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(45deg, rgb(58 91 204), rgb(0 0 0 / 48%));
    z-index: -1;
}

.hero-subtitle {
   font-family: var(--font-heading);
    color: #ffffff;
    /* font-weight: 700; */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff1c;
    border: 1px solid rgb(255 255 255 / 36%);
    padding: 5px 19px;
    border-radius: 25px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff!important;
}
.hero-title span.text-gold{
    font-family: "La Belle Aurore", cursive;
    font-weight: 500;
    color: #fff;
}
.hero-desc {
    color: #fff;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 500px;
    font-weight: 300;
}

/* Collage composition */
.hero-collage-container {
    position: relative;
    z-index: 2;
}

.hero-collage-bg {
        position: relative;
    border-radius: 50%;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    width: 600px;
    height: 510px;
    overflow: hidden;
    top: 180px;
}
.hero-collage-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-world-landmark{
     position: absolute;
    top: 70px;
    width: 617px;
    height: 460px;
    right: -89px;
}

.hero-world-landmark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-girl img{
        position: absolute;
    top: -190px;
    right: 3px;
    width: 500px;
}
.placement-badge {
    position: absolute;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
        background: rgb(58 91 204 / 40%);
    padding: 18px;
    border-radius: 100px;
    z-index: 4;
    text-align: center;
    width: 160px;
    height: 160px;
    border: 8px solid #ffffff;
    margin-top: 82px;
    backdrop-filter: blur(20px);
}

.placement-badge .icon-container {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* background-color: var(--color-primary); */
    display: flex;
    align-items: center;
    justify-content: center;
    color:  #fff;
    font-size: 25px;
    margin: auto;
}

.placement-badge .badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.placement-badge .badge-subtext {
        font-size: 12px;
    color:#fff;
    font-weight: 500;
    line-height: 15px;
    margin-top: 4px;
    opacity: .8;
}

.banner-btns .btn-premium-outline{
  border: 1px solid #fff;
  color: #ffff;
}
.left-airplane img{
  position: absolute;
    right: 0;
    top: 105px;
    width: 270px;
    opacity: .5;
}
.shapes {
        position: absolute;
    width: 420px;
    height: 490px;
    border: 10px solid #ffffff;
    top: -129px;
    right: 120px;
    border-radius: 200px 200px 0 0;
    z-index: -1;
}
/* Floating Search overlay */
.search-overlay-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(46 74 138 / 12%);
    padding: 20px 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 50px;
}

.search-select-wrapper {
       position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 40px;
}

.search-select-wrapper .icn{
      width: 40px;
    height: 40px;
}
.search-select-wrapper .icn img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-select-wrapper .frm-grp{
  width: calc(100% - 40px);
  padding-left: 12px;
} 
.search-select-label {
       font-size: 14px;
    color: #2b2a29;
    font-weight: 600;
    top: 5px;
    position: relative;
    
}

.select2-container--default .select2-results>.select2-results__options {
  scrollbar-width: thin;
}

.select2-container--default .select2-results>.select2-results__options .select2-results__option {
  padding: 8px 10px;
  color: #29343d;
  font-size: 0.80rem;
}

.select2-container--default .select2-results>.select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: var(--color-primary);
  color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
      border: none;
    position: relative;
    margin-left: 0;
    margin-top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b::before{
  content: "\f078";
    font-family: "fontAwesome";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
    content: "\f077";
}
.search-select {
    border: none;
    outline: none;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 15px;
    width: 100%;
    background: transparent;
    cursor: pointer;
}
.search-select-wrapper .select2-container--default .select2-selection--single{
  background: transparent;
  border: none;
  border-radius: 0;
}
.search-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered{
  font-size: 14px;
    color: #2b2a29;
    font-weight: 600;
    padding-left: 0;
}
.search-overlay-card .select2-container{
  width: 100%;
  left: 0!important;
}
.search-overlay-card .select2-dropdown{
  width: 100%!important;
}
.search-overlay-card .select2-container--default .select2-selection--single .select2-selection__arrow{
      top: -10px;
}
.search-overlay-card > div > div .search-select-wrapper{
  position: relative;
}
.search-overlay-card > div > div .search-select-wrapper::after{
      position: absolute;
    content: '';
    width: 1px;
    height: 40px;
    background: rgb(46 74 138 / 26%);
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
/* Feature band */
.feature-band {
    padding: 40px 0;
    background-color: rgb(46 74 138 / 12%);
}

.feature-box {
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
       width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-box .cntnt{
  width: calc(100% - 45px);
  padding-left: 15px;
}
.feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
    color: #2b2a29;
}

.feature-desc {
   font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
    color: #2b2a29;
}
.feature-band .row > div{
  position: relative;
}
.feature-band .row > div::after{
      position: absolute;
    content: '';
    width: 1px;
    height: 40px;
    background: #c2cde5;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 8px;
}
.feature-band .row > div:last-child:after{
  display: none;
}
/* About Section */
.about-section {
    
    position: relative;
}
.about-content h2{
      font-size: 2.3rem !important;
    line-height: 1.45;
}
.about-collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* margin: 0 auto; */
    margin-left: 60px;
}
.about-right-content{
  position: relative;
}
.about-right-content .lines{
  position: absolute;
    width: 100%;
    top: -80px;
    left: 0;
    z-index: -1;
}
.about-right-content .lines img{
  width: 100%;
}
.about-circle-main {
        border-radius: 30% 70% 35% 34% / 40% 34% 67% 53%;
    overflow: hidden;
    border: 12px solid #ffffff;
    box-shadow: 0 3px 30px rgb(46 74 138 / 20%);
    aspect-ratio: 1.4 / 1;
    margin-top: 80px;
}

.about-circle-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values connection lines & icons */
.about-value-card {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 0;
    width: 250px;
}
.about-value-card.card1{
      left: 406px;
    top: -43px;
}
.about-value-card.card2{
      
    top: 51px;
    right: -67px;
}
.about-value-card.card3{
       top: inherit;
    right: 28px;
    bottom: 41px;
}
/* .about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
} */

.about-value-icon {
        width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    
    flex-shrink: 0;
}
.about-value-icon img{
      width: 45px;
    filter: brightness(0) invert(1);
}
span.subtile {
    width: fit-content;
    display: inline-block;
    background: #fff;
    border: 1px solid rgb(58 91 204 / 30%);
    color: var(--color-primary);
    border-radius: 25px;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}
span.subtile i{
      display: inline-block;
    font-size: 13px;
    margin-right: 2px;
}
/* Destination Cards */
.destination-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 380px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: none;
    margin-bottom: 30px;
}

.destination-card img.dest-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(8, 41, 90, 0.9) 0%, rgba(8, 41, 90, 0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.destination-card:hover img.dest-bg {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
    color: #ffffff;
}

.dest-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dest-flag-badge img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.dest-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.dest-desc {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 0;
}

/* Services section */
.services-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    position: relative;
    z-index: 1;
}
.services-section::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/map.png);
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
  
}
.services-section h2{
  color: #fff!important;
}
.services-section p.text-muted{
      color: #fff !important;
    font-size: 15px;
    font-weight: 300;
    opacity: .85;
}
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 110, 253, 0.2);
}

.service-icon-container {
        width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(46 74 138 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 26px;
    margin: 0 auto 25px auto;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.service-card h4 {
        font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #515151;
}

.service-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats band */
.stats-band {
    background: rgba(242, 241, 245, 1);
    padding: 50px 0;
    /* color: #ffffff; */
    position: relative;
    z-index: 1;
}
.stats-band::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/wave.png);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .3;
}
.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 23px;
    color: var(--color-primary);
    margin-bottom: 12px;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgb(58 91 204 / 11%);
    border-radius: 50%;
    line-height: 60px;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-icon{
  background: var(--color-primary);
  color:#fff;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #2b2a29;
    margin-bottom: 0px;
    margin-top: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 48px;
    color: rgb(58 91 204 / 10%);
    pointer-events: none;
}

.testimonial-stars {
    color: #d79822;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px!important;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.testimonial-meta {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Blog section */
.blog-section {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body {
    padding: 25px;
}

.blog-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.blog-title a {
    color: #515151;
}

.blog-title a:hover {
    color: var(--color-primary);
}

/* Newsletter bar */
.newsletter-bar {
    background: var(--color-primary);
    border-radius: 24px;
    padding: 45px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: -70px;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(9, 44, 108, 0.25);
}

.newsletter-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.newsletter-title i{
  color: #fff;
}
.newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    padding: 14px 25px;
    border: none;
    font-size: 14px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--color-primary);
    border: 2px solid #fff;
    color: #fff;
}
.newsletter-form .btn:hover{
  transform: translateY(0);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
/* Footer styling */
.main-footer {
       color: rgba(255, 255, 255, 0.7);
    padding: 110px 0 15px 0;
    font-size: 13px;
    background: url(../img/footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    position: relative;
}
.main-footer::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgb(0 0 0 / 30%);
}
.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}
.footer-brand .para{
  text-align: justify;
    font-size: 14px;
    line-height: 23px;
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-heading {
        font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
       margin-bottom: 13px;
    position: relative;
    padding-left: 24px;
}
.footer-links li::after{
      position: absolute;
    content: '\f19d';
    font-family: 'fontAwesome';
    left: 0;
    font-size: 12px;
    top: 1px;
}
.footer-links a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition-smooth);
        font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    /* gap: 12px; */
    margin-bottom: 15px;
}

.footer-contact-item .icn{
 width: 28px;
    height: 28px;
    /* background: #fff; */
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
}
.footer-contact-item .icn img{
      width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    filter: brightness(0) invert(1);
}
.footer-contact-item .cntnt{
  width: calc(100% - 28px);
  padding-left: 10px;
}
.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 12px;
}
.ftr-quick-links {
       padding-left: 60px;
    position: relative;
    z-index: 1;
}

.ftr-service {
    padding-left: 60px;
}
/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}
/* start owl carousel */
.owl-carousel .owl-dots {
  margin-top: 20px !important;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  padding: 0;
  outline: none;
  line-height: 0;
  border-radius: 50%;
  border: none;
  width: 10px;
  height: 10px;
  background: rgba(var(--darkblue-rgb), 0.3);
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;

}

.owl-carousel.owl-theme .owl-nav {
  margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--darkblue);
  width: 33px;
  border-radius: 25px;
}

.owl-carousel.owl-theme .owl-nav button {
  margin: 0 5px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    background: transparent;
    border: none !important;
    background: #5b4f8b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    line-height: 40px;
    color:var(--color-primary)!important;
}

.owl-carousel.owl-theme .owl-nav button::after {
  position: absolute;
    content: '';
    z-index: -1;
    border-radius: 50%;
    background: rgb(255 255 255);
    border: 1px solid rgb(58 91 204 / 25%);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  
}

.owl-carousel.owl-theme .owl-nav button:hover {
  background: var(--color-primary);
  color:#fff!important;
}

.owl-carousel.owl-theme .owl-nav button:hover::after {
  background: var(--color-primary);
}
/* end owl carousel */
/* start inner pages */
.pg-brdcrmb {
  width: 100%;
  height: 220px;
  /* border-radius: 20px; */
  position: relative;
  z-index: 1;
}

.pg-brdcrmb-img {
  width: 100%;
  height: 100%;
}

.pg-brdcrmb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brdcrmb-lnks {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: fit-content;
  text-align: center;
  z-index: 2;
}

.brdcrmb-lnks .secondary-font {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}

.brdcm-lst {
  padding: 0;
  margin: 0;
}

.brdcm-lst li {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}

.brdcm-lst li:first-child {
  margin-left: 0;
}

.brdcm-lst li a {
  display: block;
  color: #fff;
}

.brdcm-lst li::after {
  position: absolute;
  content: "/";
  width: 15px;
  color: rgb(255 255 255 / 50%);
  right: -22px;
  top: 2px;
  font-size: 16px;
  line-height: 1;
}

.brdcm-lst li:last-child::after {
  display: none;
}

.brdcm-lst li a.secondry-color {
  color: rgb(255 255 255 / 90%);
  font-weight: 300;
}

.brdcm-lst li a.secondry-color:hover {
 
  text-decoration: none;
  cursor: unset;
}
/* end inner pages */
/* start about page */
.about-page{
  background: rgb(58 91 204 / 12%);
}
.about-page .about-collage-container{
  margin-left: 0;
}
/* end about us page  */
/* start services */
.service-card-inner{
  padding: 12px;
  border: 1px solid #ddd;
}
/* end services */
.light-bg{
  background: rgb(58 91 204 / 12%);
}
/* start intel */
.iti__country-list {
  width: 100% !important;
  background: #fff;
  border: 1px solid #ddd;
  scrollbar-width: thin;
}

.iti__country {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.iti__country-name {
  display: inline-block !important;
  width: 190px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iti__divider {
  border-bottom: 1px solid #ddd;
}

.iti__country.iti__highlight {
  background: var(--color-primary) !important;
}

.iti__country.iti__highlight {
  color: #fff;
}

.iti__selected-flag {
  padding: 0 0 0 15px !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-left: 55px !important;
}
.iti {
  display: block;
}

.iti--allow-dropdown .iti__flag-container:hover {
  background: transparent !important;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent !important;
}

@media only screen and (max-width:1250px) {
  .iti-mobile .iti--container {
    height: 250px !important;
  }

  .iti {
    width: 100%;
  }
}

/* end intel */

/* start common css */
.lead {
  font-size: 1.20rem;
  font-weight: 300;
}
.border-primary {
    --bs-border-opacity: 1;
    border-color: var(--color-primary) !important;
}
.faq-style.accordion-flush .accordion-item{
  margin-bottom: 8px;
}
.faq-style.accordion-flush .accordion-item:last-child{
  margin-bottom: 0;
}

.faq-style.accordion-flush .accordion-item .accordion-header .text-primary{
  color: #515151!important;
  box-shadow: none!important;
}
.faq-style.accordion-flush .accordion-item .accordion-button:not(.collapsed){
      background-color: #e1eaff;
      color: var(--color-primary)!important;
}
.section-title-premium{
      position: relative;
    padding-bottom: 18px;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 2rem;
}
 /* Custom Accordion */
  .accordion-premium .accordion-item {
    border: 1px solid rgba(46, 74, 138, 0.06);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
  }
  .accordion-premium .accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    padding: 20px 24px;
    font-size: 1.05rem;
  }
  .accordion-premium .accordion-button:not(.collapsed) {
    background-color: rgba(46, 74, 138, 0.03);
    color: #515151;
    box-shadow: none;
  }
  .accordion-premium .accordion-body {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    background-color: #ffffff;
  }
  .premium-card {
    background: #ffffff;
    border: 1px solid rgba(46, 74, 138, 0.06);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
  }
  .premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(197, 168, 128, 0.25);
  }
  .premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary-grad);
  }
  .premium-card.accent-card::before {
    background: var(--color-secondary);
  }
  .premium-card .text-secondary{
    color: var(--color-primary) !important;
            font-size: 2rem !important;
   }
  .premium-card h4.text-primary, .premium-card h5.text-primary{
        font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #515151 !important;
  }
  /* Call to Action */
  .cta-premium {
    background: #242424;
    border-radius: 28px;
    color: #ffffff;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 55px -12px rgba(8, 41, 90, 0.3);
  }
  /* .cta-premium::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.18) 0%, transparent 70%);
    border-radius: 50%;
  } */
  /* Cost card style */
  .cost-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(46, 74, 138, 0.06);
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
    overflow: hidden;
  }
  .cost-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
  }
  .cost-card-header {
    background: var(--primary-grad);
    color: #ffffff;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
  }
  .cost-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
  }
  .cost-row:last-child {
    border-bottom: none;
  }
  /* Step timeline */
  .timeline-premium {
    position: relative;
    padding-left: 30px;
  }
  .timeline-premium::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(46, 74, 138, 0.15);
  }
  .timeline-item-premium {
    position: relative;
    padding-bottom: 30px;
  }
  .timeline-item-premium:last-child {
    padding-bottom: 0;
  }
  .timeline-marker-premium {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background: var(--color-secondary);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px var(--color-secondary);
  }
  /* Table styling */
  .table-premium-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(46, 74, 138, 0.06);
  }
  .table-premium {
    border: none;
    margin-bottom: 0;
  }
  .table-premium thead {
    background: var(--primary-grad);
    color: #ffffff;
  }
  .table-premium th {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
    border: none !important;
    padding: 20px 24px !important;
  }
  .table-premium td {
    padding: 20px 24px !important;
    border-color: #f1f5f9 !important;
    font-size: 14.5px;
    color: var(--color-text-muted);
  }
  .table-premium tr:last-child td {
    border-bottom: none !important;
  }
  .table-premium tr:hover td {
    background-color: #f8fafc;
    color: var(--color-text-dark);
  }
  /* Stat Counter Card */
  .stat-card-premium {
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(46, 74, 138, 0.05);
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
  }
  .stat-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
  }
  .stat-card-premium .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
  }
  .stat-card-premium .stat-number span {
    color: var(--color-secondary);
  }
   /* Institution type pill */
  .inst-type-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
  }
  .badge-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-block;
  }
  .badge-rank { background: rgba(46, 74, 138, 0.08); color: var(--color-primary); }
  .badge-location { background: rgba(91, 79, 139, 0.08); color: var(--color-secondary); }
  .badge-gold {
    background: var(--accent-gold-light);
    color: #9d7d4c;
    border: 1px solid rgba(197, 168, 128, 0.3);
  }
  .badge-yes { background: rgba(25, 135, 84, 0.1); color: #0d6832; border-radius: 50px; font-size: 12px; padding: 4px 12px; font-weight: 700; display: inline-block; }
  .badge-no  { background: rgba(220, 53, 69, 0.08); color: #b02a37; border-radius: 50px; font-size: 12px; padding: 4px 12px; font-weight: 700; display: inline-block; }
  .badge-some{ background: rgba(255, 193, 7, 0.12); color: #8a6800; border-radius: 50px; font-size: 12px; padding: 4px 12px; font-weight: 700; display: inline-block; }
.program-icon-box {
  width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgb(58 91 204 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2e4a8a;
    margin-bottom: 20px;
  flex-shrink: 0;
}
.do-item { color: #0a4d26; font-size: 14px; margin-bottom: 8px; }
  .dont-item { color: #7a1a22; font-size: 14px; margin-bottom: 8px; }
  .doc-list-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 14px;
  }
  .doc-list-item:last-child { border-bottom: none; }
  .doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgb(58 91 204 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e4a8a;
    flex-shrink: 0;
  }
  .subject-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
   /* Special Section Highlight */
  .special-section {
    background: linear-gradient(135deg, rgba(46, 74, 138, 0.03) 0%, rgba(197, 168, 128, 0.06) 100%);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 24px;
    padding: 50px;
  }
  /* Badges */
  .badge-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-block;
  }
  .badge-rank { background: rgba(46, 74, 138, 0.08); color: var(--color-primary); }
  .badge-location { background: rgba(91, 79, 139, 0.08); color: var(--color-secondary); }
  .badge-gold {
    background: var(--accent-gold-light);
    color: #9d7d4c;
    border: 1px solid rgba(197, 168, 128, 0.3);
  }
  .badge-work {
    background: rgba(25, 135, 84, 0.08);
    color: #146c43;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-block;
  }
   /* Cards */
  .premium-card {
    background: #ffffff;
    border: 1px solid rgba(46, 74, 138, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--color-secondary);
    opacity: 0;
    transition: var(--transition-premium);
  }
  .premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
  }
  .premium-card:hover::before {
    opacity: 1;
  }

  /* Timeline */
  .timeline-premium {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    list-style: none;
  }
  .timeline-premium::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 15px;
    width: 2px;
    background: rgba(197, 168, 128, 0.3);
  }
  .timeline-premium li {
    position: relative;
    margin-bottom: 40px;
  }
    .timeline-premium li h5{
          font-size: 1.1rem!important;
          color: #515151 !important;
    }
  .timeline-premium li:last-child {
    margin-bottom: 0;
  }
  .timeline-premium li::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--accent-gold);
    z-index: 2;
  }
  /* Interactive Calculator Layout */
  .calculator-card {
    background: #ffffff;
    border: 1px solid rgba(46, 74, 138, 0.06);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    transition: var(--transition-premium);
  }
  .form-label-custom {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .form-select-custom, .form-range-custom {
    border-radius: 12px;
    border: 2px solid rgba(46, 74, 138, 0.08);
    padding: 14px 20px;
    font-size: 15px;
    color: var(--color-text-dark);
    background-color: #f8fafc;
    transition: var(--transition-premium);
  }
  .form-select-custom:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
  }
  .results-panel {
        background: #e5edff;
    border-radius: 20px;
    padding: 40px;
    /* color: #ffffff; */
    box-shadow: 0 15px 45px -10px rgba(8, 41, 90, 0.2);
    position: relative;
    overflow: hidden;
  }
  .results-panel::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
  }
  .result-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 20px 0;
  }
  

  /* Blog Cards */
  .blog-card {
    background: #ffffff;
    border: 1px solid rgba(46, 74, 138, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
  }
  .blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #1a2d5a;
  }
  .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-premium);
  }
  .blog-card:hover .blog-card-img {
    transform: scale(1.05);
    opacity: 1;
  }
  .blog-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .blog-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
  }
  .blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .blog-excerpt {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .blog-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-premium);
  }
  .blog-link i {
    transition: var(--transition-premium);
  }
  .blog-link:hover {
    color: var(--color-primary);
  }
  .blog-link:hover i {
    transform: translateX(5px);
  }
  /* Badges */
  .badge-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-block;
  }
  .badge-gold {
    background: var(--accent-gold-light);
    color: #9d7d4c;
    border: 1px solid rgba(197, 168, 128, 0.3);
  }
  .blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }
  .blog-card .badge-gold{
        background: rgb(255 255 255 / 12%);
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 30%);
    backdrop-filter: blur(7px);
  }
/* end common css */