* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --secondary-color: #9333ea;
    --accent-color: #facc15;
    --background-color: #f9fafb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navbar Base === */
.navbar {
  position: fixed;
  top: 0;
  padding-top: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 10px 12px rgba(0, 0, 1, 0.25); 
}


.navbar.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === Container === */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Logo === */
.logo-img {
  height: 64px;
  width: auto;
  display: inline-block;
}

/* === Desktop Menu === */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu li {
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #374151;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

/* Active Link Style */
.nav-link.active,
.mobile-link.active {
  color: #2563eb; /* Blue color for active link */
  border-bottom: 2px solid #2563eb; /* Blue underline */
  font-weight: 600;
}

/* Hover effect */
.nav-link:hover,
.mobile-link:hover {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  transition: all 0.3s ease;
}


/* === Mobile Toggle === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #111;
}

/* === Mobile Menu === */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-link {
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 500;
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link:hover {
  color: #2563eb;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* subtle dark overlay only */
    z-index: 2;
}


.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
    color: var(--text-color);
    border: none;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 2, 20,5 );
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(250, 204, 21, 0.5);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.hero-button:hover .arrow-icon {
    transform: translateX(3px);
}

.subscriber-count {
    margin-top: 3rem;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.life-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-wrapper {
    margin-bottom: 1rem;
}

.cards-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cards-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-culture {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
    border-left: 5px solid var(--primary-color);
}

.card-diversity {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    border-left: 5px solid var(--accent-color);
}

.card-learning {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-left: 5px solid var(--secondary-color);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* General Footer Styling */
.footer {
  background-color: #111827;
  color: white;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}


/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.company h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight {
  color: #60a5fa;
}

.company p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Social Icons */
.socials {
  margin-top: 15px;
  display: flex;
  gap: 14px;
}

.socials a {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background: #ffffff17;
  color: #fff;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
  text-decoration: none !important;   /* 🔥 removes underline */
  border: none;
  outline: none;
}

.socials a:hover {
  transform: scale(1.12);
  background: #00a6ff;
  color: #fff;
}

/* Services */
.services {
  background: transparent; /* removed white background */
}

.services h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 6px 0;
}

.services a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.services a:hover {
  color: #ffffff;
}

/* Bottom Bar */
.bottom {
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;      /* centers vertically */
  height: 60px;             /* optional: adjust for spacing */
}




/* Responsive */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 0.75rem 2rem;
        display: block;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .life-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-wrapper {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cards-heading {
        font-size: 1.3rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}


/* new section for transform idea into digital solution section section */

/* ================= CTA Banner ================= */
.cta-banner {
  background: linear-gradient(135deg, #08002e, #001f5c, #003a86);
  padding: 80px 20px;
  text-align: center;
  color: white;
  border-bottom: 3px solid #00eaff;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.55), /* bottom shadow */
                0 -15px 30px rgba(0, 0, 0, 0.50); /* top shadow */
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 238, 255, 0.5);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: .35s;
}

/* Different button themes */
.cta-btn.quote {
  background: #00eaff;
  color: #001433;
  box-shadow: 0 0 15px #00eaff;
}
.cta-btn.contact {
  background: transparent;
  border: 2px solid #00eaff;
  color: white;
}
.cta-btn.services {
  background: #ffa700;
  color: #291600;
  box-shadow: 0 0 15px rgba(255,167,0,.6);
}

/* Hover animation */
.cta-btn:hover {
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 0 18px rgba(0, 238, 255, 0.7);
}
.cta-btn.contact:hover {
  background: #00eaff;
  color: #001433;
}
/* ================= CTA Banner ================= */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #08002e, #001f5c, #003a86);
  padding: 80px 20px;
  text-align: center;
  color: white;
  border-bottom: 3px solid #00eaff;
  overflow: hidden; /* important */
}

/* Left diagonal edge */
.cta-banner::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 100px;
  height: 100%;
  background: inherit;
  transform: skewX(-10deg);
  transform-origin: left top;
}

/* Right diagonal edge */
.cta-banner::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 100px;
  height: 100%;
  background: inherit;
  transform: skewX(-10deg);
  transform-origin: right top;
}
@media (max-width: 768px) {
  .cta-banner::before,
  .cta-banner::after {
    width: 70px;
    left: -35px;
    right: -35px;
  }
}



/* ================= Core Services ================= */
.services-section {
  padding: 70px 0;
  background: #f4f8ff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #0c0a27;
  margin-bottom: 35px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  width: 90%;
  margin: auto;
}

.service-card {
  background: white;
  padding: 28px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #e9f6ff;
  box-shadow: 0 10px 26px rgba(0,0,0,.11);
}

/* ================= Why Choose Us ================= */
.choose-section {
  padding: 70px 0;
}

.choose-list {
  width: 90%;
  max-width: 780px;
  margin: 30px auto 0;
  list-style: none;
  font-size: 20px;
  line-height: 1.9;
  color: #1b1b1b;
}

.choose-list li {
  background: white;
  padding: 14px 22px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  transition: .3s;
}

.choose-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 7px 20px rgba(0,0,0,.08);
}

/* ================= Responsive ================= */
@media(max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 700px) {
  .cta-title {
    font-size: 28px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    font-size: 18px;
  }
}

/* new css for contact icon */

    /* WhatsApp Floating Button */
/* ================= WhatsApp Floating Button ================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 22px;
    right: 22px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 0;               /* hidden by default */
    pointer-events: none;     /* disable clicks */
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Show button after page load */
.whatsapp-float.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* ================= Expandable Contact Menu ================= */
.contact-menu {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
    opacity: 0;               /* hidden initially */
    pointer-events: none;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

/* Show menu after page load */
.contact-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Main chat button */
.contact-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    font-size: 30px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-main:hover {
    transform: scale(1.1);
}

/* Options container */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show options on toggle */
.contact-menu.active .contact-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Individual contact item */
.contact-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s;
     text-decoration: none; 
}

/* Colors for each item */
.contact-item.whatsapp { background: #25D366; }
.contact-item.phone    { background: #007bff; }
.contact-item.email    { background: #ff5e5e; }

.contact-item:hover {
    transform: scale(1.15);
}


      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }



