:root {
    --primary-green: #8bc34a;
    --dark-gray: #2c2c2c;
    --light-gray: #f5f5f5;
    --red-accent: #e53e3e;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Top Contact Bar */
.top-contact-bar {
    background: var(--dark-gray);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
}

.top-contact-bar a:hover {
    color: var(--primary-green);
}

.social-icons a {
    color: white;
    margin-left: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-green);
}


@media (max-width: 768px) {
  .top-contact-bar {
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
  }

  .top-contact-bar .col-md-8 a:nth-child(n+3) {
    display: none; /* hide from 3rd item onwards */
  }

  .top-contact-bar .social-icons {
    margin-top: 6px;
    text-align: center;
  }
}








/* Main Navigation */
.main-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.main-navbar .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 16px;
    position: relative;
}

.main-navbar .navbar-nav .nav-link.active,
.main-navbar .navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.virtual-counselling-btn {
    background: var(--primary-green);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.virtual-counselling-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
}



/* Hero Section */
.hero-image-container{
  padding:30px;
}

.hero-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    background: url("../images/hero-background.jpg") no-repeat center center;
    background-size: cover;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-tagline {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
}


.hero-tagline {
    animation: fadeDown 1s ease-in-out;
}
.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeDown {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes float {
    0% {transform: translateY(0);}
    50% {transform: translateY(-10px);}
    100% {transform: translateY(0);}
}


/* Make Her responsive  */
/* Default (Desktop / Tablet) already set above */

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
    text-align: center; /* Center align for mobile */
  }

  .hero-title {
    font-size: 2rem;   /* smaller title */
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px; /* spacing between stacked buttons */
    align-items: center;
  }

  .hero-buttons .btn {
    width: 90%;       /* buttons span nicely across */
    font-size: 0.95rem;
    padding: 12px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 10px;
  }
}








/* About Section with Curve */
.about-section {
    background: white;
    padding: 100px 0 80px;
    position: relative;
}

/* .about-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
} */

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.learn-more-btn {
    background: var(--red-accent);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #c53030;
    color: white;
    transform: translateY(-2px);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



/* Our vision  */
.vision-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #7cb342 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vision-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.shape {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  z-index: 1;
  transition: transform 0.2s ease;
}
.shape-1 { top: -40px; left: -60px; }
.shape-2 { bottom: -50px; right: -60px; }
.shape-3 { top: 20%; right: -40px; }


/* Our vision video  */

.video-thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.video-img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 20px;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.video-thumbnail:hover .play-button {
  background: #7ac142;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.video-container {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.video-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}



/* IELTS Preparation Section */
.ielts-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #7cb342 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.ielts-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #7cb342 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.ielts-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ielts-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.ielts-btn {
    background: white;
    color: var(--primary-green);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ielts-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-green);
}

.ielts-btn.red {
    background: var(--red-accent);
    color: white;
}

.ielts-btn.red:hover {
    background: #c53030;
    color: white;
}

.british-council-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.british-council-logo {
    background: var(--red-accent);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Study Destinations Section */
.destinations-section {
    background: var(--light-gray);
    padding: 80px 0;
    position: relative;
}

.destinations-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-info {
    padding: 20px;
    text-align: center;
}

.destination-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.destination-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.destination-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 14px;
    border-radius: 8px;
}

.destination-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.testimonials {
    background: #f8f9fa;
}
.testimonial-card {
    border-radius: 1rem;
}
.testimonial-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #28a745, #6cc24a);
}

/* Contact form  */

  .contact-form-section {
  position: relative;
 background: url('../images/countries.png') no-repeat center bottom;
  /* background-size: cover; */
  overflow: hidden;
  }

 

.contact-form-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2); /* dark overlay */
}

.form-card {
  border-radius: 12px;
  background: #fff;
  position: relative;
  z-index: 2;
}


.form-control, .form-select, textarea {
  border-radius: 6px;
  border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: #28a745;
  box-shadow: 0 0 6px rgba(40, 167, 69, 0.2);
}

button.btn-success {
  background-color: #28a745;
  border: none;
  transition: 0.3s;
}

button.btn-success:hover {
  background-color: #218838;
}


/* 
.contact-section h3 {
  font-size: 1.5rem;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #28a745; 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
} */



/* Whatsapp floating Button  */
.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}
.whatsapp-text {
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Modal Style */
.whatsapp-modal {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 2000;
}
.modal-header {
    padding: 12px;
    font-size: 14px;
}
.modal-header p {
    font-size: 12px;
    margin: 0;
}
.modal-body {
    padding: 15px;
}

/* services section */

.services-section {
    /* background: #f5f5f5; light background like screenshot */
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}


 

.services-section h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.services-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #7ac142;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}


.service-item .icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #7ac142; /* green blob color */
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; /* makes organic blob */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.service-item .icon-wrap {
    transition: all 0.3s ease;
}
.service-item:hover .icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}



.service-item p {
    color: #7ac142;
    font-size: 0.9rem;
}

.service-item:hover p {
    color: #4b8f2d;
}


/* CTA Section */

.footer-section {
  background: linear-gradient(135deg, #1c1c1c, #121212);
  position: relative;
  overflow: hidden;
}

.footer-map {
  position: absolute;
  bottom: -10px;
  right: -10px;
  max-width: 220px;
  opacity: 0.07;
  pointer-events: none;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
    padding: 40px 0;
  }

  .footer-section img {
    max-height: 90px;
    margin-bottom: 15px;
  }

  .footer-section h5 {
    font-size: 1.1rem;
    margin-top: 20px;
  }

  .footer-section p,
  .footer-section .small {
    font-size: 0.9rem;
  }

  .footer-section .social-icons a {
    font-size: 18px;
    margin: 0 10px;
  }

  .footer-section .map-container {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 30px 15px;
  }

  .footer-section h5 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section .small {
    font-size: 0.85rem;
  }

  .footer-section iframe {
    height: 160px; /* shorter map on small screens */
  }
}


/* Custom */
.text-orange{
  color: #7ac142;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .ielts-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    
}
