* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f6f8fb;
  color: #222;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
}

.navbar a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.3s ease;
}


  /* .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        } */

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        } */

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #00d4ff;
        }

      .hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2d3748;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
            color: rgb(116, 113, 113);
            padding: 120px 5% 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
             color: #0a2540
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            opacity: 0.9;
            
        }

      
        .services-section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
              color: #0a2540;
            background: linear-gradient(135deg, #61c5da, #043d50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            
           
        }

        .section-title p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
        }

        /* .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        } */
         .service-icon img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    
}

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a202c;
            text-align: center;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #4a5568;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-features li i {
            color: #00d4ff;
            width: 16px;
        }

        .service-cta {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 80px 5%;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            color: #64748b;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #125da8 0%, #1e3a8a 100%);
            color: white;
            padding: 100px 5%;
            text-align: center;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 14px 36px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #0a2540;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #0a2540;
            color: white;
            padding: 60px 5% 20px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #00d4ff;
        }

        .footer-section a {
            color: #cbd5e0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1e3a8a;
            color: #a0aec0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

           

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero, .services-section, .cta-section {
                padding-left: 5%;
                padding-right: 5%;
            }
        }
.logo {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.logo span {
  color: #0052cc;
}
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

.nav-links a:hover {
  color: #0052cc;
}

/* HERO */
.heroo {
  padding: 80px 40px;
  background: linear-gradient(to right, #0052cc, #003d99);
  color: white;
  text-align: center;
}

.heroo h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.heroo p {
  font-size: 16px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 60px 40px;
  max-width: 2400px;
  margin: auto;
  background-color: #d6eef8
  ;
}
.section.light-bg {
  position: relative;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
   background-color: #d6eef8;
  text-align: center;
}
.section {
  padding: 80px 20px;
  text-align: center;
}

.light-bg {
  background: #f6f8fb;
}

.section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

/* Cards layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Card base */
.card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 14px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: #2563eb; /* premium blue */
}

/* Title */
.card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

/* Description */
.card p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 768px) {
  .section h2 {
    font-size: 28px;
  }
  
  .card {
    padding: 30px 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section {
    padding: 60px 15px;
  }

  .section h2 {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 15px;
  }
}


.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}


button {
  border: none;
  cursor: pointer;
}

/* SUPPORT SECTION */
.support-section {
  padding: 70px 20px;
  background: #ffffff;
}

.support-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.support-left h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.support-left p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.primary-btn {
  background: #0a4fa3;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
}

/* RIGHT FEATURES */
.support-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-item img {
  width: 45px;
  height: 45px;
}

.support-item h4 {
  font-size: 1.1rem;
}

.support-item span {
  font-size: 0.95rem;
  color: #666;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: #e9f7fb;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.secondary-btn {
  background: #0a4fa3;
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 1rem;
}

.trust-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fdff, #eef8ff);
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* TOP LAYOUT */
.trust-top {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
}

/* IMAGES */
.trust-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 20px;
  object-fit: cover;
}

/* HEADING */
.trust-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

/* WHO WE ARE */
.who-we-are {
  max-width: 900px;
  margin: 0 auto;
}

.label {
  display: inline-block;
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.who-we-are h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blue {
  color: #0077cc;
  font-weight: 600;
}

.highlight {
  font-size: 1.05rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
}

.description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-image img {
    max-width: 220px;
    margin: 0 auto;
  }

  .trust-heading h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .trust-heading h1 {
    font-size: 1.9rem;
  }

  .who-we-are h2 {
    font-size: 1.5rem;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .support-container,
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-right {
    align-items: center;
  }

  .support-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .support-left h2,
  .about-content h2 {
    font-size: 1.9rem;
  }
}


/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.hero-dots span.active {
    background: #fff;
}

.card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 30px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937; /* dark slate */
  line-height: 1.4;
}

.card p {
  font-size: 0.95rem;
  color: #4b5563; /* soft gray */
  font-weight: 400;
  line-height: 1.6;
}


/* CONTACT */
.contact-form {
  max-width: 420px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0052cc;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.footer {
  background: #0a1a2f;
  color: #ffffff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-col h3 span {
  color: #4da3ff;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #cfd8e3;
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

.footer-col a:hover {
  color: #4da3ff;
}

.footer-quick-links,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-columns {
  display: contents;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #b5c3d6;
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-quick-links,
  .footer-services {
    padding-left: 0;
    align-items: flex-start;
  }

  .footer-link-columns {
    display: flex;
    gap: 1.5rem;
  }

  .footer-link-columns .footer-col {
    flex: 1;
  }
}
.light-bg {
  background: #ffffff;
}

.cta-section {
  background: linear-gradient(to right, #0052cc, #003d99);
  color: white;
  text-align: center;
  padding: 70px 30px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #0052cc;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #f1f1f1;
}
/* =========================
   HERO SECTION
========================= */

.hero {
    background: linear-gradient(90deg, #cfefff 0%, #f4fbff 100%);
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* FEATURES */
.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111;
}

.feature img {
    width: 32px;
}

.feature.highlight span {
    
    color: #0f0e0e;
    padding: 6px 12px;
    border-radius: 6px;
}

/* BUTTON */
.hero-btn {
    background: #0b5ed7;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #084298;
}

/* RIGHT IMAGE */
.hero-image {
    background: #0b3b8c;
    padding: 20px;
    border-radius: 16px;
}

.hero-image img {
    max-width: 320px;
    display: block;
}

/* ---------- VISION SECTION ---------- */
.vision-section {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.vision-section h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #111827;
}

.vision-text {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Flow Layout */
.vision-flow {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  align-items: center;
}

.vision-box {
  padding: 30px 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
}

.tech {
  background: #d9f5ff;
  color: #0284c7;
}

.innovate {
  background: #eef5ff;
  color: #1d4ed8;
}

.partner {
  background: #e8faf5;
  color: #0f766e;
}

.result {
  background: #fff3db;
  color: #d97706;
}

/* Center Logo */
.vision-center {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  border: 2px solid #cfe9ff;
}

.vision-center img {
  max-width: 140px;
}

/* ---------- VALUES SECTION ---------- */
.values-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f5fbff, #ffffff);
  text-align: center;
}

.values-section h2 {
  font-size: 2.3rem;
  color: #111827;
  margin-bottom: 10px;
}

.values-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 60px;
}

/* Values Grid */
.values-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.value-card img {
  width: 60px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.group-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.group-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #111827;
}

/* GRID */
.group-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD */
.group-card {
  background: #eaf8ff;
  padding: 30px;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.group-card:hover {
  background: #ffffff;
  border-color: #0077cc;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* LOGO */
.logo-box {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.logo-box img {
  max-width: 80%;
}

/* TEXT */
.group-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #111827;
}

.group-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #0b5cab;
  color: #ffffff;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 10px;
}

.btn:hover {
  background: #084a8f;
}

/* READ MORE */
.read-more {
  display: block;
  font-size: 0.85rem;
  color: #111827;
  text-decoration: underline;
}
.contact-section {
  padding: 80px 20px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.contact-info img {
  width: 100%;
  max-width: 420px;
  border-radius: 10%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .contact-info img {
    max-width: 100%;
    border-radius: 6%;
  }
}
@media (max-width: 768px) {
 .contact-info img {
    max-width: 345px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8%;
    object-fit: cover;
    display: none;
}
}


/* CONTAINER */
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* LEFT */
.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #0a2540;
  font-weight: 500;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-item {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500
}

/* RIGHT */
.contact-form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #0a2540;
}
.contact-info{

}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: #0052cc;
}


/* BUTTON */
.contact-form-box button {
  width: 100%;
  padding: 14px;
  background: #0052cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  background: #003d99;
}
.error {
  color: #e63946;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

input.error-border,
textarea.error-border {
  border-color: #e63946;
}

.success-msg {
  display: none;
  margin-top: 15px;
  color: green;
  font-weight: 600;
}


@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 21px;
  }
}

@media (max-width: 480px) {
  .group-card {
    padding: 24px;
  }

  .group-title {
    font-size: 2rem;
  }
}



@media (max-width: 900px) {
  .vision-flow {
    grid-template-columns: 1fr;
  }

  .vision-box,
  .vision-center {
    max-width: 300px;
    margin: auto;
  }
}




@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image img {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }
}



@media (max-width: 600px) {
  .footer-container {
    padding: 0 20px 30px;
  }

  .footer {
    text-align: center;
  }
}



@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}
