* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: #0a1f44;
    padding: 20px 0;
}

.logo {
    color: #fff;
    font-size: 24px;
}

.logo span {
    color: #00cfff;
}

.header nav {
    float: right;
}

.header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(to right, #0a1f44, #003f6b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

/* Button */
.btn {
    background: #00cfff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn.dark {
    background: #0a1f44;
    color: #fff;
}

/* Sections */
section {
    padding: 60px 0;
}

.about, .why-us {
    background: #f5f7fa;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Why Us */
.why-us ul {
    list-style: none;
    margin-top: 20px;
}

.why-us li {
    margin-bottom: 10px;
}

/* CTA */
.cta {
    background: #00cfff;
    text-align: center;
}

/* Footer */
.footer {
    background: #0a1f44;
    color: #fff;
    text-align: center;
    padding: 15px;
}
/* Contact Page */
.hero.small {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-info a {
    color: #00cfff;
    text-decoration: none;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    padding: 14px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* Services Page */
.services-page .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.services-page .service-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.services-page .service-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #00cfff;
}

.services-page .service-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}
/* About Page */
.about-section, .mission-vision, .values, .team {
    padding: 60px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mission-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.values ul {
    list-style: none;
    margin-top: 20px;
}

.values li {
    margin-bottom: 10px;
}

/* Solutions Page */
.solutions-page .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.solutions-page .solution-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions-page .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.solutions-page .solution-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #00cfff;
}

.solutions-page .solution-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}
/* Fade-in + slide-up effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover animation */
.service-card:hover,
.solution-card:hover,
.mission-card:hover,
.team-member:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Button hover glow */
.btn:hover {
    box-shadow: 0 0 15px #00cfff, 0 0 25px #00cfff33;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Staggered delay for cards */
.service-card:nth-child(1), .solution-card:nth-child(1), .mission-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2), .solution-card:nth-child(2), .mission-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3), .solution-card:nth-child(3), .mission-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4), .solution-card:nth-child(4), .mission-card:nth-child(4) { transition-delay: 0.4s; }

/* Team members fade-in */
.team-member {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

/* Hero small sections */
.hero.fade-in {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Smooth scroll for menu */
html {
    scroll-behavior: smooth;
}
.team {
  padding: 80px 0;
  background-color: #f8f9fc;
}

.team h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
