
*       {   
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: sans-serif !important;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: transparent !important;
        }
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 60px;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 10px;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        html, body {
  width: 100%;
  overflow-x: hidden;  /* stops left-right scroll */
}
        
header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  /* background-color: #03042c; */
        background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

}
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, toggler right */
  align-items: center;
  padding: 4px 16px !important;
  min-height: 56px;
}

.navbar-brand {
  padding-left: 8px;
}



.navbar-brand img {
  height: 60x;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}




/* Navbar link styles */
.navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 20px;
  padding: 8px 12px;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00aaff !important;
}
/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* Bubble effect */
.hero-section::before, 
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatBubbles 12s infinite ease-in-out;
    z-index: 1;
}

/* Two bubble layers */
.hero-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.hero-section::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
    animation-delay: 6s;
}

/* Bubble floating animation */
@keyframes floatBubbles {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
}

       
       
        
/* Hero Section with Animated Bubbles */
.hero-section {
    position: relative;
  /* background-color: #092049; */
    color: white;
    text-align: center;
    padding: 80px 20px;
    /* border-radius: 10px; */
    margin-bottom: 40px;
    margin-top: 65px;
    overflow: hidden;
    background: radial-gradient(circle, #1a3d8f 0%, #071a3a 100%);
}

.hero-section h1 {
    position: relative;
    z-index: 2;
}
.hero-section p {
    position: relative;
    z-index: 2;
}

/* Bubble Animation */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}
@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-1200px) scale(0.5); opacity: 0; }
}
.bubble:nth-child(1) { left: 20%; width: 40px; height: 40px; animation-duration: 18s; }
.bubble:nth-child(2) { left: 50%; width: 25px; height: 25px; animation-duration: 12s; }
.bubble:nth-child(3) { left: 70%; width: 60px; height: 60px; animation-duration: 20s; }
.bubble:nth-child(4) { left: 30%; width: 15px; height: 15px; animation-duration: 10s; }
.bubble:nth-child(5) { left: 80%; width: 35px; height: 35px; animation-duration: 16s; }

/* Colorful Cards */
.value-card {
    padding: 25px;
    border-radius: 15px;
    background: #fff; /* keep white so shadow is visible */
    color: black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important; /* strong default shadow */
}
.value-card p{
  font-size: 18px;
   color: rgb(32, 32, 32);
}
.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important; /* stronger on hover */
}

/* .value-card:nth-child(1) { background: linear-gradient(135deg, hsl(240, 7%, 65%)); }
.value-card:nth-child(2) { background: linear-gradient(135deg, #81dfa3); }
.value-card:nth-child(3) { background: linear-gradient(135deg, #e9a573); }
.value-card:nth-child(4) { background: linear-gradient(135deg, #70b7d7); }
.value-card:nth-child(5) { background: linear-gradient(135deg, #e0c571); }
.value-card:nth-child(6) { background: linear-gradient(135deg, #e873ae); } */

        .card p {
          font-size: 18px;
          color: rgb(32, 32, 32);
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        h2 {
            color: #4f46e5;
            margin-bottom: 20px;
            border-bottom: 3px solid #4f46e5;
            padding-bottom: 10px;
            font-weight: bold;
        }
        @media (max-width: 768px) {
  h2 {
    text-align: center;
    
  }
 /* .company_overview_section p {
    justify-content: center;
    align-items: center;
  } */
}
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
            padding-left: 20px;
            padding-right: 20px;
        }
        .card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
       
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 40px 0;
            text-align: center;
            padding-left: 20px;
            padding-right: 20px;
        }
        .stat-item {
 color: rgb(32, 32, 32);
     padding: 30px 20px;
    border-radius: 15px;
    font-size: 20px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.25),  /* deep main shadow */
        0 4px 10px rgba(0, 0, 0, 0.15);  /* softer secondary shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-10px); /* lift upwards */
  box-shadow: 
      0 12px 25px rgba(0, 0, 0, 0.3), 
      0 6px 15px rgba(0, 0, 0, 0.2); /* stronger shadow */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffd700; 
}
/* First stat */
.stat-item:nth-child(1) .stat-number {
    color: #ff4757; /* red */
}

/* Second stat */
.stat-item:nth-child(2) .stat-number {
    color: #1e90ff; /* blue */
}

/* Third stat */
.stat-item:nth-child(3) .stat-number {
    color: #2ed573; /* green */
}

/* Fourth stat */
.stat-item:nth-child(4) .stat-number {
    color: #ffa502; /* orange */
}

       
        .team-section {
            margin: 50px 0;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .team-member {
            text-align: center;
            background: #f8fafc;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .value-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid white;
        }
 .faq-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 
                0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #4f46e5;
    margin-bottom: 30px;
    text-align: start;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

/* Question Row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background: radial-gradient(circle, #1a3d8f 0%, #071a3a 100%);
}

/* Arrow icon */
.faq-toggle {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/* Answer hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 18px;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 20px;
}


        


        /* footer-section */
.footer {
  /* background-color: #03042c; */
        background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  scroll-margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align:start;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-left: 40px;
}

.footer-logo {
  width: 150px;
}

.footer p {
  color: #ccc;
  margin: 15px 0;
  line-height: 1.5;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}
.social-links {
    justify-content: start;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: background 0.3s;
  margin-left: 0px;
}

.social-links a:hover {
  background: #00b894;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px; /* Added padding for breathing room */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Nice separation line */
  font-size: 14px;
  color: #fff;
  flex-wrap: wrap; /* Responsive stacking if needed */
  margin-top: 50px;
}

.footer-bottom-left {
  margin-bottom: 5px;
  margin-top: 30px;
}
.footer-bottom-right {
  margin-top: 30px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-left a {
  color: #00d1b2;
  text-decoration: none;
}

.footer-bottom-left a:hover {
  text-decoration: underline;
}


        
         /* navbar */
@media (max-width: 767.98px){
  .navbar .container-fluid{ display: flex; align-items: center; }
  .navbar-brand{ margin-right: 0; flex: 0 0 auto; }
  .navbar-toggler{ margin-left: auto; } /* pushes to right edge */
}
/* footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    margin: 10px 0;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 20px;  /* much smaller padding on mobile */
    border-radius: 8px;
  }

}

@media (max-width: 768px) {
  .mission-vision, .stats, .team-grid, .values-grid {
    grid-template-columns: 1fr;
    }
  h1 {
  font-size: 2rem;
  }
  p {
    font-size: 1rem;
    /* text-align: justify;   */
    text-justify: inter-word; /* makes spacing cleaner */
  }
 }
