* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   
}
/* bar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    height:10%;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo video {
    width: 150px;
    height: auto;
    display: block;
}
/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}
.nav-item {
    position: relative;
}
.nav-icon {
    font-size: 12px;           /* small like Study Abroad/Preparation */
    margin-left: 6px;         /* spacing before text */
    vertical-align: middle;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
/* Animate icons on hover: rotate + scale + color + glow */
.nav-item:hover .nav-icon {
    transform: scale(1.2) rotate(360deg);
    text-shadow: 0 0 8px currentColor; /* glow based on color */
}
/* Unique hover colors per nav item */
.nav-item:nth-child(1):hover .nav-icon { color: #2196F3; } /* Home → Green */
.nav-item:nth-child(2):hover .nav-icon { color: #2196F3; } /* About Us → Blue */
.nav-item:nth-child(5):hover .nav-icon { color: #F44336; } /* Contact → Red */
.nav-item:nth-child(6):hover .nav-icon { color: #FF9800; } /* B2B → Amber */
/* Dropdown container */
.nav-item.dropdown {
  position: relative;
}
/* Unique arrow beside Preparation Class */
.nav-item.dropdown .arrow {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
/* Rotate arrow when hovering */
.nav-item.dropdown:hover .arrow {
  transform: rotate(180deg);
}
/* Dropdown menu with unique gradient */

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: linear-gradient(135deg, #ff6a00, #1752b1, #7b2ff7); /* 🔥 Attractive gradient */
  border-radius: 12px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  z-index: 1000;
  overflow: hidden;
  animation: fadeIn 0.4s ease-in-out;
}
/* Dropdown items */
.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
/* Hover effect with glow */
.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 25px; /* sliding effect */
  text-shadow: 0 0 8px #fff;
}
/* Show menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  .mega-dropdown {
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg,#00c6ff 0%, #0072ff 100%);
  color: #fff;
  padding: 14px;
  min-width: 520px;
  border-radius: 10px;
}

/* Each country column */
.mega-dropdown .has-submenu {
  min-width: 180px;
  position: relative;
}

/* Country link */
.mega-dropdown .has-submenu > a {
  display: block;
  padding: 8px 10px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* Right chevron float */
.mega-dropdown .has-submenu > a i { float: right; transition: transform .2s ease; }

}
.has-submenu {
  position: relative;
}
.has-submenu > a i {
  float: right;
  transition: transform 0.3s ease;
}
/* Sub-dropdown (universities) */
.sub-dropdown {
  display:flex;
  position: absolute;
  top: 0;
  left: 100%; /* appear on the right */
  background: linear-gradient(135deg, #ff512f, #dd2476); /* ❤️ Different gradient */
  border-radius: 10px;
  padding: 8px 6px;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* Sub-dropdown items */
.sub-dropdown li a {
    display:block;
  padding: 8px 10px;
  font-weight: 600;
  color:#fff;
  text-decoration: none;
}
/* Hover on submenu arrow */
.has-submenu:hover > a i {
  transform: translateX(6px);
  color: #fff176;
}
/* Show universities on hover */
.has-submenu:hover .sub-dropdown {
  display: block;
}
/* Animation for smooth entrance */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #3498db;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #3498db;
}
/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white !important;
}
.cta-button::after {
    display: none;
}
/* Popup container */
.contact-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

/* Popup content */
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Form styling */
.popup-content form input,
.popup-content form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.popup-content form button {
  padding: 10px 20px;
  border: none;
  background-color: #3498db;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.popup-content form button:hover {
  background-color: #2980b9;
}
.map-image {
  width: 150px;   /* adjust size */
  height: auto;   /* keeps aspect ratio */
  border-radius: 8px; /* optional – makes edges rounded */
}
/* hero-content */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 130vh;
    background: url('images/home.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;

    /* Account for fixed navbar */
}
/* Dark overlay */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
    z-index: 2;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.3;
    
}
.hero-btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}
.hero-start-btn {
    background-color: #068cce;
}
.hero-book-btn {
    background-color: #ed1c24;
}
.hero-learnmore-btn{
    padding: 20px 40px;
    font-size: 20px;
    margin-left: 95px;
    background-color: #004499;
}
.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* edge section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #0066ff; 
}
.edge-section {
    padding: 20px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
}
.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.edge-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.edge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.edge-title-card {
    margin-bottom: 20px;
    padding: 10px;
}
.edge-title {
    color: #0066ff;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}
.edge-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0066ff;
    margin: 5px auto 0;
}
.card-icon {
    margin-bottom: 10px;
}
.card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.card-title {
    color: #0066ff;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}
.card-text {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}
/* Specific icon color adjustments */
.card-icon img[alt="Visa Success Rate"] {
    filter: invert(32%) sepia(93%) saturate(7495%) hue-rotate(202deg)
            brightness(101%) contrast(101%);
}
.card-icon img[alt="Visionary Leadership"] {
    filter: invert(32%) sepia(93%) saturate(7495%) hue-rotate(202deg)
            brightness(101%) contrast(101%);
}
.card-icon img[alt="Location & Infra"] {
    filter: invert(32%) sepia(93%) saturate(7495%) hue-rotate(202deg)
            brightness(101%) contrast(101%);
}
.card-icon img[alt="Exposure"] {
    filter: invert(32%) sepia(93%) saturate(7495%) hue-rotate(202deg)
            brightness(101%) contrast(101%);
}

/* about everest section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
}
.about-content {
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
}
.about-image img {
    margin-top: 70px;
    margin-bottom: 50px;
    max-width: 90%;
    height: auto;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    text-align: justify;
    margin-left: 30px;
}
/* counter section */
.counters {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center the counters horizontally */
    align-items: center;
    /* center vertically if needed */
    gap: 50px;
    /* space between the three counters */
    padding: 100px 20px;
    /* spacing around the container */
    background: #f9f9f9;
    /* single container background */
    margin: 0 auto;
    border-radius: 12px;
}
.counters-heading {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: 0;
    color: #0066ff;
}
.counters-row {
    display: flex;
    justify-content: center;
    gap: 150px;
    /* space between counters */
    width: 100%;
    flex-wrap: wrap;
}
.counter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}
.counter img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}
.count-container {
    font-size: 4rem;
    /* same size as number */
    font-weight: 900;
    display: inline-flex;
    /* make number and suffix inline */
    align-items: baseline;
    /* aligns + or % nicely */
    gap: 5px;
    /* small spacing between number and + */
    margin-bottom: 15px;
}
.suffix {
    font-size: 2rem;
    /* smaller than number */
    font-weight: 700;
}
.count {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    display: inline-block;
}
.counter span {
    font-size: 2rem;
    /* for + or % */
    font-weight: 700;
}
.counter p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
/* our services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   
}
.service-card {
    margin-right: 20px;
    margin-left: 20px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #0066ff;
    gap:5px;
}
.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0066ff;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
/* study abroad */
.study-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
    margin-top: 20px;
}
.country-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.country-card:hover {
    transform: scale(1.02);
}
.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-overlay span {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}
.arrow-btn {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: #e5e5e5;
    border-radius: 50%;
    padding: 6px 12px;
    transition: background 0.3s;
}
.arrow-btn:hover {
    background: #000;
    color: white;

}

/* test preparation */
h3 {
    text-align: center;
}
p {
    text-align: center;
}
.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;

}
.btn-classes{
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: white;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-classes:hover {
     transform: scale(1.1);
         box-shadow: 0 6px 15px rgba(0,0,0,0.3);
         color:black;
         border-color: #333;
}
.ielts {    background: #d32f2f;}
.pte {    background: #388e3c;}
.duolingo {    background: #1976d2;}
.japanese {    background: #0288d1;}
.german {    background: #fbc02d;}
.counseling {    background: rgb(137, 150, 199);}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* partners */
.slider-container {
    overflow: hidden;
    background: #f5f5f5;
    padding: 20px 0;
    height: 240px;
}
.logo-slider {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: center;
    height: 100%;
    cursor: pointer;
}
.logo-box {
    background: #fff;
    padding: 15px;
    margin: 0 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 240px;
    flex-shrink: 0;
}
.logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
/* team section */
.team-section {
  padding: 50px 20px;
  text-align: center;
}
.team-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0px;
  color:#0066ff;
}
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
   border: 1px solid #0066ff;
  text-align: center;
  width: 375px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 5px; color: #070f17; }
.team-card h4 { font-size: 1rem; margin-bottom: 10px; color: #7c7474; }
.team-card p, .team-card a { color: #325d7a; font-size: 0.95rem; text-decoration: none; }
.team-card a:hover { text-decoration: underline; color: #3f1961; }
/* contact section */
.section-subtitle {

    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 25px;

}
.contact-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 50px 20px;
    min-height: 100vh;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    background: transparent;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}
.contact-details {
    flex: 1;
}
.contact-title {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    font-size: 14px;
}
.contact-text {
    color: #333;
    font-size: 16px;
}
.contact-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.contact-text {
    color: #333;
    font-size: 16px;
}
.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-text a:hover {
    color: var(--primary-blue);
}
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-blue);
    text-align: center;
    font-size: 24px;
}
 .consultation-section {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding: 10px 10px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-right: 50px;
  margin-left: 60px;
}
.consult-left { flex: 1; min-width: 300px; }
.consult-left h3 { font-size: 2rem; color: #0066ff; margin-bottom: 20px; }
.consult-left p { color: #000000; margin-bottom: 15px; line-height: 1.6; text-align: justify; }
.contact-box { display: flex; align-items: center; margin-bottom: 15px; margin-bottom: 15px;}
.contact-icon { width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066ff;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 22px;
    color: white;}
.contact-info {gap:1px;   display: flex; flex-direction: column;line-height:1.4;}
.contact-info a { font-weight: bold; color: #2980b9; text-decoration: none; display: inline-block;  margin-bottom: 2px;}
.contact-info a:hover { text-decoration: underline; }

/* Form Fields */
form .field { position: relative; margin-bottom: 20px; }
form input, form select, form textarea { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #ddd; font-size: 1rem; background: #f9f9f9; }
form label { position: absolute; top: 12px; left: 12px; font-size: 0.9rem; color: #777; pointer-events: none; transition: 0.3s ease; }
form input:focus + label, form input:not(:placeholder-shown) + label,
form textarea:focus + label, form textarea:not(:placeholder-shown) + label,
form select:focus + label { top: -10px; left: 10px; font-size: 0.75rem; color: #2980b9; background: #fff; padding: 0 4px; }

/* form */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Buttons */
.actions { display: flex; gap: 15px; }
.btn { padding: 10px 18px; border-radius: 8px; cursor: pointer; border: none; font-weight: 600; transition: 0.3s; }
.btn-primary { background: linear-gradient(135deg, #3498db, #2c3e50); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #2c3e50, #3498db); }
.btn-outline { background: transparent; border: 2px solid #3498db; color: #3498db; }
.btn-outline:hover { background: #3498db; color: #fff; }


    .contact-box {
      display: flex;
      align-items: center;
      margin-top: 30px;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 15px;
      font-size: 22px;
      color: white;
    }

    .contact-info a {
      display: block;
      font-size: 18px;
      color: #0d0d0d;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .contact-info span {
      font-size: 16px;
      color: #0462ef;
    }

    .contact-info a:hover {
      color: #00bfff; /* Lighter blue on hover */
    }
    



.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(6, 140, 206, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:invalid:not(:placeholder-shown)+.error-message,
.form-group textarea:invalid:not(:placeholder-shown)+.error-message {
    display: block;
}
.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-blue);
    color: #0066ff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #dbe3eb;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.spinner {
    display: none;
    animation: spin 1s linear infinite;
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading span:not(.spinner) {
    display: none;
}

/* Form status alerts */
.form-alert {
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: scale(1.02);
}

.icon {
    background-color: #0066ff;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.contact-detail {
    font-size: 14px;
    color: #444;
}
.contact-details a {
    text-decoration: none;
}


/* aboutus.html */
/* ceo */
.ceo-section{
     max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
    margin-left: 40 px;
}
.ceo-content {
    display: grid;
    margin-top: 5px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.ceo-image{
    display: flex;
    justify-content: flex-end;
}
.ceo-image img{
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 75%;
    height: auto;
    width: 75%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.director-image{
       display: flex;
    justify-content: flex-start;
}
.director-image img{
    margin-top: 10px;
    margin-bottom: 5px;
    max-width:40%;
    height: auto;
    width: 35%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.director-section{
     max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
    margin-left: 40 px;
}
.director-content {
    display: flex;
    margin-top: 5px;
    margin-bottom: 20px;
       margin-left: 50px;
        flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
       justify-content: center;
}
.director-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
      justify-content: center;
      text-align: justify;
}


.coordinator-section{
     max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
    margin-left: 40 px;
}
.coordinator-content {
    display: grid;
    margin-top: 5px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.coordinator-content p{
    text-align: justify;
}
.coordinator-image{
    display: flex;
    justify-content: flex-end;
}
.coordinator-image img{
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 75%;
    height: auto;
    width: 75%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* aboutus */
.aboutus-image{
        display: flex;
    justify-content: flex-start;
}
.aboutus-image img{
     margin-top: 10px;
    margin-bottom: 5px;
    max-width: 40%;
    height: auto;
    width: 35%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
 
.aboutus-container {
    max-width: 1200px;
    margin: 0 auto;
     margin-left: 40 px;
    padding: 0 20px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aboutus-content {
    flex: 1;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.aboutus-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mission {
      margin-top: 2rem;
      background-color: var(--light-gray);
       border: 1px solid #0066ff;
    }
  .vision{
     margin-top: 2rem;
      background-color: var(--light-gray);
       border: 1px solid #0066ff;
  }  
    .mv-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    
    .mission, .vision {
      flex: 1;
      min-width: 300px;
      padding: 30px;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .mission h1, .vision h1 {
      margin-bottom: 1rem;
      color:#0066ff;
      text-decoration: underline;
      text-align: center;
    }
    
    /* Services Section */
    .services-section h1 {
          text-decoration: underline;
      text-align: center;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color:#0066ff;
     
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-bottom: 1rem;
       border-bottom: 1px solid #ddd;
       border-radius: 10px;
    }
    .thead{
        color:#0066ff;
    }
    th, td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
 
    }
        th {
      background-color: var(--primary-blue);
      font-size: 18px;
           font-weight: 750;
      text-align: center;
       color:#0066ff;  
    }
    
    tr:hover {
      background-color: rgba(6, 140, 206, 0.05);
    }
 .ceo-section p{
    text-align: justify;
 }
 .aboutus-content p{
    text-align:justify;
    

 }
 .mission-vision p{
    text-align: justify;
 }

/* studyabroad */
.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    max-height: 900px;
}
  .carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden; /* masks the sliding content */
    position: relative;
  }

  .carousel-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
    margin-bottom: 20px;
  }

  .college-slide {
    min-width: 320px;
    height: 200px;
    margin: 0 15px;           /* total horizontal gap = 30px */
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    cursor: pointer;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white;
    flex: 0 0 auto;
  }

  .college-slide.active {
    transform: scale(1.05);
    z-index: 2;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 10px;
    border-radius: 0 0 15px 15px;
  }

  .overlay h3 {
    margin: 0;
    font-size: 18px;
  }

  .overlay p {
    margin: 5px 0 0;
    font-size: 14px;
  }

 

.study-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.btn1 {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  background: white;
  color: black;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn1:hover {
    transform: scale(1.1);
         box-shadow: 0 6px 15px rgba(0,0,0,0.3);
         color:black;
         border-color: #333;
}
.container {
   
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    flex-wrap: wrap;
  }

  .text-section {
    flex: 1;
    min-width: 280px;
  }
  .text-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px; 
   color: #0066ff;   /*Title color */
   }
  .text-section p {
    font-size: 20px; 
    color: #000000;  /*Dark black text */
     margin-bottom: 20px;
    font-weight: 400;
  }
  .country-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px; 
   color: #000000;  /* Dark black list items */
     font-weight: 400;
  }
  .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 280px;
  }
  .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
 
  .study-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px;
} 

.country-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.country-card:hover {
  transform: scale(1.02);
}

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-overlay span {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.arrow-btn {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background: #e5e5e5;
  border-radius: 50%;
  padding: 6px 12px;
  transition: background 0.3s;
}

.arrow-btn:hover {
  background: #000;
  color: white;
} 

/* General Section Styles */
.section {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section ul.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.section ul.feature-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.section ul.feature-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

.section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* preparationclass.html */

.prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* space between text and image */
  padding: 20px;
}

.prices-container {
  flex: 1; /* text takes available space */
}

.prices-image {
  flex: 1; /* image takes available space */
  display: flex;
  justify-content: flex-end;
}

.prices-image img {
  max-width: 600px; /* set desired width */
  width: 100%;      /* make it responsive */
  height: auto;     /* maintain aspect ratio */
  border-radius: 10px; /* optional */
}
.section-title p{
    text-align: justify;
}
.buttons{
			display: flex;
			justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
			
		}
        .btn{
            display: inline-block;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            color: white;
            border-radius: 6px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover{
                 transform: scale(1.1);
         box-shadow: 0 6px 15px rgba(0,0,0,0.3);
         color:black;
         border-color: #333;
        }
        .ielts{background: #d32f2f;}
        .pte{background: #388e3c;}
        .duolingo{background: #1976d2;}
        .sat{background: #0288d1;}
        .toefl{background: #fbc02d;}
        .japanese{background: rgb(137, 150, 199); 
        }

.teofl-logo{
    max-width: 200px;   /* adjust size */
    width: 100%;        /* responsive scaling */
    height: auto;       /* maintain aspect ratio */
    display: block;
    margin-bottom: 5px;  
}
.toefl-h1{
    text-align: center;
}

.sat-logo{
     max-width: 150px;   /* adjust size */
    width: 100%;        /* responsive scaling */
    height: auto;       /* maintain aspect ratio */
    display: block;
    margin-bottom: 5px; 
}
.sat-h1{
       text-align: center;
}
.duolingo-logo{
      max-width: 150px;   /* adjust size */
    width: 100%;        /* responsive scaling */
    height: auto;       /* maintain aspect ratio */
    display: block;
    margin-bottom: 5px; 
}
.duolingo-h1{
    text-align: center;
}

.counseling-logo{
display: inline-block;
align-items: center;
}


.counseling-h1{
    text-align: center;
}


/* === CONTACT FORM STYLING === */
#consultancyForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#consultancyForm .field {
    margin-bottom: 25px;
    position: relative;
}

#consultancyForm .field.span-2 {
    grid-column: span 2;
}

#consultancyForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Fields */
#consultancyForm input[type="text"],
#consultancyForm input[type="email"],
#consultancyForm input[type="tel"],
#consultancyForm select,
#consultancyForm textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#consultancyForm input:focus,
#consultancyForm select:focus,
#consultancyForm textarea:focus {
    outline: none;
    border-color: #0066ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

/* Select Styling */
#consultancyForm select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
    appearance: none;
    -webkit-appearance: none;
}

#consultancyForm select option {
    padding: 10px;
    background: #fff;
    color: #333;
}

/* Textarea */
#consultancyForm textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Form Grid Layout */
#consultancyForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

#consultancyForm .field.span-2 {
    grid-column: 1 / -1;
}

/* Buttons Container */
#consultancyForm .actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

/* Primary Button */
#consultancyForm .btn-primary {
    background: linear-gradient(135deg, #0066ff, #0056cc);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#consultancyForm .btn-primary:hover {
    background: linear-gradient(135deg, #0056cc, #004499);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    color: white;
}

#consultancyForm .btn-primary:active {
    transform: translateY(-1px);
}

/* Outline Button */
#consultancyForm .btn-outline {
    background: transparent;
    color: #0066ff;
    border: 2px solid #0066ff;
    padding: 13px 33px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#consultancyForm .btn-outline:hover {
    background: #0066ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

#consultancyForm .btn-outline:active {
    transform: translateY(-1px);
}

/* Success Message */
#successMsg {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    animation: slideInUp 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}


/* Loading State for Submit Button */
#consultancyForm .btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

#consultancyForm .btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}


/* Error States */
#consultancyForm .field input:invalid,
#consultancyForm .field select:invalid,
#consultancyForm .field textarea:invalid {
    border-color: #e74c3c;
    background: #fdf2f2;
}

#consultancyForm .field input:invalid:focus,
#consultancyForm .field select:invalid:focus,
#consultancyForm .field textarea:invalid:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Placeholder Styling */
#consultancyForm input::placeholder,
#consultancyForm textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
    opacity: 1;
}


/* Form Header (Optional) */
#consultancyForm::before {
    content: "📝 Get In Touch";
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 30px;
    grid-column: 1 / -1;
}

/* Floating Labels Effect (Advanced) */
.field {
    position: relative;
}

.field label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 8px;
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.field input:focus + label,
.field input:valid + label,
.field select:focus + label,
.field select:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #0066ff;
    background: #fff;
}


/* General Footer Styling */
.footer {
    padding: 40px 30px 20px;
    max-width: none;
    margin: 0 auto;
    margin-top: 2px;
    position:relative;
    overflow: hidden;
   
}
.footer-bg {
    position: absolute;
    inset: 0;
   /* solid blue */
    z-index: -3;            /* under video and overlay */
}
footer video.footer-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
       top: 0;
    left: 0;
    object-fit: cover;     /* Ensures the video fills the area */
       object-position: center 20%;   /* Show the top part of the video */
    z-index: -2;           /* Behind the footer content
    opacity: 0.35;         /* Adjust visibility of the video */
    pointer-events: none;  /* Prevents video from interfering with clicks */
}

/* Make sure footer content stays above the video */
footer .footer-content {
    position: relative;
    z-index: 10;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
     /* subtle darkening */
    z-index: -1;
    pointer-events: none;
}
.footer-left p{
text-align: justify;
}
    
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px; /* Increased gap for better spacing */
    margin-bottom: 30px;
    flex-wrap: wrap;
    position:relative;
    z-index:1;
}

.footer-left {
    flex: 2;
    max-width: 400px;
    min-width: 300px;
}

.footer-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 200px;
    margin-left: 0; /* Remove any left margin */
    gap: 0; /* Remove gap that was creating too much space */
    font-family: 'Poppins',sans-serif;
}

.footer-right {
    flex: 1.5;
    min-width: 250px;
    font-family: 'Poppins',sans-serif;
}

/* Ensure proper alignment for all sections */
.footer-section h3 {
    display: block;
    color:white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
    width: 100%;
}

.footer-section li {
    margin-bottom: 8px;
    width: 100%;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'poppins',sans-serif;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Company Section */
.company-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
  
    flex-shrink: 0;
    margin-bottom: 10px;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.company-info h2 {
    display: none;
}

.company-tagline {
    display: none;
}

.company-description {
    color: white;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.comment-section {
    margin-bottom: 20px;
}

.comment-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
}

.comment-btn {
    background-color: #013a72;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.comment-btn:hover {
    background-color: #5b636d;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Social Media Icon Colors (Matching Original Logos) */
.fab.fa-facebook {
    background-color: #062568;
    /* Facebook Blue */
}

.fab.fa-twitter {
    background-color: #032e74;
    /* Twitter Blue */
}

.fab.fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram Gradient */
}

.fab.fa-whatsapp {
    background-color: #25d366;
    /* WhatsApp Green */
}

/* Contact Section */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1;
}

.contact-item .icon {
    color: #1976d2;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item .text {
    color: white;
    flex: 1;
    font-family: 'poppins', sans-serif;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: white;
    font-size: 14px;
}


/* map */
.map-section {
            background: linear-gradient(180deg, #00BFFF 20%, #00BFFF 100%);
            padding: 40px 20px;
            margin-bottom: 20px;
        }

        .map-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 30px;
            align-items: flex-start;
            height: 90%;
        }

        .country-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .country-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .country-card img:hover {
            transform: scale(1.03);
        }

        .country-card h2 {
            font-size: 26px;
            margin-bottom: 15px;
            color: #0076ce;
        }

        .country-card p {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }

        #container {
            flex: 1;
            height: 600px;
            border-radius: 10px;
            background: #00BFFF;
        }

        .highcharts-background {
            fill: #00BFFF !important;
        }

        .highcharts-credits {
            display: none !important;
        }

        @media (max-width: 968px) {
            .map-container {
                flex-direction: column;
            }

            .country-card {
                width: 100%;
                max-width: 500px;
            }

            #container {
                width: 100%;
                height: 400px;
            }
        }
   
/* ielts */
 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            align-items: center;
            gap: 15px;
            display: flex;
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            font-size: 3rem;
            color: #2d3748;
            text-align: center;
            flex: 1;
            font-weight: 700;
        }

        .header p {
            font-size: 1.3rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }



        .header img {
            width: 300px;
            height: auto;
        }


        .section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #068CCE;
            margin-bottom: 30px;
            align-items: center;
            gap: 15px;
            margin-top: 90px;
        }

        .section-title i {
            color: #068CCE;
            font-size: 2rem;
        }

        .immigration-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
        }

        .immigration-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2d3748;
            line-height: 1.2;
        }

        .immigration-text {
            font-size: 1.2rem;
            color: #4a5568;
            line-height: 1.8;
        }

        .why-accept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(96, 103, 209, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #068CCE;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: #068CCE;
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .feature-text {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .test-structure {
            margin-top: 40px;
        }

        .test-intro {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .test-card {
            background: linear-gradient(135deg, #068CCE 0%, #81aabf 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .test-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.3s ease;
            opacity: 0;
        }

        .test-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(10px, 10px);
        }

        .test-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(90, 131, 207, 0.4);
        }

        .test-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .test-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .test-arrow {
            font-size: 1.5rem;
            margin-left: 10px;
            position: relative;
            z-index: 2;
        }

        .test-time {
            font-size: 1rem;
            margin-top: 15px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .intro-text {
            font-size: 1.2rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 30px;
        }
.highlight {
            color: #e53e3e;
            font-weight: 600;
        }

        /* Pricing Section Styles */
        .pricing-section {
            text-align: center;
        }

        .pricing-badges {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }
           @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }


        .offer-badge {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .offer-badge.limited {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }

        .offer-badge.discount {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
            position: relative;
        }

        .offer-badge.discount::before {
            content: '99%';
            position: absolute;
            top: -5px;
            right: -5px;
            background: #fbbf24;
            color: #dc2626;
            font-size: 0.7rem;
            font-weight: 900;
            padding: 2px 6px;
            border-radius: 50%;
            min-width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-container {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .central-ielts {
            position: absolute;
            z-index: 10;
        }

        .ielts-circle {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #068CCE, #c53030);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.4);
            animation: pulse 3s ease-in-out infinite;
        }

        .ielts-circle h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .price-main {
            text-align: center;
        }

        .currency {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .amount {
            font-size: 1.8rem;
            font-weight: 700;
            display: block;
        }

        .original-price {
            font-size: 0.9rem;
            text-decoration: line-through;
            opacity: 0.8;
            margin-top: 5px;
        }

           /* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



/* Studyabroad php */

    .card-studyabroad {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card-studyabroad:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
   