 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', Helvetica, Arial, sans-serif;
     font-family: 'Roboto', sans-serif;
 }

 body {
     overflow-x: hidden;
     background-color: #f7f7f7;
 }

 /* --- Top Brand Bar --- */
 .top-brand-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 40px;
 }

 .logo-area img {
     height: 65px;
     width: auto;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .logo-area img:hover {
     transform: scale(1.02);
 }

 .meta-info-container {
     display: flex;
     gap: 40px;
     align-items: center;
 }

 /* --- Updated Info Block CSS --- */
 .info-block {
     display: flex;
     align-items: center;
     gap: 12px;
     color: #1B4E85;
 }

 .info-icon i {
     font-size: 1.6rem;
     color: #1B4E85;
 }

 .info-text {
     display: flex;
     flex-direction: column;
 }

 .info-text span {
     opacity: 0.7;
     font-weight: 500;
     margin-bottom: 2px;
     text-transform: uppercase;
     font-size: 0.75rem;
     letter-spacing: 1px;
 }

 .info-text strong {
     font-weight: 550;
     font-size: 1rem;
     color: #1B4E85;
 }

 .social-circles {
     display: flex;
     gap: 12px;
     border-left: 1px solid #1B4E85;
     padding-left: 20px;
 }

 .circle-icon {
     width: 38px;
     height: 38px;
     background-color: #1B4E85;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-size: 0.9rem;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

 .circle-icon:hover {
     background-color: rgb(255, 196, 0);
     color: #ffffff;
     transform: translateY(-4px);
     box-shadow: 0 6px 15px rgba(255, 196, 0, 0.4);
 }

 /* --- Main Navigation Panel (PERFECT STICKY) --- */
 .main-navigation-panel {
     background: #1B4E85;
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-left: 40px;
     height: 75px;
     position: sticky;
     top: 0;
     width: 100%;
     z-index: 9999;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 /* --- Mobile Menu Text (Hidden on Desktop) --- */
 .mobile-menu-text {
     display: none;
     color: #ffffff;
     font-size: 1.2rem;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
 }

 .nav-links-list {
     display: flex;
     gap: 35px;
     height: 100%;
     align-items: center;
 }

 .nav-links-list a {
     text-decoration: none;
     color: #ffffff;
     font-size: 0.95rem;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     display: flex;
     align-items: center;
     height: 100%;
 }

 .nav-links-list>a::after,
 .dropdown-item>a::after {
     content: '';
     position: absolute;
     bottom: 20px;
     left: 0;
     width: 0;
     height: 3px;
     background-color: rgb(255, 196, 0);
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 .nav-links-list>a:hover::after,
 .dropdown-item:hover>a::after,
 .nav-links-list>a.active-link::after {
     width: 100%;
 }

 .nav-links-list a.active-link,
 .nav-links-list a:hover {
     color: rgb(255, 196, 0);
 }

 /* --- Main Dropdown --- */
 .dropdown-item {
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     cursor: pointer;
 }

 .dropdown-item>a i {
     font-size: 0.75rem;
     margin-left: 6px;
     transition: transform 0.3s ease;
 }

 .dropdown-item:hover>a i {
     transform: rotate(180deg);
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     min-width: 230px;
     border-radius: 0 0 8px 8px;
     padding: 15px 0;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     list-style: none;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     border-top: 3px solid rgb(255, 196, 0);
 }

 .dropdown-item:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li a,
 .sub-menu li a {
     color: #333 !important;
     padding: 12px 25px;
     font-size: 0.9rem;
     font-weight: 500;
     display: block;
     height: auto;
     transition: all 0.3s ease;
 }

 .dropdown-menu li a:hover,
 .sub-menu li a:hover {
     color: #1B4E85 !important;
     background-color: rgba(27, 78, 133, 0.05);
     padding-left: 32px;
     border-left: 4px solid rgb(255, 196, 0);
 }

 /* --- Nested Sub-menu --- */
 .has-submenu {
     position: relative;
 }

 .has-submenu>a {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .has-submenu>a i {
     font-size: 0.7rem;
     transition: transform 0.3s ease;
 }

 .dropdown-item:hover .has-submenu>a i {
     transform: none;
 }

 .has-submenu .sub-menu {
     position: absolute;
     left: 100%;
     top: 0;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     min-width: 220px;
     border-radius: 8px;
     padding: 15px 0;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
     list-style: none;
     border-left: 3px solid rgb(255, 196, 0);
     opacity: 0;
     visibility: hidden;
     transform: translateX(15px);
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .has-submenu:hover .sub-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 /* --- Skew Button --- */
 .action-skew-btn {
     height: 100%;
     width: 250px;
     position: relative;
     cursor: pointer;
     overflow: hidden;
 }

 .skew-bg {
     background: rgb(255, 196, 0);
     height: 100%;
     width: 120%;
     position: absolute;
     top: 0;
     left: 20px;
     transform: skewX(-25deg);
     transform-origin: top left;
     transition: all 0.4s ease;
 }

 .action-skew-btn:hover .skew-bg {
     background: #1B4E85;
     left: 10px;
 }

 .action-text {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #111;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 1px;
     text-decoration: none;
     padding-left: 25px;
     z-index: 2;
     transition: color 0.4s ease;
 }

 .action-skew-btn:hover .action-text {
     color: #ffffff;
 }

 /* --- Mobile Hamburger Menu --- */
 .menu-toggle {
     display: none;
     color: #ffffff;
     font-size: 1.8rem;
     cursor: pointer;
     padding-right: 20px;
 }

 /* --- Responsive Design --- */
 @media (max-width: 1024px) {
     .meta-info-container {
         gap: 20px;
     }

     .nav-links-list {
         gap: 20px;
     }

     .action-skew-btn {
         width: 200px;
     }

     .action-text {
         font-size: 0.8rem;
         padding-left: 15px;
     }
 }

 @media (max-width: 850px) {
     .meta-info-container {
         display: none;
     }

     .top-brand-bar {
         justify-content: center;
         padding: 10px;
     }

     .main-navigation-panel {
         padding-left: 20px;
     }

     /* Show Menu Text & Icon on Mobile */
     .mobile-menu-text {
         display: block;
     }

     .menu-toggle {
         display: block;
     }

     .action-skew-btn {
         display: none;
     }

     .nav-links-list {
         position: absolute;
         top: 75px;
         left: -100%;
         flex-direction: column;
         background: #1B4E85;
         width: 100%;
         height: auto;
         align-items: flex-start;
         padding: 20px 0;
         transition: left 0.4s ease;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
         overflow-y: auto;
         max-height: calc(100vh - 75px);
     }

     .nav-links-list.active {
         left: 0;
     }

     .nav-links-list>a,
     .dropdown-item {
         width: 100%;
         height: auto;
         padding: 15px 30px;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     }

     .nav-links-list>a::after,
     .dropdown-item>a::after {
         display: none;
     }

     .dropdown-item {
         flex-direction: column;
         align-items: flex-start;
     }

     .dropdown-item>a {
         width: 100%;
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: transparent;
         border: none;
         padding: 10px 0 0 20px;
         display: none;
     }

     .dropdown-item:hover .dropdown-menu {
         display: block;
     }

     .has-submenu .sub-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: transparent;
         border: none;
         border-left: 2px solid rgba(255, 255, 255, 0.1);
         padding: 0 0 0 15px;
         margin-top: 5px;
         display: none;
     }

     .has-submenu:hover .sub-menu {
         display: block;
     }

     .dropdown-menu li a,
     .sub-menu li a {
         color: #ddd !important;
         padding: 10px 15px;
     }

     .dropdown-menu li a:hover,
     .sub-menu li a:hover {
         color: rgb(255, 196, 0) !important;
         background: transparent;
         border-left: 2px solid rgb(255, 196, 0);
         padding-left: 20px;
     }
 }

 /* Navbar End */


 /*  Slider Start */

 /* Slider Start */
.lis-slider {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.lis-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.lis-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Light shadow overlay */
.lis-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 12, 25, 0.55) 0%,
            rgba(8, 12, 25, 0.35) 45%,
            rgba(8, 12, 25, 0.12) 100%);
    z-index: 1;
}

.lis-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

.lis-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.lis-tag {
    color: rgb(255, 196, 0);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.lis-content h1 {
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.12;
    font-weight: 800;
    max-width: 760px;
    margin-bottom: 22px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.lis-content p {
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
    max-width: 760px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
}

/* Buttons ko Left-Align kar diya gaya hai */
.lis-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.lis-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 58px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lis-btn-primary {
    background: rgb(255, 196, 0);
    color: #000;
}

.lis-btn-primary:hover {
    background: #1B4E85;
    color: #fff;
    transform: translateY(-3px);
}

.lis-btn-light {
    background: #ffffff;
    color: #111111;
}

.lis-btn-light:hover {
    background: rgb(255, 196, 0);
    transform: translateY(-3px);
}

.lis-arrows {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lis-arrow {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lis-arrow:hover {
    background: rgb(255, 196, 0);
    border-color: rgb(255, 196, 0);
}

.lis-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}

.lis-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lis-dot.active {
    width: 32px;
    border-radius: 20px;
    background: rgb(255, 196, 0);
}

/* Responsive Media Queries */

@media (max-width: 992px) {
    .lis-slider { height: 620px; }
    .lis-content { padding: 0 45px; }
    .lis-content h1 { max-width: 650px; }
    .lis-content p { max-width: 650px; font-size: 17px; }
    .lis-arrows { right: 35px; }
}

/* Mobile par slider hide karne ke liye */
@media (max-width: 768px) {
    .lis-slider {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .lis-slider { height: 540px; }
    .lis-content h1 { font-size: 32px; }
    .lis-content p { font-size: 14.5px; }
    .lis-buttons { gap: 12px; }
    .lis-btn { width: 100%; min-width: 100%; }
    .lis-dots { bottom: 22px; }
}

 /* Slider End */


 /* About Section Start */

 .lis-about-section {
     width: 100%;
     padding: 85px 6%;
     overflow: hidden;
     position: relative;
 }

 .lis-about-container {
     max-width: 1250px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 60px;
 }

 .lis-about-content {
     width: 100%;
 }

 /* ABOUT US Label */
 .lis-section-label {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 18px;
 }

 .lis-section-label span {
     color: #255893;
     font-size: 16px;
     font-weight: 800;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .lis-section-label i {
     width: 60px;
     height: 2px;
     background: #255893;
     display: inline-block;
     position: relative;
 }

 .lis-section-label i::before {
     content: "";
     position: absolute;
     top: -5px;
     left: 0;
     width: 60px;
     height: 2px;
     background: #255893;
 }

 .lis-small-heading {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     color: #255893;
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .lis-small-heading .lis-icon {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: #e7f0ff;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 17px;
 }

 .lis-about-content h2 {
     font-size: clamp(34px, 4vw, 52px);
     line-height: 1.15;
     color: rgb(255, 196, 0);
     margin-bottom: 22px;
     font-weight: 800;
     letter-spacing: -0.8px;
 }

 .lis-about-content h2 span {
     color: #255893;
     display: inline-block;
 }

 .lis-intro {
     font-size: 19px;
     color: #1f2937;
     font-weight: 700;
     line-height: 1.7;
     margin-bottom: 18px;
     max-width: 640px;
 }

 .lis-about-content p {
     font-size: 16px;
     line-height: 1.9;
     color: #5f6b7a;
     max-width: 660px;
     margin-bottom: 22px;
 }

 .lis-about-points {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px 24px;
     margin: 30px 0 36px;
 }

 .lis-point {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .lis-point span {
     width: 30px;
     height: 30px;
     background: rgb(255, 196, 0);
     color: #123e75;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     flex-shrink: 0;
     box-shadow: 0 8px 18px rgba(37, 88, 147, 0.22);
 }

 .lis-point p {
     margin: 0;
     color: #123e75;
     font-size: 15.5px;
     font-weight: 700;
     line-height: 1.4;
 }

 .lis-buttons {
     display: flex;
     gap: 18px;
     flex-wrap: wrap;
 }

 .lis-about-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #255893;
     color: #ffffff;
     text-decoration: none;
     padding: 14px 32px;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 700;
     box-shadow: 0 12px 26px rgba(37, 88, 147, 0.22);
     transition: 0.3s ease;
 }

 .lis-about-btn:hover {
     background: rgb(255, 196, 0);
     color: #123e75;
     transform: translateY(-3px);
 }

 .lis-call-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: #255893;
     text-decoration: none;
     font-size: 16px;
     font-weight: 700;
     transition: 0.3s ease;
 }

 .lis-call-btn:hover {
     color: #183f70;
     text-decoration: underline;
 }

 /* Right Images */
 .lis-about-images {
     position: relative;
     min-height: 540px;
 }

 .lis-image-main,
 .lis-image-second {
     position: absolute;
     border-radius: 20px;
     overflow: hidden;
     background: #ffffff;
     box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
 }

 .lis-image-main {
     top: 0;
     right: 0;
     width: 82%;
     height: 330px;
     z-index: 2;
 }

 .lis-image-second {
     bottom: 0;
     left: 0;
     width: 72%;
     height: 290px;
     z-index: 3;
     border: 7px solid #ffffff;
 }

 .lis-image-main img,
 .lis-image-second img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: 0.5s ease;
 }

 .lis-image-main:hover img,
 .lis-image-second:hover img {
     transform: scale(1.05);
 }

 .lis-feedback-card {
     position: absolute;
     right: 0;
     bottom: 58px;
     width: 185px;
     background: #255893;
     color: #ffffff;
     border-radius: 16px;
     padding: 22px;
     z-index: 4;
     box-shadow: 0 16px 35px rgba(37, 88, 147, 0.32);
 }

 .lis-feedback-card h3 {
     font-size: 44px;
     line-height: 1;
     margin-bottom: 8px;
     font-weight: 800;
 }

 .lis-feedback-card p {
     font-size: 14px;
     font-weight: 600;
     line-height: 1.4;
     margin: 0;
     color: #ffffff;
 }

 .lis-about-images::before {
     content: "";
     position: absolute;
     width: 220px;
     height: 220px;
     border-radius: 50%;
     background: rgba(37, 88, 147, 0.08);
     left: 25px;
     top: 55px;
     z-index: 1;
 }

 .lis-about-images::after {
     content: "";
     position: absolute;
     width: 115px;
     height: 115px;
     border-radius: 50%;
     background: rgba(255, 193, 7, 0.18);
     right: -25px;
     bottom: 90px;
     z-index: 1;
 }

 /* Tablet Responsive */
 @media (max-width: 992px) {
     .lis-about-section {
         padding: 75px 5%;
     }

     .lis-about-container {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .lis-about-content {
         max-width: 800px;
     }

     .lis-about-images {
         max-width: 780px;
         width: 100%;
         margin: auto;
     }
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .lis-about-section {
         padding: 60px 5%;
     }

     .lis-about-container {
         gap: 40px;
     }

     .lis-about-content h2 {
         font-size: 34px;
     }

     .lis-intro {
         font-size: 17px;
     }

     .lis-about-content p {
         font-size: 15px;
         line-height: 1.8;
     }

     .lis-about-points {
         grid-template-columns: 1fr;
         gap: 14px;
         margin: 26px 0 32px;
     }

     .lis-about-images {
         min-height: auto;
         display: grid;
         gap: 18px;
     }

     .lis-image-main,
     .lis-image-second,
     .lis-feedback-card {
         position: relative;
         width: 100%;
         height: auto;
         inset: auto;
     }

     .lis-image-main,
     .lis-image-second {
         border-radius: 16px;
     }

     .lis-image-second {
         border: none;
     }

     .lis-image-main img,
     .lis-image-second img {
         height: 260px;
     }

     .lis-feedback-card {
         text-align: center;
         padding: 20px;
     }

     .lis-feedback-card h3 {
         font-size: 42px;
     }

     .lis-about-images::before,
     .lis-about-images::after {
         display: none;
     }
 }

 /* Small Mobile */
 @media (max-width: 480px) {
     .lis-about-section {
         padding: 50px 4%;
     }

     .lis-section-label span {
         font-size: 14px;
     }

     .lis-section-label i,
     .lis-section-label i::before {
         width: 50px;
     }

     .lis-about-content h2 {
         font-size: 30px;
     }

     .lis-small-heading {
         font-size: 14px;
     }

     .lis-buttons {
         flex-direction: column;
         align-items: stretch;
         gap: 14px;
     }

     .lis-about-btn,
     .lis-call-btn {
         width: 100%;
         text-align: center;
     }

     .lis-image-main img,
     .lis-image-second img {
         height: 220px;
     }
 }

 /* About Section End */


 /* Our Courses */
 .courses-section {
     padding: 80px 20px;
     font-family: 'Roboto', sans-serif;
     text-align: center;
 }

 .courses-section * {
     box-sizing: border-box;
 }

 /* Headings */
 .section-heading {
     margin-bottom: 50px;
 }

 .sub-title {
     color: #1B4E85;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 1px;
     text-transform: uppercase;
     display: block;
     margin-bottom: 10px;
 }

 .main-title {
     color: #1B4E85;
     font-size: 2.5rem;
     font-weight: 700;
     margin: 0;
 }

 /* Carousel Layout */
 .carousel-container {
     overflow: hidden;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px 0;
     user-select: none;
     -webkit-user-select: none;
 }

 .carousel-track {
     display: flex;
     gap: 30px;
     transition: transform 0.5s ease-in-out;
     cursor: grab;
 }

 .carousel-track:active {
     cursor: grabbing;
 }

 /* Card Styling */
 .course-card {
     background-color: #ffffff;
     padding: 40px 30px;
     border-radius: 5px;
     text-align: left;
     width: calc(100% / 3 - 20px);
     flex: 0 0 calc(100% / 3 - 20px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .card-top {
     display: flex;
     gap: 20px;
     margin-bottom: 30px;
 }

 .icon-box {
     background-color: rgb(255, 196, 0);
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .icon-box i {
     color: #ffffff;
     font-size: 1.8rem;
 }

 .card-info h3 {
     color: #1B4E85;
     font-size: 1.3rem;
     line-height: 1.4;
     margin-top: 0;
     margin-bottom: 15px;
 }

 .rating {
     color: rgb(255, 196, 0);
     font-size: 0.9rem;
     margin-bottom: 15px;
 }

 .author {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .author img {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     object-fit: cover;
     pointer-events: none;
 }

 .author span {
     color: #1B4E85;
     font-weight: 500;
     font-size: 0.95rem;
 }

 .lectures {
     color: #1B4E85;
     font-size: 0.9rem;
     font-weight: 500;
 }

 /* Price & Button Styling */
 .price-box {
     background-color: #f8f9fa;
     color: #1B4E85;
     text-align: center;
     padding: 15px;
     border-radius: 5px;
     font-weight: 500;
     margin-bottom: 15px;
 }

 .enroll-btn {
     width: 100%;
     background: transparent;
     border: 1px solid #1B4E85;
     color: #1B4E85;
     padding: 15px;
     font-weight: 700;
     font-size: 0.95rem;
     cursor: pointer;
     border-radius: 5px;
     transition: all 0.3s ease;
 }

 .enroll-btn:hover {
     background-color: #1B4E85;
     color: #ffffff;
 }

 /* Indicators Styling */
 .carousel-indicators {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 40px;
 }

 .indicator-line {
     width: 30px;
     height: 3px;
     background-color: #dddddd;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .indicator-line.active {
     background-color: #1B4E85;
 }

 /* --- Features Section (3 Items in Card 2) --- */
 .course-features {
     display: flex;
     align-items: center;
     /* Ensures content is vertically centered */
     justify-content: space-between;
     background-color: #f4f6f9;
     padding: 12px 16px;
     border-radius: 8px;
     border-top: 1px solid #e5e7eb;
     border-bottom: 1px solid #e5e7eb;
     margin-bottom: 20px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 10px;
     flex: 1;
 }

 .feature-item:not(:last-child) {
     border-right: 1px solid #cbd5e1;
     margin-right: 10px;
     padding-right: 4px;
 }

 .feature-icon {
     color: #123e75;
     font-size: 20px;
     flex-shrink: 0;
 }

 .feature-text {
     color: #000000;
     font-size: 0.85rem;
     line-height: 1.2;
     font-weight: 500;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .course-card {
         width: calc(100% / 2 - 15px);
         flex: 0 0 calc(100% / 2 - 15px);
     }
 }

 @media (max-width: 768px) {
     .course-card {
         width: 100%;
         flex: 0 0 100%;
     }

     .main-title {
         font-size: 2rem;
     }
 }

 /* Choti mobile screens ke liye course-features ki setting */
 @media (max-width: 400px) {
     .course-features {
         padding: 10px;
     }

     .feature-text {
         font-size: 0.75rem;
     }

     .feature-icon {
         font-size: 16px;
     }

     .feature-item {
         gap: 5px;
     }
 }

 /* Affiliated Section Start */

 /* Headings Styling */
 .sub-title {
     color: #1B4E85;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 1px;
     text-transform: uppercase;
     display: block;
     margin-bottom: 10px;
 }

 .main-title {
     color: #1B4E85;
     font-size: 2.5rem;
     font-weight: 700;
     margin: 0;
 }

 /* =========================================
           AFFILIATION SECTION STYLES
        ========================================= */
 .affiliation-section {
     padding: 60px 20px;
     text-align: center;
     margin-top: -20px;
     /* Demo ke liye thori spacing */
 }

 .affiliation-section .section-heading {
     margin-bottom: 40px;
 }

 .logo-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .logo-item {
     width: 130px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .logo-item img {
     max-width: 100%;
     height: auto;
     /* Shuru mein black/white aur thoda transparent */
     filter: grayscale(100%) opacity(60%);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .logo-item img:hover {
     /* Hover par color aayega aur thoda zoom hoga */
     filter: grayscale(0%) opacity(100%);
     transform: scale(1.08);
 }

 /* =========================================
           RESPONSIVE DESIGN FOR LOGOS
        ========================================= */
 @media (max-width: 992px) {
     .logo-container {
         gap: 30px;
     }

     .logo-item {
         width: 110px;
     }
 }

 @media (max-width: 768px) {
     .main-title {
         font-size: 2rem;
     }

     .logo-container {
         gap: 25px;
     }

     .logo-item {
         width: 90px;
     }
 }


 /* why-choose-us Start */

 .why-choose-us {
     padding: 100px 20px;
     text-align: center;
 }

 /* CHANGED: Renamed to avoid conflicts with your existing .container */
 .wcu-container {
     max-width: 1200px;
     margin: 0 auto;
     display: block !important;
     /* Forces vertical stacking */
     width: 100%;
 }

 /* Header Styling */
 .section-header {
     margin-bottom: 60px;
     display: block;
     width: 100%;
 }

 .section-header h2 {
     font-size: 2.8rem;
     color: #1B4E85;
     margin-bottom: 15px;
     font-weight: 800;
     letter-spacing: -1px;
     text-align: center;
 }

 .section-header p {
     font-size: 1.1rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
     text-align: center;
 }

 /* Grid Setup */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 30px;
     width: 100%;
 }

 /* Card Styling */
 .feature-card {
     background: rgba(255, 255, 255, 0.6);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(255, 255, 255, 0.8);
     padding: 40px 25px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     text-align: center;
 }

 .feature-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     background: rgba(255, 255, 255, 0.8);
 }

 /* Icon Wrapper */
 .icon-wrapper {
     width: 80px;
     height: 80px;
     margin: 0 auto 25px;
     background: #1B4E85;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 2rem;
     box-shadow: 0 10px 20px #1B4E85;
     transition: transform 0.3s ease;
 }

 .feature-card:hover .icon-wrapper {
     transform: scale(1.1) rotate(5deg);
     background: rgb(255, 196, 0);
     color: #1B4E85;
 }

 .feature-card h3 {
     font-size: 1.4rem;
     margin-bottom: 15px;
     color: #1B4E85;
     font-weight: 600;
 }

 .feature-card p {
     font-size: 0.95rem;
     color: #475569;
     line-height: 1.7;
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .section-header h2 {
         font-size: 2.2rem;
     }

     .why-choose-us {
         padding: 60px 15px;
     }
 }

 /* why-choose-us End */

 /* Our Team Start */

 .team-section * {
     box-sizing: border-box;
 }

 .team-section {
     max-width: 1180px;
     margin: 0 auto;

 }

 .team-eyebrow {
     display: flex;
     align-items: center;
     gap: 10px;
     justify-content: center;
     font-size: 13px;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: #1B4E85;
     font-weight: 600;
     margin-bottom: 16px;
 }

 .team-eyebrow::before,
 .team-eyebrow::after {
     content: "";
     width: 28px;
     height: 1px;
     background: #1B4E85;
     opacity: 0.5;
 }

 .team-heading {
     font-family: 'Roboto', sans-serif;
     font-size: clamp(32px, 5vw, 46px);
     font-weight: 700;
     text-align: center;
     line-height: 1.18;
     margin: 0 0 14px;
     letter-spacing: -0.01em;
     color: #1B4E85;
 }

 .team-heading span {
     color: rgb(255, 196, 0);
 }

 .team-sub {
     text-align: center;
     max-width: 520px;
     margin: 0 auto 64px;
     color: #475569;
     font-size: 16px;
     line-height: 1.6;
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 32px;
 }

 .team-card {
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 1px 2px rgba(20, 22, 31, 0.04);
     border: 1px solid #e2e8f0;
     /* Changed var(--line) to a fallback hex */
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .team-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 24px 44px -20px rgba(20, 22, 31, 0.25);
 }

 /* Renamed to avoid conflicts */
 .team-photo {
     position: relative;
     width: 100%;
     aspect-ratio: 4 / 5;
     overflow: hidden;
     background: #dfe1e6;
 }

 .team-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     filter: grayscale(100%);
     transform: scale(1.02);
     transition: filter 0.6s ease, transform 0.6s ease;
 }

 .team-card:hover .team-photo img {
     filter: grayscale(0%);
     transform: scale(1.08);
 }

 .team-photo-overlay {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 22px 20px 18px;
     display: flex;
     gap: 10px;
     background: linear-gradient(to top, rgba(15, 17, 22, 0.82) 0%, rgba(15, 17, 22, 0.0) 100%);
     opacity: 0;
     transform: translateY(8px);
     transition: opacity 0.35s ease, transform 0.35s ease;
 }

 .team-card:hover .team-photo-overlay {
     opacity: 1;
     transform: translateY(0);
 }

 .team-photo-overlay a {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: rgb(255, 196, 0);
     border: 1px solid rgba(255, 255, 255, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #1B4E85;
     text-decoration: none;
     font-size: 12.5px;
     font-weight: 600;
     backdrop-filter: blur(2px);
     transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
 }

 .team-photo-overlay a:hover {
     background: #1B4E85;
     border-color: #1B4E85;
     color: rgb(255, 196, 0);
     transform: translateY(-3px);
 }

 /* Renamed to avoid conflicts */
 .team-card-info {
     padding: 26px 22px 30px;
     text-align: center;
 }

 .team-member-name {
     font-family: 'Roboto', sans-serif;
     color: #1B4E85;
     font-size: 19px;
     font-weight: 700;
     margin: 0 0 10px;
 }

 .team-member-role {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: #475569;
     margin: 0;
     position: relative;
     display: inline-block;
     padding-bottom: 14px;
 }

 .team-member-role::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 26px;
     height: 2px;
     background: rgb(255, 196, 0);
     /* Changed var(--gold) to hex */
     transform: translateX(-50%) scaleX(1);
     transition: width 0.3s ease, background 0.3s ease;
 }

 .team-card:hover .team-member-role::after {
     width: 48px;
     background: #1B4E85;
 }

 /* View All Team CTA */
 .team-cta {
     display: flex;
     justify-content: center;
     margin-top: 60px;
 }

 .view-all-btn {
     font-family: 'Roboto', sans-serif;
     font-weight: 800;
     font-size: 15px;
     color: #fff;
     background: #1B4E85;
     text-decoration: none;
     /* Added to remove link underline */
     padding: 15px 34px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
 }

 .view-all-btn:hover {
     background: rgb(255, 196, 0);
     color: #1B4E85;
     transform: translateY(-2px);
     box-shadow: 0 14px 28px -12px rgb(255, 196, 0);
 }

 .view-all-btn svg {
     width: 16px;
     height: 16px;
     transition: transform 0.3s ease;
 }

 .view-all-btn:hover svg {
     transform: translateX(4px);
 }

 /* Responsive breakpoints */
 @media (max-width: 900px) {
     .team-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 620px) {
     .team-section {
         padding: 64px 20px 80px;
     }

     .team-grid {
         grid-template-columns: 1fr;
         gap: 22px;
     }

     .team-sub {
         margin-bottom: 44px;
     }

     .team-photo {
         aspect-ratio: 4 / 4.4;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     .team-card,
     .team-photo img,
     .team-photo-overlay,
     .team-member-role::after,
     .view-all-btn,
     .view-all-btn svg {
         transition: none;
     }
 }

 /* Our Team End */


 /* two Box Start */

 .container {
     display: flex;
     gap: 40px;
     padding: 20px;
     flex-wrap: wrap;
     justify-content: center;
 }

 /* --- FLIP CARD CONTAINER --- */
 .flip-card {
     background-color: transparent;
     width: 400px;
     height: 250px;
     perspective: 1000px;
     /* 3D Camera effect */
     cursor: pointer;
 }

 /* Inner Content Wrapper */
 .flip-card-inner {
     position: relative;
     width: 100%;
     height: 100%;
     text-align: center;
     transition: transform 0.8s;
     transform-style: preserve-3d;
     /* Text ko 3D rakhne ke liye zaroori */
     border-radius: 30px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .flip-card:hover .flip-card-inner {
     transform: rotateY(180deg);
 }

 /* Front aur Back Styling */
 .flip-card-front,
 .flip-card-back {
     position: absolute;
     width: 100%;
     height: 100%;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transform-style: preserve-3d;
     /* Isse text hawa mein float karega */
 }

 /* --- FRONT SIDE --- */
 .flip-card-front {
     background-color: #333;
     color: white;
 }

 .bg-img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     border-radius: 30px;
     /* transform: translateZ(0px); Background peeche rahega */
 }

 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     border-radius: 30px;
 }

 /* MAIN MAGIC HERE: Text ko 60px aage laya gaya hai */
 .front-text {
     position: relative;
     font-size: 2rem;
     text-transform: uppercase;
     font-weight: 800;
     line-height: 1.1;
     text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
     transform: translateZ(60px);
     /* Yeh text ko background se alag dikhayega jab ghoomega */
 }

 /* --- BACK SIDE --- */
 .flip-card-back {
     background: linear-gradient(135deg, #1B4E85, #123e75);
     color: white;
     transform: rotateY(180deg);
     padding: 20px;
     box-sizing: border-box;
 }

 /* Back side ke elements ko bhi thoda ubhra hua banaya hai */
 .flip-card-back h3 {
     margin: 0 0 10px 0;
     font-size: 1.5rem;
     transform: translateZ(60px);
 }

 .flip-card-back p {
     font-size: 0.9rem;
     margin-bottom: 20px;
     font-weight: 500;
     transform: translateZ(50px);
 }

 .btn {
     background-color: white;
     color: #1B4E85;
     padding: 10px 25px;
     text-decoration: none;
     font-weight: bold;
     border-radius: 50px;
     transition: 0.3s;
     transform: translateZ(50px);
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
 }

 .btn:hover {
     background-color: #ffd700;
     color: #000;
 }

 /* Images */
 .img-1 {
     background-image: url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?q=80&w=1000&auto=format&fit=crop');
 }

 .img-2 {
     background-image: url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?q=80&w=1000&auto=format&fit=crop');
 }

 @media (max-width: 768px) {
     .flip-card {
         width: 100%;
         height: 200px;
     }

     .front-text {
         font-size: 1.5rem;
     }
 }

 h3 {
     color: white;
 }


 /* Footer Start */

 /* --- MAIN FOOTER SECTION --- */
 .footer {
     background-color: #1B4E85;
     /* Image wala dark blue shade */
     color: rgb(255, 196, 0);
     padding: 60px 0 30px 0;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     padding: 0 20px;
 }

 .footer-col {
     flex: 1;
     min-width: 250px;
     margin-bottom: 30px;
     padding-right: 20px;
 }

 .footer-col h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     position: relative;
 }

 /* Heading ke neechay ki white line */
 .footer-col h3::after {
     content: '';
     display: block;
     width: 45px;
     height: 2px;
     background-color: rgb(255, 196, 0);
     margin-top: 8px;
     margin-bottom: 25px;
 }

 .footer-col p {
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 15px;
     color: #e0e0e0;
     display: flex;
     align-items: flex-start;
 }

 .footer-col p i {
     margin-right: 12px;
     margin-top: 4px;
     color: rgb(255, 196, 0);
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 12px;
 }

 .footer-col ul li a {
     color: #e0e0e0;
     text-decoration: none;
     font-size: 14px;
     transition: 0.3s;
     display: flex;
     align-items: center;
 }

 .footer-col ul li a i {
     font-size: 12px;
     margin-right: 10px;
 }

 .footer-col ul li a:hover {
     color: rgb(255, 196, 0);
     transform: translateX(5px);
 }

 /* Social Icons */
 .social-icons {
     display: flex;
     gap: 10px;
     margin-top: 20px;
 }

 .social-icons a {
     width: 35px;
     height: 35px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgb(255, 196, 0);
     text-decoration: none;
     transition: 0.3s;
     font-size: 14px;
 }

 .social-icons a:hover {
     background-color: rgb(255, 196, 0);
     color: #1e3a6e;
 }

 /* Newsletter Form */
 .newsletter-form {
     display: flex;
     border: 1px solid rgb(255, 196, 0);
     margin-top: 20px;
     max-width: 280px;
 }

 .newsletter-form input {
     background: transparent;
     border: none;
     padding: 10px;
     color: white;
     width: 70%;
     outline: none;
 }

 .newsletter-form input::placeholder {
     color: rgb(255, 196, 0);
 }

 .newsletter-form button {
     background: rgb(255, 196, 0);
     color: #1e3a6e;
     border: none;
     padding: 10px;
     width: 35%;
     font-weight: bold;
     font-size: 11px;
     cursor: pointer;
     transition: 0.3s;
 }

 .newsletter-form button:hover {
     background: #e0e0e0;
 }

 /* Bottom Bar */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 40px;
     padding-top: 25px;
 }

 .bottom-links {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .bottom-links a {
     color: #ffffff;
     text-decoration: none;
     font-size: 14px;
     padding-right: 20px;
     border-right: 1px solid rgba(255, 255, 255, 0.3);
 }

 .bottom-links a:last-child {
     border-right: none;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .footer-col {
         flex: 50%;
     }
 }

 @media (max-width: 500px) {
     .footer-col {
         flex: 100%;
     }
 }

 /* Top Bar */

 .about-us-banner {
     background-color: #1B4E85;
     width: 100%;
     height: 280px;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
 }

 .banner-content {
     animation: fadeInSlideUp 1s ease-out forwards;
     opacity: 0;
     transform: translateY(20px);
 }

 .banner-content h1 {
     color: #ffffff;
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .breadcrumb {
     color: #ffffff;
     font-size: 1.1rem;
     font-weight: 500;
 }

 .breadcrumb a {
     color: #ffffff;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .breadcrumb a:hover {
     color: #d1d5db;
 }

 .breadcrumb span {
     color: #ffffff;
 }

 @keyframes fadeInSlideUp {
     0% {
         opacity: 0;
         transform: translateY(30px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Faqs Questions */

 .faq-section {
     padding: 60px 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }


 .faq-title-small {
     color: #1B4E85;
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 5px;
 }

 .faq-title-main {
     color: #1B4E85;
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 50px;
 }

 /* FAQ Main Container */
 .faq-wrapper {
     width: 100%;
     max-width: 1100px;
     display: flex;
     flex-direction: column;
     gap: 20px;
     position: relative;
 }

 .faq-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     left: 50%;
     width: 1px;
     background-color: #1B4E85;
     transform: translateX(-50%);
     z-index: 0;
 }

 .faq-row {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     width: 100%;
     gap: 40px;
     position: relative;
     z-index: 1;
 }

 .faq-item {
     flex: 1;
     background-color: #ffffff;
     border: 1px solid #d1d5db;
     display: flex;
     flex-direction: column;
 }

 .faq-header {
     padding: 15px 25px;
     color: #1B4E85;
     font-size: 1.05rem;
     font-weight: 500;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     transition: background-color 0.3s ease, color 0.3s ease;
     text-align: left;
 }

 .faq-icon {
     font-size: 1.5rem;
     font-weight: 600;
     color: #1B4E85;
     transition: transform 0.3s ease;
     margin-left: 10px;
 }

 .faq-item.active .faq-header {
     background-color: #1B4E85;
     color: #ffffff;
 }

 .faq-item.active .faq-icon {
     color: #ffffff;
 }

 .faq-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease-in-out;
     background-color: #ffffff;
 }

 .faq-content {
     padding: 20px 25px;
     color: #4b5563;
     font-size: 0.95rem;
     line-height: 1.6;
     text-align: left;
     border-top: 1px solid #d1d5db;
 }

 /* Mobile View Adjustments */
 @media (max-width: 768px) {
     .faq-wrapper::before {
         display: none;
     }

     .faq-row {
         flex-direction: column;
         gap: 15px;
     }

     .faq-item {
         width: 100%;
     }
 }


 /* Vision & Mission */

 #edu-vnm-wrapper {
     position: relative;
     width: 100%;
     display: block;
     background: transparent;
     /* Aapki site ke default fonts inherit karega */
 }

 #edu-vnm-wrapper .vnm-container {
     max-width: 1200px;
     margin: 40px auto;
     position: relative;
     padding: 0 20px;
     box-sizing: border-box;
 }

 /* Header Styles */
 #edu-vnm-wrapper .vnm-header {
     text-align: center;
     margin-bottom: 50px;
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease-out;
 }

 #edu-vnm-wrapper .vnm-title {
     font-size: clamp(32px, 5vw, 42px);
     /* Responsive font size */
     font-weight: 800;
     color: #1B4E85;
     margin: 0;
     padding: 0;
 }

 /* Bento Grid Styles */
 #edu-vnm-wrapper .vnm-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 24px;
 }

 #edu-vnm-wrapper .vnm-card {
     border: 1px solid #1B4E85;
     border-radius: 24px;
     padding: 40px;
     box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.08);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: translateY(40px);
     background: #fff;
     box-sizing: border-box;
 }

 #edu-vnm-wrapper .vnm-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
     border-color: #93c5fd;
 }

 /* Card Content & FontAwesome Icon Styles */
 #edu-vnm-wrapper .vnm-icon-box {
     width: 56px;
     height: 56px;
     background: #1B4E85;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     border: 1px solid #1B4E85;
     box-sizing: border-box;
 }

 #edu-vnm-wrapper .vnm-icon-box i {
     font-size: 24px;
     color: #ffc400;
 }

 #edu-vnm-wrapper .vnm-card h3 {
     font-size: 28px;
     font-weight: 700;
     margin-top: 0;
     margin-bottom: 16px;
     color: #1B4E85;
 }

 #edu-vnm-wrapper .vnm-card p {
     font-size: 16px;
     line-height: 1.7;
     color: #5f6b7a;
     margin: 0;
 }

 /* Specific Accent Cards */
 #edu-vnm-wrapper .vnm-card-center {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     background: #1B4E85;
     color: #ffffff;
 }

 #edu-vnm-wrapper .vnm-card-center .vnm-icon-box {
     background: white;
 }

 #edu-vnm-wrapper .vnm-card-center .vnm-icon-box i {
     color: #1B4E85;
 }

 #edu-vnm-wrapper .vnm-card-blue {
     background: #1B4E85;
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
 }

 #edu-vnm-wrapper .vnm-card-blue h4 {
     font-size: 48px;
     font-weight: 800;
     margin: 0 0 8px 0;
     color: white;
 }

 #edu-vnm-wrapper .vnm-card-blue p {
     color: white;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
     font-weight: 600;
 }

 #edu-vnm-wrapper .vnm-decorative-circle {
     position: absolute;
     width: 200px;
     height: 200px;
     background: rgba(37, 99, 235, 0.03);
     border-radius: 50%;
     top: -50px;
     right: -50px;
     pointer-events: none;
     transition: transform 0.6s ease;
 }

 #edu-vnm-wrapper .vnm-card:hover .vnm-decorative-circle {
     transform: scale(1.2);
     background: rgba(0, 0, 0, 0.06);
 }

 /* Desktop Layout */
 @media (min-width: 992px) {
     #edu-vnm-wrapper .vnm-grid {
         grid-template-columns: repeat(4, 1fr);
     }

     #edu-vnm-wrapper .vnm-span-3 {
         grid-column: span 3;
     }

     #edu-vnm-wrapper .vnm-span-1 {
         grid-column: span 1;
     }
 }

 /* Responsive Text */
 @media (max-width: 768px) {
     #edu-vnm-wrapper .vnm-card {
         padding: 30px;
     }
 }

 /* Animation Classes */
 #edu-vnm-wrapper .vnm-visible {
     opacity: 1 !important;
     transform: translateY(0) !important;
 }


 /* ================================== */
 /* ========== Contact us =========== */
 /* ================================== */

 .contact-wrapper {
     background-color: #f8fbfa;
     padding: 100px 20px;
     font-family: 'Inter', sans-serif;
     display: flex;
     justify-content: center;
 }

 .contact-container {
     max-width: 1200px;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
     background: #fff;
     padding: 40px;
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
 }

 .contact-image-box {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .contact-image-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .contact-form-content h2 {
     font-size: 38px;
     font-weight: 800;
     line-height: 1.2;
     color: #1B4E85;
     margin-bottom: 30px;
 }

 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .full-width {
     grid-column: span 2;
 }

 /* FIXED INPUT FIELDS */
 .input-field {
     width: 100%;
     padding: 15px 20px;
     background-color: #f7f7f7;
     border: 2px solid #f7f7f7;
     border-radius: 12px;
     font-size: 15px;
     color: #334155;
     outline: none;
     transition: all 0.3s ease;
     box-sizing: border-box;
 }

 .input-field:focus {
     background-color: #ffffff;
     border: 2px solid #648b89;
     box-shadow: 0 5px 15px rgba(100, 139, 137, 0.15);
 }

 textarea.input-field {
     height: 120px;
     resize: none;
 }

 .submit-btn {
     background: #1B4E85;
     color: white;
     padding: 16px 40px;
     border: none;
     border-radius: 50px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 @media (max-width: 968px) {
     .contact-container {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 600px) {
     .form-grid {
         grid-template-columns: 1fr;
     }

     .full-width {
         grid-column: span 1;
     }
 }


 /* Events */

 .events-section {
     padding: 60px 20px;
     text-align: left;
 }

 .grid-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: auto;
 }

 .ticket-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
     display: flex;
     flex-direction: column;
 }

 .ticket-image {
     height: 180px;
     overflow: hidden;
     position: relative;
 }

 .ticket-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .tag {
     position: absolute;
     top: 15px;
     left: 15px;
     background: #1B4E85;
     color: rgb(255, 196, 0);
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 11px;
     font-weight: bold;
 }

 .ticket-body {
     padding: 20px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .ticket-body h3 {
     color: #1B4E85;
     margin-bottom: 10px;
 }

 .desc {
     color: #333;
     font-size: 14px;
     margin: 15px 0;
     line-height: 1.5;
 }

 .card-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
     padding-top: 15px;
 }

 .details {
     color: #1B4E85;
     font-weight: bold;
     cursor: pointer;
     font-size: 13px;
     text-decoration: none;
 }
 .details:hover {
    color: rgb(255, 196, 0);
}

.explore-btn {
    background: #1B4E85;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease; 
}

.explore-btn:hover {
    background: rgb(255, 196, 0);
    color: #000;
}

 /* Modal Styling fix */
 .overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(8px);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .overlay.active {
     display: flex;
 }

 .modal {
     width: 90%;
     max-width: 500px;
     background: #F3EEE3;
     border-radius: 20px;
     overflow: hidden;
     position: relative;
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 15px;
     background: #ffc400;
     border: none;
     border-radius: 50%;
     width: 35px;
     height: 35px;
     cursor: pointer;
     z-index: 10;
 }

 .modal-image-container {
     height: 250px;
 }

 .modal-image-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .modal-body {
     padding: 30px;
 }

 .meta-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     margin: 25px 0;
     border-top: 1px dashed #D1CFC2;
     border-bottom: 1px dashed #D1CFC2;
     padding: 20px 0;
     text-align: center;
 }

 .meta-grid div {
     font-size: 10px;
     color: #4A4870;
     text-transform: uppercase;
 }

 .meta-grid span {
     display: block;
     font-weight: bold;
     font-size: 14px;
     color: #1B1B3A;
     margin-top: 5px;
 }

 .modal-reg-btn {
     width: 100%;
     background: #1B4E85;
     color: #fff;
     padding: 18px;
     border: none;
     border-radius: 12px;
     text-align: center;
     display: block;
     text-decoration: none;
     font-weight: bold;
 }

  .modal-reg-btn:hover{
    background-color: rgb(255, 196, 0);
    color: #000;
  
}







/* Message From Principle Or CEO */

/* =====================================
   LIS PRINCIPAL MESSAGE SECTION
===================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

.lis-ceo-section {
    --lis-primary: #1B4E85;
    --lis-primary-light: #1B4E85;
    --lis-secondary: rgb(255, 196, 0);
    --lis-dark: #10223c;
    --lis-text: #526175;
    --lis-white: #ffffff;
    --lis-light: #f4f8fd;
    --lis-border: #dfe8f3;
    --lis-shadow: 0 24px 60px rgba(16, 49, 95, 0.14);

    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 90px 0 80px;
    color: var(--lis-dark);
    line-height: 1.75;
}

.lis-ceo-section,
.lis-ceo-section * {
    box-sizing: border-box;
}

.lis-ceo-section h1,
.lis-ceo-section h2,
.lis-ceo-section h3,
.lis-ceo-section h4,
.lis-ceo-section p {
    margin-top: 0;
}

.lis-ceo-section img {
    max-width: 100%;
}

/* Container */

.lis-ceo-container {
    position: relative;
    z-index: 2;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}



/* Section Heading */

.lis-ceo-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.lis-ceo-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--lis-secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lis-ceo-heading h2 {
    margin-bottom: 14px;
    color: var(--lis-primary);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.lis-ceo-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--lis-text);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Main Card */

.lis-ceo-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    min-height: 590px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: var(--lis-white);
    box-shadow: var(--lis-shadow);
}

/* Profile Area */

.lis-ceo-profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 34px;
    color: var(--lis-white);

    background:
        linear-gradient(
            rgba(11, 47, 107, 0.93),
            rgba(11, 47, 107, 0.97)
        ),
        url("https://liscollege.com/img/lis.png")
        center / cover no-repeat;
}

/* Principal Image */

.lis-ceo-photo-frame {
    width: 230px;
    height: 280px;
    margin: 0 auto 28px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 120px 120px 28px 28px;
    background: rgba(255, 255, 255, 0.09);
}

.lis-ceo-photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 112px 112px 22px 22px;
    object-fit: cover;
    object-position: center top;
}

/* Profile Details */

.lis-ceo-profile-details {
    text-align: center;
}

.lis-ceo-profile-details h3 {
    margin-bottom: 2px;
    color: var(--lis-white);
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
}

.lis-ceo-profile-details p {
    margin-bottom: 3px;
    color: #f4d88e;
    font-size: 1rem;
    font-weight: 700;
}

.lis-ceo-profile-details span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
}

/* Message Content */

.lis-ceo-message {
    position: relative;
    padding: 58px 64px;
    background: var(--lis-white);
}

.lis-ceo-quote-mark {
    position: absolute;
    top: 20px;
    right: 42px;
    color: rgba(213, 170, 69, 0.16);
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
    pointer-events: none;
}

.lis-ceo-message h3 {
    position: relative;
    margin-bottom: 22px;
    padding-right: 70px;
    color: var(--lis-primary);
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.4;
}

.lis-ceo-message > p {
    position: relative;
    margin-bottom: 17px;
    color: var(--lis-text);
    font-size: 0.98rem;
    line-height: 1.75;
}

.lis-ceo-message > p:first-of-type::first-letter {
    float: left;
    margin: 8px 8px 0 0;
    color: var(--lis-secondary);
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 0.75;
}

/* Signature */

.lis-ceo-signature {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lis-border);
}

.lis-ceo-signature span {
    color: var(--lis-text);
    font-size: 0.87rem;
}

.lis-ceo-signature strong {
    color: var(--lis-primary);
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.lis-ceo-signature small {
    color: var(--lis-secondary);
    font-size: 0.83rem;
    font-weight: 700;
}

/* Values Cards */

.lis-ceo-values {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.lis-ceo-value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--lis-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(16, 49, 95, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.lis-ceo-value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 89, 166, 0.25);
    box-shadow: 0 18px 38px rgba(16, 49, 95, 0.12);
}

.lis-ceo-value-number {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--lis-primary);
    background: rgba(11, 47, 107, 0.08);
    font-size: 0.9rem;
    font-weight: 800;
}

.lis-ceo-value-item h4 {
    margin-bottom: 3px;
    color: var(--lis-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.lis-ceo-value-item p {
    margin-bottom: 0;
    color: var(--lis-text);
    font-size: 0.8rem;
    line-height: 1.45;
}

/* Tablet Responsive */

@media screen and (max-width: 900px) {
    .lis-ceo-card {
        grid-template-columns: 1fr;
    }

    .lis-ceo-profile {
        padding: 46px 30px;
    }

    .lis-ceo-photo-frame {
        width: 210px;
        height: 250px;
    }

    .lis-ceo-message {
        padding: 50px 45px;
    }

    .lis-ceo-values {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */

@media screen and (max-width: 620px) {
    .lis-ceo-section {
        padding: 62px 0 56px;
    }

    .lis-ceo-container {
        width: min(100% - 24px, 1160px);
    }

    .lis-ceo-heading {
        margin-bottom: 30px;
    }

    .lis-ceo-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.13em;
    }

    .lis-ceo-heading h2 {
        font-size: 2.55rem;
    }

    .lis-ceo-heading p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .lis-ceo-card {
        border-radius: 22px;
    }

    .lis-ceo-profile {
        padding: 38px 22px;
    }

    .lis-ceo-photo-frame {
        width: 190px;
        height: 230px;
    }

    .lis-ceo-profile-details h3 {
        font-size: 1.55rem;
    }

    .lis-ceo-message {
        padding: 40px 24px;
    }

    .lis-ceo-message h3 {
        padding-right: 35px;
        font-size: 1.3rem;
    }

    .lis-ceo-message > p {
        font-size: 0.91rem;
        line-height: 1.75;
    }

    .lis-ceo-quote-mark {
        top: 15px;
        right: 18px;
        font-size: 6rem;
    }

    .lis-ceo-value-item {
        padding: 20px;
    }
}

/* Small Mobile */

@media screen and (max-width: 380px) {
    .lis-ceo-heading h2 {
        font-size: 2.15rem;
    }

    .lis-ceo-photo-frame {
        width: 170px;
        height: 210px;
    }

    .lis-ceo-message {
        padding: 35px 20px;
    }

    .lis-ceo-value-item {
        align-items: flex-start;
        gap: 12px;
    }
}