

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
   
    color: #ffffff;
    overflow-x: hidden;
}

/* --- HEADER SECTION (Exact Original Styling) --- */
.site-header {
    background-color: #07132B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 260px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e51a31;
}

.cta-button {
    background: linear-gradient(135deg, #e52d27, #b31217);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 45, 39, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }

    .logo-img {
        max-width: 200px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #07132B; /* Original theme color maintained */
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
        
        /* Smooth Open/Close Animation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    }

    .nav-menu.active {
        max-height: 380px;
        padding: 15px 0 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cta-button {
        margin-top: 15px;
        display: inline-block;
    }
}


/* --- HERO BANNER SECTION --- */
.hero-banner {
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- FREE COUNSELLING SECTION --- */
.ei-fc-section {
    background-color: #e51a31;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.ei-fc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.ei-fc-expert-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
    color: #ffffff;
}

.ei-fc-expert-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.ei-fc-phone-icon {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ei-fc-phone-icon svg {
    fill: #ffffff;
    width: 55px;
    height: 55px;
}

.ei-fc-phone-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: underline;
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.ei-fc-phone-number:hover {
    color: #f8d7da;
    transform: scale(1.03);
}

.ei-fc-form-box {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    margin: 0 auto;
}

.ei-fc-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ei-fc-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ei-fc-input-group {
    position: relative;
    width: 100%;
}

.ei-fc-input {
    width: 100%;
    height: 48px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222222;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.ei-fc-input::placeholder {
    color: #555555;
    font-weight: 500;
}

/* --- COUNTRY DROPDOWN OVERRIDES (intl-tel-input Fixes) --- */
.iti {
    width: 100% !important;
}

.iti__flag-container {
    z-index: 10;
}

.iti__selected-flag {
    padding: 0 10px 0 15px !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #ffffff !important;
}

.iti__selected-dial-code {
    color: #222222 !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin-left: 6px;
}

/* Dropdown Popup List Styling */
.iti__country-list {
    background-color: #ffffff !important;
    color: #222222 !important;
    border-radius: 8px !important;
    border: 1px solid #dddddd !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25) !important;
    font-size: 0.9rem !important;
    max-height: 220px !important;
    z-index: 99999 !important;
}

.iti__country {
    padding: 8px 12px !important;
}

.iti__country:hover, 
.iti__country.iti__highlight {
    background-color: #f0f0f0 !important;
}

.iti__dial-code {
    color: #666666 !important;
}

/* Submit Button */
.ei-fc-submit-btn {
    width: 100%;
    height: 50px;
    background-color: #061023;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ei-fc-submit-btn:hover {
    background-color: #0a1836;
    transform: translateY(-2px);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #07132B;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .ei-fc-section {
        padding: 35px 15px;
    }

    .ei-fc-container {
        flex-direction: column;
        gap: 30px;
    }

    .ei-fc-expert-title {
        font-size: 1.6rem;
    }

    .ei-fc-phone-number {
        font-size: 1.6rem;
    }

    .ei-fc-form-title {
        font-size: 1.7rem;
    }

    .ei-fc-form-box {
        width: 100%;
        max-width: 100%;
    }
}

.admission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    color: #222222;
  }

  .heading-primary {
    color: #700000;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.2;
  }

  .heading-secondary {
    color: #700000;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .description-text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333333;
  }

  .services-title {
    color: #700000;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
  }

  .services-list li {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.4;
  }

   .services-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border: 4px solid #333333;
    border-radius: 50%;
    background-color: transparent;
    margin-top: 9px;
}
.cta-button {
    display: inline-block;
    background-color: #E21B32;
    color: #FFFFFF;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

  .cta-button:hover {
    background-color: #C01427;
  }

  @media (max-width: 600px) {
    .heading-primary {
      font-size: 26px;
    }
    .heading-secondary {
      font-size: 26px;
    }
    .admission-container {
      padding: 16px;
    }
  }

  .courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    padding-top: 20px;
  }

  .courses-title {
    color: #700000;
    font-size: 35px;
    font-weight: bold;
    margin: 0 0 35px 0;
  }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .course-card {
    background-color: #ffffff;
    color: #a81c24;
    font-size: 25px;
    font-weight: 500;
    padding: 22px 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.37);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  /* Responsive Adjustments */
  @media (max-width: 900px) {
    .courses-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 600px) {
    .courses-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    
    .courses-title {
      font-size: 28px;
      margin-bottom: 35px;
    }

    .course-card {
      font-size: 22px;
      padding: 35px 8px;
    }
  }

   .cta-banner {
    background-color: #d81a33;
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50px;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cta-heading {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
  }

  .phone-icon-wrapper {
    margin-bottom: 8px;
  }

  .phone-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
    display: block;
  }

  .phone-number {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
  }

  .phone-number:hover {
    opacity: 0.9;
  }

  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .cta-banner {
      padding: 24px 12px;
    }

    .cta-heading {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .phone-icon {
      width: 24px;
      height: 24px;
    }

    .phone-number {
        font-size: 22px;
        text-decoration: none;
    }
  }

   .universities-section {
    background-color: #061024;
    padding: 50px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .universities-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .main-heading {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .sub-heading {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }

  .universities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
  }

  .uni-card {
    background-color: #ffffff;
    border-radius: 10px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .uni-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
  }

  .uni-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: contrast(105%);
  }

  .more-card {
    color: #5c080e;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
  }

  .footer-note {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .universities-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
  }

  @media (max-width: 600px) {
    .universities-section {
      padding: 30px 15px;
    }

    .main-heading {
      font-size: 28px;
      line-height: 1.3;
    }

    .sub-heading {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .universities-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px;
    }

    .uni-card {
      height: 135px;
      padding: 8px;
    }

    .more-card {
      font-size: 15px;
    }

    .footer-note {
      font-size: 18px;
      line-height: 1.4;
    }
  }

   .testimonial-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .testimonial-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .section-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 40px 0;
  }

  .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-cards-container {
    position: relative;
    width: 100%;
    min-height: 220px;
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    transform: translateX(20px);
  }

  .testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
  }

  .quote-text {
    color: #222222;
    font-size: 19.5px;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }

  .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-details {
    text-align: left;
  }

  .author-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 2px 0;
  }

  .author-role {
    font-size: 13px;
    color: #666666;
    margin: 0;
  }

  .nav-arrow {
    background: transparent;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }

  .nav-arrow:hover {
    color: #6a0000;
    transform: scale(1.15);
  }

  .dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }

  .dot {
    width: 8px;
    height: 8px;
    background-color: #cccccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .dot.active {
    background-color: #6a0000;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .testimonial-card {
      padding: 24px 20px;
    }
    .quote-text {
      font-size: 17.8px;
    }
    .nav-arrow {
      display: none;
    }
  }

   .office-contact-section {
    background-color: #d91c38;
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%;
    color: #ffffff;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Left Column Styles */
  .section-title {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
  }

  .phone-icon-wrapper {
    margin-bottom: 10px;
  }

  .phone-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    display: block;
  }

  .phone-link {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
  }

  /* Center Map Styles */
  .map-col {
    max-width: 380px;
    width: 100%;
  }

  .map-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* Right Column Styles */
  .address-title {
    color: #ffeb3b;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: 0.5px;
  }

  .company-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }

  .address-text {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.4;
  }

  .note-text {
    color: #ffeb3b;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    max-width: 340px;
  }

  /* Responsive Styling */
  @media (max-width: 900px) {
    .contact-container {
      flex-direction: column;
      gap: 35px;
    }

    .map-col {
      max-width: 100%;
    }

    .map-wrapper {
      height: 250px;
    }
  }

  @media (max-width: 600px) {
    .office-contact-section {
      padding: 30px 15px;
    }

    .section-title {
      font-size: 35px;
    }

    .phone-link {
      font-size: 18px;
    }

    .address-title {
      font-size: 26px;
    }

    .company-name {
      font-size: 20px;
    }

    .address-text {
      font-size: 18px;
    }

    .note-text {
      font-size: 16px;
    }
    .ei-fc-expert-box {
        display: none;
    }
  }

  .copyright-footer {
    background-color: #000000;
    border-top: 3px solid #d91c38;
    padding: 16px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .copyright-footer p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
  }

  @media (max-width: 600px) {
    .copyright-footer {
      padding: 12px 15px;
    }
    
    .copyright-footer p {
      font-size: 12px;
    }
        .ei-fc-phone-icon svg {
        fill: #ffffff;
        width: 35px;
        height: 35px;
    }
  }
  
  /* Mobile Header & Toggle Styling */
@media screen and (max-width: 768px) {
  .site-header {
    position: relative;
    z-index: 9999; /* Ensure header stays on top */
  }

  /* Hamburger Toggle Button */
  .mobile-toggle {
    display: block !important;
    font-size: 28px;
    background: transparent;
    border: none;
    color: #ffffff; /* Contrast color ke hisab se change kar sakte hain */
    cursor: pointer;
    z-index: 10000;
    margin-left: 124px !important;
  }

  /* Hide navigation menu by default on mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Menu Background Color */
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }

  /* Show menu when 'active' class is added via JS */
  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-menu li a {
    color: #333333;
    font-size: 18px;
  }
}
  
  
