/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #111;
}

/* Top Strip */
.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-left .logo {
  width: 40px;
  height: auto;
}

.site-name {
  font-weight: bold;
  font-size: 20px;
  color: #1b3b6f;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right i {
  color: #123361;
}

/* Header Navigation */
header {
  background-color: #123361;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4%;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background-color: #05b534;
  border-radius: 4px;
}

/* Dropdown */


/* Dropdown Wrapper */
.nav-links .dropdown {
  position: relative;
}

/* Dropdown Menu */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #123361; /* your current dark blue */
  min-width: 200px;
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Show on Hover */
.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

/* Keep dropdown open while hovering submenu */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

/* Dropdown Link Items */
.nav-links .dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}

/* Hover Effect */
.nav-links .dropdown-content a:hover {
  background-color: #05b534;
  color: #fff;
}

/* Enquiry Button */
.enquiry-btn {
  background: #1e5c2f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
}

.enquiry-btn:hover {
  background: #05b534;
}




/* Slider */
/* Slider */
.hero-slider {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5faff;
}

.hero-content h1 {
  font-size: 36px;
  color: #123361;
}

.tagline {
  font-size: 20px;
  color: #05b534;
  margin: 10px 0;
}

.intro {
  color: #333;
  max-width: 600px;
  margin: auto;
}

.enroll-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #05b534;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: #05b534;
}
/* About Section */
.about-section {
  padding: 60px 10%;
  background: #f4faff;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}
.about-image {
  flex: 1;
  text-align: right;
}
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Features Below About */
.about-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 10%;
  background: #e8f4fb;
  flex-wrap: wrap;
}
.feature-box {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.feature-box p {
  margin-top: 10px;
  font-weight: 600;
  color: #003366;
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Vision & Mission */
.vision-mission {
  background: #f4faff;
  padding: 60px 10%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.vm-box {
  flex: 1 1 300px;
  padding: 20px;
}
.vm-box i {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 15px;
}
.vm-box h3 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.vm-box p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}
.about-links-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
  background: #f8fcff;
}

/* About Section */
.about-section {
  padding: 80px 40px;
  background: #ffffff;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-text {
  flex: 1 1 45%;
}
.about-text h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
.about-image {
  flex: 1 1 45%;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Animated Image Flip Section */
.about-links-section {
  padding: 60px 20px;
  background: #f4faff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.flip-card {
  width: 180px;
  height: 180px;
  perspective: 1000px;
  text-align: center;
  position: relative;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.flip-back {
  background-color: #007b9e;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 10px;
  border-radius: 12px;
}

.card-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
  color: #003366;
}



@media (max-width: 768px) {
  .flip-card {
    width: 160px;
    height: 200px;
  }
  .flip-front img {
    height: 120px;
  }
}
.about-links-section {
  background: #f4faff;
  padding: 60px 20px;
  text-align: center;
}

.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.flip-card {
  width: 120px;
  height: 120px;
  perspective: 1000px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-front {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.flip-back {
  background-color: #007b9e;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding: 5px;
  border-radius: 10px;
}

.divider {
  width: 1px;
  height: 100px;
  background: #ccc;
}
.about-links-section {
  background: #f4faff;
  padding: 60px 20px;
}

.flip-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.flip-card {
  width: 130px;
  height: 130px;
  perspective: 1000px;
  text-decoration: none;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-front {
  background: #fff;
}

.flip-front img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
}

.flip-back {
  background: #007b9e;
  color: white;
  transform: rotateY(180deg);
  padding: 10px;
  font-size: 0.85rem;
  text-align: center;
}
.about-icons-section {
  padding: 60px 20px;
  background: #f0f8ff;
}

.icon-card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.icon-flip-card {
  width: 120px;
  height: 120px;
  perspective: 1000px;
  text-decoration: none;
}

.icon-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.icon-flip-card:hover .icon-flip-inner {
  transform: rotateY(180deg);
}

.icon-flip-front,
.icon-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-flip-front img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  padding: 10px;
}

.icon-flip-back {
  background: #007b9e;
  color: white;
  transform: rotateY(180deg);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

.vertical-line {
  width: 2px;
  height: 80px;
  background: #ccc;
  margin: 0 10px;
}
.about-icons-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.icon-card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
}

.icon-flip-card {
  width: 120px;
  height: 120px;
  perspective: 1000px;
}

.icon-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.icon-flip-card:hover .icon-flip-inner {
  transform: rotateY(180deg);
}

.icon-flip-front,
.icon-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.icon-flip-front img,
.icon-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-flip-back {
  transform: rotateY(180deg);
}

.icon-label {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  color: #003366;
  font-size: 1.35rem;
}

.vertical-line {
  width: 2px;
  height: 200px;
  background: #ccc;
}

@media (max-width: 768px) {
  .vertical-line {
    display: none;
  }

  .icon-card-container {
    gap: 20px;
    justify-content: center;
  }
}
/* About Section Layout */
/* Fix for About Section alignment */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 10%;
  gap: 40px;
}

/* Ensure About Text and Image share space equally */
.about-left, .about-image {
  flex: 1 1 45%;
}

/* Prevent image from shrinking */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Fix for Vision & Mission alignment */
.vision-mission-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 0 10%;
}

/* Responsive card style */
.vision-item {
  flex: 1 1 45%;
  background-color: #f1f9ff;
  border-left: 5px solid #00C851;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-6px);
}

/* Responsive handling */
@media (max-width: 768px) {
  .about-section,
  .vision-mission-side {
    flex-direction: column;
    padding: 30px 5%;
  }

  .about-left,
  .about-image,
  .vision-item {
    flex: 1 1 100%;
  }
}
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-nav .prev,
.slider-nav .next {
  font-size: 36px;
  color: white;
  cursor: pointer;
  user-select: none;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.slider-nav .prev:hover,
.slider-nav .next:hover {
  transform: scale(1.2);
}
/* Products & Services Section */
.products-services {
  background-color: #e1f0ff;
  padding: 60px 20px;
  text-align: center;
}

.products-services h2 {
  font-size: 32px;
  color: #123361;
  margin-bottom: 15px;
}

.section-description {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}

.service-box i {
  font-size: 40px;
  background-color: #fff;
  color: #05b534;
  border-radius: 50%;
  padding: 20px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-box:hover i {
  background-color: #05b534;
  color: #fff;
  transform: scale(1.1);
}

.service-box h3 {
  margin-top: 12px;
  font-size: 16px;
  color: #123361;
}
/* Footer */
.footer {
  background-color: #cfe8ff;
  padding: 40px 20px 20px;
  color: #123361;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.footer-map img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.footer-contact {
  flex: 1;
  padding-left: 40px;
}

.footer-contact h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #123361;
}

.footer-contact p {
  margin: 8px 0;
  color: #fdf9f9;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 8px;
  color: #05b534;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #123361;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #05b534;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #aad3ff;
  padding-top: 15px;
  margin-top: 30px;
  color: #fffefe;
}
.footer {
  background-color: #123361; /* Light blue like TradeMagic */
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
}

.footer-map iframe {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  flex: 1;
  min-width: 280px;
}

.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-contact p {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 10px;
  font-size: 20px;
  color: #05b534; /* Green icon accent */
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #05b534;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: #e0e0e0;
}
.footer-logo img {
  max-width: 250px;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
/* Active navbar link style */
nav a.active-link {
  color: #05b534;
  font-weight: bold;
  border-bottom: 2px solid #05b534;
}

.page-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Learn Section */
.learn-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.learn-section .section-title {
  font-size: 2.5rem;
  color: #004b8d;
  margin-bottom: 1rem;
}
.learn-section .section-desc {
  font-size: 1.2rem;
  max-width: 800px;
  margin: auto;
  margin-bottom: 2rem;
}
.btn-enroll {
  display: inline-block;
  padding: 12px 30px;
  background-color: #18a558;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-enroll:hover {
  background-color: #12904c;
}
.learn-section {
  padding: 60px 20px;
  background: #f8f9fc;
}
.learn-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.learn-box:hover {
  transform: scale(1.02);
}
.learn-box img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}
.box-content {
  padding: 20px;
  flex: 1;
}
.box-content h3 {
  color: #004080;
  margin-bottom: 10px;
}
.box-content p {
  line-height: 1.6;
}
/* REMOVE BLUE OUTLINES, UNDERLINES, AND BORDERS */
a, a:focus, a:active, a:hover,
i, i:focus, i:active, i:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: inherit;
}
nav a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #18a558;
  border-bottom: 2px solid #18a558;
}

nav a.active {
  color: #18a558;
  font-weight: bold;
  border-bottom: 2px solid #18a558;
}
/* Learn & Earn Section Styles */
.learn-section {
  padding: 60px 20px;
  background: #f5faff;
}

.learn-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.learn-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.learn-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.learn-box:nth-child(even) {
  flex-direction: row-reverse;
}

.learn-image {
  flex: 1;
  min-width: 300px;
  height: 220px;
  object-fit: cover;
}

.learn-content {
  flex: 2;
  padding: 20px 30px;
}

.learn-content h3 {
  color: #003366;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.learn-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .learn-box {
    flex-direction: column;
  }

  .learn-box:nth-child(even) {
    flex-direction: column;
  }

  .learn-image {
    width: 100%;
    height: 200px;
  }

  .learn-content {
    padding: 20px;
  }
}

/* Small Hero Section */
.hero-section.small-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section.small-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section.small-hero .hero-overlay h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Features Section */
.features-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.features-section.alt-section {
  background-color: #e0f2f1; /* Light green-blue */
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
  font-size: 2rem;
}

.feature-list {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding: 0;
}

.feature-list li {
  font-size: 1.1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.feature-list i {
  color: green;
  margin-right: 10px;
}

/* Footer */
.site-footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px;
}
/* Feature Section Layout */
.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  color: white;
}

.feature-icon {
  font-size: 60px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Alternate backgrounds */
.navy-bg {
  background-color: #123361;
}

.green-bg {
  background-color: #05b534;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    text-align: center;
  }
  .feature-icon {
    margin-bottom: 20px;
  }
}
/* Sharekhan Orange Header Block */
.sharekhan-banner {
  background-color: #f37021; /* Official orange */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.sharekhan-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;  /* Ensures readability */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sharekhan-banner .thin-text {
  font-weight: 300;
  font-size: 2.2rem;
  color: white;  /* Also white */
  text-transform: none;
  margin-left: 8px;
}
.sharekhan-description-box {
  background-color: #05b534; /* Green */
  color: white;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 1100px;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sharekhan-description-box:hover {
  transform: translateY(-4px);
}

.section-heading {
  text-align: center;
  margin-top: 60px;
}
.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #004080;
}
.section-heading p {
  color: #333;
  font-size: 1.1rem;
}

.box-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
  max-width: 1100px;
}

.info-box.with-icon {
  flex: 1 1 450px;
  background-color: #123361;
  color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.info-box.with-icon.green {
  background-color: #05b534;
}

.info-box.with-icon:hover {
  transform: scale(1.02);
}

.info-box .icon {
  font-size: 40px;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-box h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: white;
}

/* Footer Styling */
.footer {
  width: 100%;
  background: #002244;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
  box-sizing: border-box;
}

/* === Hero Banner Section === */
.page-hero {
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  z-index: 1;
}

/* === About Split Section === */
.about-split-section {
  padding: 60px 20px;
}

.about-split-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-split-container .about-text {
  flex: 1 1 50%;
}

.about-split-container .about-text h2 {
  font-size: 2rem;
  color: #123361;
  margin-bottom: 15px;
}

.about-split-container .about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.about-split-container .about-image {
  flex: 1 1 45%;
}

.about-split-container .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* === Vision & Mission Shared Section === */
.vision-mission-side {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.vision-item {
  flex: 1 1 400px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-6px);
}

.vision-item i {
  font-size: 3.5rem;
  color: #1e5c2f;
  margin-bottom: 15px;
}

.vision-item h4 {
  font-size: 1.4rem;
  color: #123361;
  margin-bottom: 10px;
}

.vision-item p {
  color: #333;
  line-height: 1.6;
}

/* === Journey Section === */
.journey-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.journey-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.journey-content h2 {
  font-size: 2rem;
  color: #123361;
  margin-bottom: 20px;
}

.journey-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* === Scroll Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.vision-mission-side {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  background-color: #123361;
  flex-wrap: wrap; /* for responsiveness */
}

.vision-item {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-5px);
}

.vision-item i {
  font-size: 36px;
  margin-right: 20px;
  color: #18a558;
}

.vision-item h4 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #fff;
}

.vision-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #eee;
}
/* About Page Vision & Mission Side by Side */
.about-vision-mission {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  background-color: #123361;
  padding: 30px;
  border-radius: 12px;
}

.about-vision-item,
.about-Mission-item {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.about-vision-item i,
.about-Mission-item i {
  font-size: 30px;
  margin-right: 15px;
  color: #18a558;
}

.about-vision-item h4,
.about-Mission-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}

.about-vision-item p,
.about-Mission-item p {
  font-size: 15px;
  color: #eaeaea;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);  /* Transparent black overlay */
  padding: 40px 80px;
  border-radius: 10px;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.page-hero h1 {
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  color: #003366; /* Dark blue text for contrast */
  backdrop-filter: blur(3px); /* Optional: subtle blur effect */
}
/* Why Chart Master Section */
.why-chart-master-section {
  background: #f0f8ff;
  padding: 60px 20px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.why-points-box {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
  background: #bfe9ca;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.why-points-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #003366;
}

.why-points {
  list-style: none;
  padding-left: 0;
}

.why-points li {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  color: #0e0d0d;
}

.why-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #05b534;
  font-weight: bold;
}

.why-image-box {
  flex: 1;
  min-width: 280px;
  max-width: 800px;
}

.why-image-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }

  .why-points-box,
  .why-image-box {
    max-width: 100%;
  }

  .why-points-box h3 {
    text-align: left;
  }

  .why-points {
    text-align: left;
  }
}


/* Dropdown Style */
nav ul li {
  position: relative;
}

nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #123361;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

nav ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
}

nav ul li .dropdown-menu li a:hover {
  background-color: #05b534;
}

/* Show on hover */
nav ul li.dropdown:hover > .dropdown-menu {
  display: block;
}


/* Course Section Base */
.course-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
}

.course-content {
  display: flex;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.course-content.reverse {
  flex-direction: row-reverse;
}

.course-text {
  flex: 1;
  min-width: 300px;
}

.course-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
}

.course-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.course-text ul {
  padding-left: 20px;
  margin-top: 10px;
}

.course-text ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.course-image {
  flex: 1;
  min-width: 300px;
}

.course-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Alternate backgrounds */
.green-bg {
  background-color: #e0f7e9;
}

.blue-bg {
  background-color: #e3f0ff;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Offset for anchored sections to account for sticky header */
section {
  scroll-margin-top: 100px; /* adjust if your header is taller or shorter */
}



/* Advance Master Program Styling */

.course-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

.row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.first-row {
  align-items: flex-start;
}

.second-row {
  align-items: flex-start;
}

.intro-text,
.key-features,
.important-note-box {
  flex: 1;
  background-color: #e6f2e6;
  padding: 20px;
  border-radius: 10px;
}

.course-image img {
  max-width: 100%;
  max-height: 250px;
  border-radius: 10px;
}

.important-note-box {
  background-color: #d2f0d2;
}

.key-features ul {
  list-style: none;
  padding-left: 0;
}

.key-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.key-features i {
  color: green;
  margin-right: 10px;
}




/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Navigation Bar */
nav {
  background-color: #123361; /* Light blue */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  position: relative;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fdfdfd;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}

.nav-links a:hover {
  background-color: #05b534;
  color: #fdfafa;
}

/* Dropdown Styling */
.dropdown-content,
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  top: 100%;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  z-index: 999;
  padding: 0;
}

.dropdown-content li,
.dropdown-menu li {
  list-style: none;
}

.dropdown:hover .dropdown-content,
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-content a,
.dropdown-menu a {
  padding: 10px 15px;
  color: #111;
  display: block;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child,
.dropdown-menu a:last-child {
  border-bottom: none;
}

.enquiry-btn {
  background-color: #123361;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #05b534;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* you can reduce or increase this */
}

.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

/* Section Container */
.share-market-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.share-market-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
}

/* Grid layout for cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Vertical Cards */
.card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Alternate card background */
.card:nth-child(even) {
  background-color: #e8f7ff;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Card Content */
.card-content h3 {
  font-size: 1.2rem;
  color: #0b3b57;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.participants-section {
  padding: 60px 20px;
  background-color: #e8f9f9;
  text-align: center;
}

.participant-intro {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #333;
  line-height: 1.6;
}

.participant-icons-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.participant-icons-horizontal img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.participant-icons-horizontal img:hover {
  transform: scale(1.08);
}

.participant-icons-horizontal img {
  width: 150px; /* Increased from 100px to 150px */
  height: auto;
  transition: transform 0.3s ease;
}

.participant-icons-horizontal img:hover {
  transform: scale(1.1);
}

.green-bg {
  background-color: #e6f4ea; /* Light green background */
  color: #111;               /* Dark text for contrast */
  padding: 30px 20px;
  border-radius: 12px;
}
.mutual-section {
  background: #f5f9ff;
  padding: 60px 20px;
  animation: fadeInUp 1s ease-in;
}
.section-heading {
  text-align: center;
  color: #0a4a82;
  font-size: 2rem;
  margin-bottom: 20px;
}
.mutual-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
}

.mutual-subsection {
  background: #fff;
  border-left: 5px solid #0077cc;
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.mutual-subsection.sip { border-color: #4caf50; }
.mutual-subsection.lumpsum { border-color: #3f51b5; }

.mutual-subsection h3 {
  margin-bottom: 10px;
  color: #222;
}
.mutual-subsection p {
  color: #555;
}

/* Fund Tree */

.fund-tree {
  margin: 40px auto;
  background: #eef7f2;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px; /* Controls width */
  text-align: center; /* Centers heading and items */
}

.fund-tree h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #00695c;
}

.fund-tree-root {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center list items */
}

.fund-tree-root li {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.fund-tree-root li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #4caf50;
}


/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
/* Demat Services Styling */
.demat-section {
  padding: 60px 20px;
  background: #f4f9ff;
}

.demat-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a237e;
}

.demat-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  gap: 20px;
}

.demat-icon {
  font-size: 2.5rem;
  color: #2196f3;
  background: #e3f2fd;
  padding: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demat-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0d47a1;
}

.demat-content p {
  font-size: 1rem;
  color: #444;
}

/* Color variations */
.green-bg {
  background-color: #e8f5e9;
}

.blue-bg {
  background-color: #e3f2fd;
}

.grey-bg {
  background-color: #f5f5f5;
}

/* Insurance Services Styling */
.insurance-section {
  padding: 60px 20px;
  background: #f9f9ff;
}

.insurance-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #b71c1c;
}

.insurance-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  gap: 20px;
}

.insurance-icon {
  font-size: 2.5rem;
  color: #b71c1c;
  background: #fdecea;
  padding: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #880e4f;
}

.insurance-content p {
  font-size: 1rem;
  color: #444;
}

/* Color Variants */
.pink-bg {
  background-color: #fff0f3;
}

.blue-bg {
  background-color: #e3f2fd;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-top: -15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Mentor Section */
.mentor-section {
  background: #f0f8ff; /* light subtle blue */
  padding: 60px 20px;
}

.mentor-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.mentor-left {
  flex: 1 1 40%;
  background-color: #e0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentor-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}

.mentor-right {
  flex: 1 1 60%;
  padding: 40px;
  background-color: #ffffff;
}

.mentor-right h2 {
  color: #004466;
  font-size: 28px;
  margin-bottom: 20px;
}

.mentor-right p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.certifications h3 {
  color: #005792;
  font-size: 20px;
  margin-bottom: 10px;
}

.certifications ul {
  list-style: none;
  padding-left: 0;
}

.certifications ul li {
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.mentor-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: white;
  border: 4px solid #005792; /* Broad medium border */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.blog-section {
  padding: 40px 20px;
}

.blog-card {
  max-width: 900px;
  margin: 20px auto;
  padding: 25px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  background: #f5f5f5;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h2 {
  margin-top: 0;
  font-size: 1.5em;
}

.light-green {
  background: #d7fbe8;
}

.light-blue {
  background: #d4f1f9;
}

.read-more {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #005f8a;
}

/* Modal */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.blog-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  color: #333;
  position: relative;
  animation: zoomIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.blogs-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 40px;
}

.blog-card {
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.green-bg {
  background: #e8f9e9;
}

.blue-bg {
  background: #e6f4ff;
}

.blog-card h2 {
  color: #003366;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.read-more-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 15px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #005fa3;
}

.read-more-content {
  display: none;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

.read-more-content.visible {
  display: block;
}

.read-more-content ul {
  list-style-type: ✅;
  padding-left: 20px;
}

.read-more-content a {
  color: #0077cc;
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.read-more-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin-top: 10px;
}

.read-more-content.visible {
  display: block;
  opacity: 1;
}

.read-more-btn {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #005fa3;
}
/* General Reset & Font */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
}

.contact-hero {
  background: linear-gradient(to right, #33cc99, #0099cc);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  margin: 0;
  font-size: 2.5rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 40px 10%;
  gap: 30px;
  background: #ffffff;
}

.contact-info {
  background: #e6fff3;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-top: 0;
  color: #006644;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info i {
  margin-right: 10px;
  color: #00a87e;
}

/* Contact Form */
.contact-form {
  background: #eaf6ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form h3 {
  margin-top: 0;
  color: #004a99;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #0099cc;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0077aa;
}

/* Map Section */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Floating WhatsApp and Call Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.floating-buttons a.call-btn {
  background: #0A66C2;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}




.form-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #1c1c1c;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.form-group:focus-within {
  border: 1px solid #0056b3;
}

.icon-box {
  width: 38px;
  height: 38px;
  background-color: #f0f0f0; /* neutral by default */
  color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 4px; /* square edges with slight rounding */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-group input,
.form-group select {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #333;
  background: transparent;
}

.form-group select {
  appearance: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #4a90e2;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #357bd8;
  transform: translateY(-1px);
}

.submit-btn:active {
  background: #2c6fc0;
  transform: scale(0.98);
}


.success-popup {
  display: none;
  margin-top: 18px;
  padding: 12px;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  animation: fadein 0.4s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}




/* ===== FAQs Section Styling ===== */
/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #eef3f8);
  text-align: center;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* FAQ Question Button */
.faq-question {
  background: #f0f4f8;
  color: #333;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e2e8f0;
}

/* Active State */
.faq-question.active {
  background: #dce3eb;
  color: #000;
}

/* Answer Styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  background: #ffffff;
  text-align: left;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid #ccc;
}

.faq-answer p {
  margin: 16px 0;
}


.full-testimonials {
  padding: 60px 20px;
  background: #fdfdfd;
}

.full-testimonials .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
  font-weight: bold;
}

.testimonial-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  gap: 20px;
  transition: transform 0.3s ease;
}

.testimonial-row:hover {
  transform: scale(1.01);
}

.student-photo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #007bff;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-name {
  font-weight: 600;
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .student-photo {
    margin-bottom: 16px;
  }

  .testimonial-content {
    text-align: center;
  }
}

.student-photo {
  transition: transform 0.4s ease;
}

.student-photo:hover {
  transform: scale(1.05) rotate(1deg);
}
.testimonials-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 30px 20px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #f8f9fb;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.student-photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 30px;
  border: 4px solid #dde5ff;
  transition: transform 0.4s ease;
}

.student-photo:hover {
  transform: scale(1.05);
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: #2d4059;
}




.testimonials-wrapper {
  background: linear-gradient(to bottom right, #f3f7ff, #e0f0ff);
  padding: 60px 20px;
}

.testimonials-section {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.student-photo {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  border: 4px solid #e0eaff;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  position: relative;
  padding-left: 40px;
}

.testimonial-text::before {
  content: "“";
  font-size: 40px;
  color: #6ca0dc;
  position: absolute;
  left: 0;
  top: -10px;
  font-family: serif;
}

.testimonial-name {
  margin-top: 15px;
  font-weight: 600;
  color: #2d4059;
  font-size: 15px;
}



/* --- ABOUT SECTION --- */
.about-section {
  background-color: #e1f0ff;
  color: #000000;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  align-items: stretch;      /* ensures both columns are equal height */
  flex-wrap: nowrap;         /* prevents right side from dropping below */
}

/* Left Column */
.about-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 35px; /* Adds space between about text & vision/mission */
}

.about-left h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #123361;
}

.about-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 8px;
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
  background: linear-gradient(to right, #0f3057, #00587a);
  padding: 25px 30px;
  border-radius: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  border-left: 10px solid #05b534;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-6px);
}

.vision-card h3, .mission-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.vision-card p, .mission-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #d8e9ff;
}

/* Right Column */
.about-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Webinar Box */
.webinar-box {
  background-color: #e1f0ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #000000;
  max-width: 100%;
}

.webinar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.webinar-text {
  flex: 1;
  min-width: 200px;
}

.webinar-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #123361;
}

.webinar-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

.webinar-btn {
  background-color: #123361;
  color: #ffffff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.webinar-btn:hover {
  background-color: #0e2a52;
  transform: scale(1.05);
}

/* Image */
.about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  display: block;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-image {
    height: auto; /* So image doesn't stretch on mobile */
  }
}


/* Base nav-links style for desktop */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

/* Dropdown styles for desktop */
.nav-links li {
  position: relative;
}

.nav-links li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  padding: 10px;
  z-index: 999;
  border-radius: 5px;
}

.nav-links li:hover .dropdown {
  display: block;
}

.nav-links li .dropdown a {
  display: block;
  padding: 5px 10px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.nav-links li .dropdown a:hover {
  background-color: #222;
}

/* 🔽 MOBILE NAVIGATION (768px and below) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li .dropdown {
    position: relative;
    top: auto;
    background-color: transparent;
    padding: 0;
  }

  .nav-links li .dropdown a {
    padding-left: 20px;
  }

  .nav-links li:hover .dropdown {
    display: block;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1100;
  }

  nav {
    position: relative;
  }

  .desktop-enquiry {
    display: none;
  }

  .mobile-enquiry {
    display: block;
  }
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}
/* Base nav-links style for desktop */
.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

/* Dropdown styles for desktop */
.nav-links li {
  position: relative;
}

.nav-links li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  padding: 10px;
  z-index: 999;
  border-radius: 5px;
}

.nav-links li:hover .dropdown {
  display: block;
}

.nav-links li .dropdown a {
  display: block;
  padding: 5px 10px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.nav-links li .dropdown a:hover {
  background-color: #222;
}

/* Hide nav links on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
  }

  nav {
    position: relative;
  }

  .enquiry-btn {
    display: none; /* Hide enquiry button on mobile for compactness */
  }
}

/* Always hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}

.enroll-wrapper {
  margin-top: 20px; /* Adds space between button and content above */
  text-align: center; /* Center the button */
}

.btn-enroll {
  background: linear-gradient(135deg, #00bfa5, #05b534);
  color: #fff;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 191, 165, 0.45);
}

/* Base style for the webinar banner */
.webinar-banner {
  display: none; /* Hidden by default */
  text-align: center;
  border: 2px solid #007BFF;
  background-color: #e6f0ff;
  padding: 10px;
  margin: 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
}

.webinar-banner a {
  text-decoration: none;
  color: #007BFF;
}

/* Show on mobile only */
@media (max-width: 768px) {
  .webinar-banner {
    display: block;
  }

  /* Hide the Enquiry button if it's in mobile */
  .btn-enquiry {
    display: none;
  }
}

/* Replace Enquiry button on desktop */
@media (min-width: 769px) {
  .btn-enquiry {
    display: none;
  }

  .webinar-banner {
    display: block;
    text-align: right;
    margin: 0 20px;
  }

  .webinar-banner a {
    font-size: 16px;
    font-weight: normal;
  }
}

html {
  scroll-behavior: smooth;
}

.enroll-wrapper {
    position: relative;
    z-index: 9999; /* stays on top */
}
.btn-enroll {
    cursor: pointer;
    display: inline-block;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Modal Content Box */
.modal-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 800px;
  margin: 5% auto;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Iframe */
.modal-content iframe {
  width: 100%;
  height: 90vh;
  border: none;
}


.success-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  position: relative; /* Makes close button position correctly */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.popup-box h3 {
  margin-bottom: 10px;
  color: green;
}

.popup-box p {
  margin-bottom: 15px;
}

.close-popup {
  position: absolute;
  top: -12px;
  right: -12px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 10000;
}

.close-popup:hover {
  background: darkred;
}


@keyframes fancyBlink {
  0%, 100% {
    opacity: 1;
    color: #ffcc00;
    transform: scale(1);
    text-shadow: 0 0 5px #ffcc00;
  }
  50% {
    opacity: 0.6;
    color: #ffd633;
    transform: scale(1.1);
    text-shadow: 0 0 20px #ffd633;
  }
}

#openWebinarModal {
  animation: fancyBlink 1.5s infinite;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 2px solid #ffcc00;
  border-radius: 12px;
  box-shadow: 0 0 10px #ffcc00;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #05b534;
  text-decoration: none;
}

#openWebinarModal:hover {
  background-color: #05b534;
  color: #123361;
  box-shadow: 0 0 25px #ffd633, 0 0 50px #ffcc00;
  transform: scale(1.15);
}

/* Make nav links visible and not blend in on click/focus/visited */
nav a:focus,
nav a:active,
nav a:visited,
.floating-nav a:focus,
.floating-nav a:active,
.floating-nav a:visited {
  color: #ffffff!important;       /* dark navy or any visible color you like */
  background-color: transparent !important; /* remove background highlight */
  outline: none;                   /* optional: remove default focus outline */
}

/* Optional: add a nice visible focus style */
nav a:focus,
.floating-nav a:focus {
  outline: 2px solid #ffcc00;     /* bright yellow outline on keyboard focus */
  outline-offset: 3px;
}

.top-right a {
  color: #123361;          /* Default color (nav dark blue) */
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;   /* Remove underline */
}

.top-right a:hover,
.top-right a:focus {
  color: #05b534;          /* Bright yellow on hover */
  transform: scale(1.1);   /* Slight zoom effect */
  cursor: pointer;
}

#openModal {
  display: inline-block; /* default */
  transition: opacity 0.3s ease;
}

#openModal.hidden {
  display: none !important;
  opacity: 0;
}

.floating-nav {
  display: none;
  /* your other styles */
}

.floating-nav.active {
  display: flex !important;
  /* or block if you want vertical */
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* distance of underline from text */
  width: 0;
  height: 2px;
  background-color: #05b534; /* green underline */
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.products-services h2 {
  background: linear-gradient(90deg, #007BFF, #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slider base styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px; /* adjust as needed */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Desktop images */
.slide-1 { background-image: url("sipbg2.png"); }
.slide-2 { background-image: url("healthbg2.png"); }
.slide-3 { background-image: url("advbg.jpg"); }
.slide-4 { background-image: url("web2bg.png"); }
.slide-5 { background-image: url("module7.jpg"); }

.hero-slider {
  position: relative;
  width: 100%;
  height: 350px;   /* Try 300–400px for panoramic look */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;   /* keeps image filling */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Top strip container */
.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: #ffffff; /* Your blue */
}

/* Logo image */
.top-strip .logo {
  height: 50px;   /* Increase this for bigger logo */
  width: auto;    /* Keeps proportions */
}

/* Text beside logo */
.top-strip .site-name {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-left: 10px;
}


