header {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 40px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
header p:hover {
  transform: scale(1.06);
  cursor: pointer;
}

body {
  background: #f4f6f9;
  font-family: "Montserrat", sans-serif !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  color: black;
  font-family: "Montserrat", sans-serif !important;
}

/* Logo */
.logo img{
  height: 60px;                 /* Adjust size to fit your design */
  width: 60px;
  border-radius: 50%;           /* Makes it perfectly round */
  
  box-shadow:
    0 0 20px rgba(0, 255, 200, 0.3),
    0 0 40px rgba(80, 80, 255, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  padding: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
  object-fit: cover;
}

.logo img:hover {
  transform: scale(1.08); 
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.6),
    0 0 60px rgba(0, 200, 255, 0.4),
    0 0 100px rgba(0, 255, 150, 0.2);
  filter: brightness(1.15);
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0px) scale(1);
    box-shadow:
      0 0 20px rgba(0, 255, 200, 0.3),
      0 0 40px rgba(80, 80, 255, 0.25);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
      0 0 25px rgba(0, 255, 255, 0.5),
      0 0 60px rgba(0, 200, 255, 0.4);
  }
}

/* Apply floating effect continuously */
.nav-logo {
  animation: floatGlow 4s ease-in-out infinite;
}


/* Navbar Links */
.nav-links {
  display: flex;
  gap: 25px;
}


.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 1em;
  font-weight: 508;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #007bff;
  transform: scale(1.06);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle:hover {
  transform: scale(1.2);
}

.menu-toggle span {
  background-color: #333;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .nav-links.active {
    max-height: 300px;
    opacity: 1;
  }
}
/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background: linear-gradient(135deg, #f8fbff, #e9f1ff);
  min-height: 90vh;
  gap: 50px;
  font-family: "Montserrat", sans-serif !important;
}

.hero-text {
  max-width: 550px;
  font-family: "Montserrat", sans-serif !important;
}

.hero-text h1 {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.hero-text h1 span {
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif !important;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif !important;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056d2;
  animation: float 2s ease-in-out infinite;
}

.btn-secondary {
  border: 2px solid #007bff;
  color: #007bff;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #007bff;
  color: #fff;
  animation: float 2s ease-in-out infinite;
}

.hero-image img {
  width: 700px;
  height: 400px;
  max-width: 100%;
  border-radius: 20%;
  box-shadow:
    0 0 20px rgba(0, 255, 200, 0.3),
    0 0 40px rgba(80, 80, 255, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  padding: 5px;
  animation: float 2.5s ease-in-out infinite;
  transition: all 0.5s ease;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    margin-top: 40px;
  }
}
.row {
  padding: 10px;
  font-family: "Montserrat", sans-serif !important;
}

.row p {
  font-weight: 500;
  font-size: 16px;
  font-family: "Montserrat", sans-serif !important;
}
.row img {
  width: 600px;
  height: 350px;
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

section body {
  background: #007bff;
  color: #fff;
}

section {
  padding: 80px 10%;
  text-align: center;
}

h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: #f3f3f3;
  color: #222;
  padding: 40px 25px;
  border-radius: 40px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  background: #e6f5ea;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 30px;
  color: #007bff;
}

.service-box h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
}

.service-box p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
/* */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Wavy header section */
.wave-header {
  position: relative;
  background: linear-gradient(#007bff);
  height: 150px;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}

/* Main section container */
.abou {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 8%;
  background: #fff;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 550px;
  font-family: "Montserrat", sans-serif !important;
  max-width: 600px;
}

.text-content h4 {
  color: #007bff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.text-content h1 {
  color: #222;
  font-family: "Montserrat", sans-serif !important;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-content p {
  font-size: 16px;
  color: #444;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 18px;
  text-align: justify;
}

.text-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
}

.text-content a:hover {
  text-decoration: underline;
}

/* Right-side logo/image */
.image-content {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  section {
    flex-direction: column;
    text-align: left;
    padding: 60px 5%;
  }

  .image-content {
    margin-top: 40px;
  }
}

.testimonials {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  font-family: "Montserrat", sans-serif !important;
}

.testimonials h2 {
  font-size: 2.3rem;
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

/* Flex Container */
.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Each Card */
.testimonial-card {
  background: #f3f3f3;
  border-radius: 19px;

  padding: 30px 25px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Profile Picture */
.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007bff;
  margin-bottom: 20px;
}

/* Feedback Text */
.feedback {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif !important;
}

/* Name and Title */
.testimonial-card h4 {
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  font-weight: 700;
}

.testimonial-card span {
  font-family: "Montserrat", sans-serif !important;
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 3px;
}

/* See More Button */
.see-more {
  display: inline-block;
  padding: 12px 25px;
  background: #e8e8e8;
  color: #007bff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.see-more:hover {
  background: #f0f0f0;
  transform: scale(1.04);
}

#wave-header {
  text-align: center;
  margin-bottom: 5px;
  padding: 170px 10px 80px;
  height: 500px;
  position: relative;
  background: linear-gradient(to right, #040404, #007bff);
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  font-family: "Montserrat", sans-serif;
}
h1 strong {
  font-size: 3.4rem;
  padding-top: 260px;
  color: white;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #f3f3f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: #b5d5f7;
}

img {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 25px;
  font-family: "Montserrat", sans-serif !important;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c3e50;
  font-family: "Montserrat", sans-serif !important;
}

.card p {
  color: #666;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: #95a5a6;
  font-size: 0.9rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.btn {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #2980b9;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/*          Hero Section       */
#hero {
  background: linear-gradient(to right, #040404, #007bff);
  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

#hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

#text-left {
  flex: 1;
  min-width: 300px;
  font-family: "Montserrat", sans-serif !important;
}

#text-left1 #intro {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1.2rem;
  color: #d1f7d6;
  margin-bottom: 10px;
}

#text-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-left: -19px;
  color: #e0ffe8;
  font-family: "Montserrat", sans-serif !important;
}

#text-right {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0ffe8;
  font-family: "Montserrat", sans-serif !important;
}

/*          Hero Section 2      */
#hero1 {
  background: linear-gradient(to right, #040404, #007bff);
  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

#hero-content1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

#text-left1 {
  flex: 1;
  min-width: 300px;
}

#text-left #intro {
  font-size: 1.2rem;
  color: #d1f7d6;
  margin-bottom: 10px;
}

#text-left1 h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-left: -19px;
  color: #e0ffe8;
}

#text-right1 {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0ffe8;
  font-family: "Montserrat", sans-serif !important;
}

/* === BLOG SECTION === */
.section-header {
  text-align: center;
  margin: 60px 0 40px;
  margin-top: -40px;
  font-family: "Montserrat", sans-serif !important;
}

.section-header h3 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  margin-bottom: 10px;
}

.section-header p {
  font-family: "Montserrat", sans-serif !important;
  color: #666;
  font-size: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #f3f3f3;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.floating-views {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: rgba(255, 255, 255, 0.85);
  color: #007bff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  font-family: "Montserrat", sans-serif !important;
  transition: transform 0.3s;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  display: inline-block;
  background-color: #e6f9ee;
  color: #007bff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-content h4 {
  font-size: 1.3rem;
  color: #007bff;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.blog-content p {
  font-size: 1rem;
  color: #555;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 15px;
}

.blog-content .read-more {
  color: #007bff;
  font-family: "Montserrat", sans-serif !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-content .read-more:hover {
  color: #007bff;
}

.blog-content h4:hover {
  color: #007bff;
}

.reactions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.reactions button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #444;
  transition: color 0.3s;
}

.reactions button:hover {
  color: #0b4d00;
}

.reactions .liked {
  color: #1fa857;
  transform: scale(1.1);
}

/* CONTACT SECTION */
#contact-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 100px 0;
  background-color: #fff;
}

#container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

/* LEFT INFO SIDE */
#contact-info {
  flex: 1;
  border-radius: 16px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contact-info h4 {
  font-size: 1.1rem;
  color: #007bff;
}
#contact-info h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-info p {
  margin-bottom: 30px;
}

#info-item {
  margin-bottom: 20px;
}

#info-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

#info-item p {
  font-size: 0.95rem;
}

/* RIGHT FORM BOX */
#contact-form-box {
  flex: 1.2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 60px 50px;
}

#contact-form-box h2 {
  font-size: 2rem;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  background: #fafafa;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #007bff;
  background: #fff;
  outline: none;
}

textarea {
  resize: none;
}

#btn-submit {
  display: inline-block;
  padding: 12px 25px;
  background: #e8e8e8;
  color: #007bff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

#btn-submit:hover {
  background: #f0f0f0;
  transform: scale(1.04);
}

/* MAP SECTION */
#map-section {
  margin-top: 80px;
  width: 100%;
  border-top: 4px solid #007bff;
}

iframe {
  display: block;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #fff;
  gap: 50px;
  margin-top: -70px;
}

.about-text {
  flex: 1 1 500px;
  font-family: "Montserrat", sans-serif;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  color: #007bff;
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

/* Mission & Vision */
.mission-vision {
  background: #f3f7f4;
  text-align: center;
  padding: 80px 10%;
}

.mission-vision h2 {
  color: #007bff;
  font-size: 30px;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mv-box h3 {
  color: #007bff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 22px;
  margin-bottom: 10px;
}

.mv-box p {
  color: #555;
  font-size: 15px;
  font-family: "Montserrat", sans-serif !important;
}

/* Core Values */
.values-section {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.values-section h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  font-size: 30px;
  margin-bottom: 40px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-box {
  background: #f3f7f4;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box h4 {
  color: #007bff;
  font-family: "Montserrat", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
}

.value-box p {
  color: #555;
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px;
}

/*             By the Numbers          */
.stats-section {
  background: linear-gradient(to right, #040404, #007bff);
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.stats-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
}

.stats-section p.subtext {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif !important;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 20px;
  transition:
    transform 0.3s,
    background 0.3s;
  font-family: "Montserrat", sans-serif !important;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif !important;
}

.stat-label {
  font-size: 16px;
  color: #f2f2f2;
  font-family: "Montserrat", sans-serif !important;
}

/* Team Culture */
.team-section {
  background: #fff;
  padding: 80px 10%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 55px;
}

.team-image {
  flex: 1 1 400px;
}

.team-image img {
  width: 100%;
  height: 330px;
  border-radius: 15px;
  animation: float 3s ease-in-out infinite;
  box-shadow:
    0 0 20px rgba(0, 255, 200, 0.3),
    0 0 40px rgba(80, 80, 255, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  padding: 5px;
  transition: all 0.5s ease;
  object-fit: cover;
}

.team-text {
  flex: 1 1 500px;
}

.team-text h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  font-size: 30px;
  margin-bottom: 15px;
}

.team-text p {
  font-family: "Montserrat", sans-serif !important;
  color: #555;
  margin-bottom: 12px;
}

/* Section */
.start-section {
  padding: 80px 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  background: #fff;
}

.info {
  flex: 1 1 400px;
}

.info h2 {
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  font-size: 32px;
  margin-bottom: 20px;
}

.info p {
  font-family: "Montserrat", sans-serif !important;
  color: #555;
  margin-bottom: 15px;
  font-size: 16px;
}

.info ul {
  font-family: "Montserrat", sans-serif !important;
  margin-top: 15px;
  list-style: none;
}

.info ul li {
  font-family: "Montserrat", sans-serif !important;
  margin: 10px 0;
  color: #007bff;
  font-weight: 500;
}

/* Form */
.form-box {
  flex: 1 1 500px;
  background: #f3f7f4;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-box h3 {
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
  color: #007bff;
  font-size: 24px;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Montserrat", sans-serif !important;
}

input,
select,
textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
}

textarea {
  resize: none;
  min-height: 120px;
  font-family: "Montserrat", sans-serif !important;
}

@media (max-width: 900px) {
  .start-section {
    flex-direction: column;
    text-align: center;
  }

  .form-box {
    padding: 30px 20px;
  }
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #040404, #001e3e);
  z-index: 9999;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Typing Text */
.typing-text {
  position: relative;
  z-index: 5;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  border-right: 3px solid linear-gradient(135deg, #040404, #001e3e);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation:
    typing 3s steps(27) 0.5s forwards,
    blink 0.7s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 255px;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.loading-text {
  z-index: 5;
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #b8c6ff;
  animation: fade 1.2s ease-in-out infinite alternate;
}

@keyframes fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

/* FOOTER */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* blue Top Banner */
.footer-banner {
  background: #007bff;
  text-align: center;
  padding: 15px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 650;
  color: white;
  margin-bottom: -50px;
  padding-top: 20px;
  font-size: 1rem;
}

.footer-banner a {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  text-decoration: none;
}

/* Footer Base */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 80px 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Columns */
.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  font-family: "Montserrat", sans-serif !important;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  font-family: "Montserrat", sans-serif !important;
  list-style: none;
}

.footer-col ul li {
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #007bff;
}

/* Logo & About */
.footer-col.about {
  flex: 1.5;
}

.footer-col.about p {
  margin: 15px 0;
  line-height: 1.6;
  color: #bbb;
}

/* Contact Info */
.contact-info {
  list-style: none;
  margin-top: 10px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #007bff;
}

/* Social Icons */
.socials {
  margin-top: 10px;
}

.socials a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.socials a:hover {
  color: #007bff;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  color: #888;
  font-size: 0.9rem;
}
/* Footer Note */
.footer-note {
  margin-top: 20px;
  text-align: center;
  padding-top: 15px;
  color: #888;
  font-size: 0.9rem;
}

.footer-note a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.footer-note a:hover {
  text-decoration: underline;
}
