 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            /* Add margin to prevent content hiding under fixed header */
            margin-top: 70px;
            /* Prevent horizontal scrolling on mobile */
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            color: rgb(1, 1, 38);
            background-color: white;
            padding: 0.75rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            /* Ensure header stays above all content */
            height: auto;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
            width: 100%;
            box-sizing: border-box;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 60px;
            width: auto;
            max-width: 250px;
            
 
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: rgb(1, 1, 38);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            color:  rgb(33, 139, 189);
            /* background-color:  rgb(33, 139, 189); */
        }

        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown a {
            display: block;
            padding: 0.75rem 1rem;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }

        .dropdown a:hover {
            background-color: #f8f9fa;
            color:  rgb(33, 139, 189);
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: rgb(1, 1, 38);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1002;
            /* Ensure button is always clickable on mobile */
        }

        /* Hero Section */
        .hero {
            background-color:  rgb(1, 1, 38);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 0 150px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            margin: 0 auto;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            /* grid-template-columns: 1fr 1fr; */
            gap: 6rem;
            align-items: center;
            text-align: left;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-text {
            padding-right: 2rem;
            padding: 30px;
            width: 50%;
        }

        .hero-image {
            display: flex;
            justify-content: right;
            text-align: right;
            align-items:center;
        }

        .hero-image img {
            max-width:500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            padding: 5px;

        }

        .hero-image img:hover {
            transform: scale(1.05);
        }

        .hero h1 {
            text-align: left;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background:white;
            color:  rgb(33, 139, 189);
            padding:10px;
            text-decoration: none;
            font-size: 16px;
            border-radius:10px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
            margin-left: 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,107,107,0.3);
        }
        .hero-btns{
            display: flex;
        }

    

/* ======= Background Slider Styles ======= */

.bg-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each slide uses background-image to cover and stay centered */
.slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

/* Active slide visible */
.slide.active {
  opacity: 1;
}

/* Dark overlay to improve text contrast */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
  pointer-events: none;
}

/* Centered content */
.hero-center {
  position: relative;
  z-index: 5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

/* Heading / subtitle sizing */
.hero-center h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.hero-center p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 0;
  max-width: 900px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* CTA */
.cta-button {
  display: inline-block;
  background: rgb(33, 139, 189);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(131, 171, 208, 0.938); }

/* Small slider controls (optional visual bullets) */
.slider-controls {
  position: absolute;
  z-index: 6;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 8px;
}
.slider-controls button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.slider-controls button.active {
  background: #fff;
}

/* Responsive adjustments */
@media (max-height: 500px) {
  .hero-center { padding: 1rem; }
  .hero-center h1 { font-size: 1.6rem; }
}

        /* Choose Grid - Why Choose Us Section */
        .choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            width: 100%;
            box-sizing: border-box;
            
        }

        .choose-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: auto;
        }

        .choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .choose-card h3 {
            font-size: 1.2rem;
            margin: 1rem 0 0.75rem;
            color: #01012b;
        }

        .choose-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }


        /* Sections */
        .section {
            padding: 80px 1.5rem;
            width: 100%;
            box-sizing: border-box;
            color: rgb(1, 1, 38);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
            box-sizing: border-box;
        }
/* section headers */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
            word-break: break-word;
        }

        /* For sections with dark dark backgrounds */
        .section-title-team,.section-title-services {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: white;
            word-break: break-word;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            text-align: right;
            border-radius: 10px;
        }

        .placeholder-image {
            max-width: 31.25rem;
            width: 100%;
            height: 300px;
            background: linear-gradient(45deg, #f0f2f5, #e1e8ed);
            border-radius: 10px;
            display: flex;
            align-items: left;
            justify-content: left;
            color: #666;
            font-size: 1.2rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 116, 217, 0.1), rgba(0, 31, 63, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        /* ================================================
           TOOLKIT SECTION STYLES
           ================================================ */

        .toolkit-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .toolkit-description {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .toolkit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .toolkit-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-top: 4px solid transparent;
            border-top-color: #0074d9;
        }

        .toolkit-card:nth-child(2) {
            border-top-color: rgb(1, 1, 38);
        }

        .toolkit-card:nth-child(3) {
            border-top-color: rgb(33, 139, 189);
        }

        .toolkit-card:nth-child(4) {
            border-top-color: rgb(33, 139, 189);
        }

        .toolkit-card:nth-child(5) {
            border-top-color:rgb(1, 1, 38);
        }

        .toolkit-card:nth-child(6) {
            border-top-color: rgb(33, 139, 189);
        }

        .toolkit-card:nth-child(7) {
            border-top-color: #34495e;
        }

        .toolkit-card:nth-child(8) {
            border-top-color: #e67e22;
        }

        .toolkit-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .toolkit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
            transition: transform 0.3s ease;
        }

        .toolkit-card:hover .toolkit-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .toolkit-card h3 {
            font-size: 1.3rem;
            color: #01012b;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .toolkit-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Contact Section Styles */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .contact-card p {
            color: #666;
            margin-bottom: 0.5rem;
        }

        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-form-container h3 {
            color: #333;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .submit-btn {
            background:  rgb(33, 139, 189);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 4rem 0 0;
            background-image:image-set(url(images/background.jpg));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            
        }

        .footer-section h3 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p {
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            background: #667eea;
            transform: translateY(-3px);
        }

        /* Footer Font Awesome icon styles (clean modern look + hover effects) */
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            color: #fff;
            text-decoration: none;
            transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
            font-size: 1.05rem;
        }

        .footer-social a i {
            pointer-events: none;
        }

        .footer-social a:hover {
            background: #67aef0;
            color: #ffffff;
            transform: translateY(-4px) scale(1.06);
        }

        /* Footer copyright adjustments */
        .footer-bottom-content p#copyright {
            margin: 0;
            color: #bdc3c7;
            font-size: 0.95rem;
        }

        .address-info p {
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 2rem 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgb(33, 139, 189);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgb(33, 139, 189);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        /* Mobile responsive for scroll-to-top */
        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
            }
        }

        /* ================================================
           WEB DEVELOPMENT PAGE HERO SECTION STYLING
           ================================================ */

        .web-hero {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        /* Enhanced overlay for better text contrast */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(1, 1, 38, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%); */
            z-index: 1;
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .hero-content-wrapper {
            color: white;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-content-wrapper h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .hero-content-wrapper .lead {
            font-size: 1.15rem;
            line-height: 1.6;
            color: #f0f0f0;
            margin-bottom: 2rem;
        }

        .cta-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 300px;
            width: 100%;
        }

        .visual-screens {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
            justify-content: center;
        }

        .screen {
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 8px;
            padding: 2rem;
            width: 150px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* ================================================
           RESPONSIVE DESIGN FOR WEB DEVELOPMENT PAGE
           ================================================ */

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 40px 15px;
            }

            .hero-content-wrapper h1 {
                font-size: 2rem;
            }

            .hero-content-wrapper .lead {
                font-size: 1rem;
            }

            .cta-row {
                gap: 0.75rem;
            }

            .visual-card {
                max-width: 100%;
            }

            .hero-visual {
                margin-top: 1rem;
            }
        }

        @media (max-width: 480px) {
            body {
                margin-top: 70px;
            }

            .web-hero {
                background-attachment: scroll;
            }

            .hero-overlay {
                background: linear-gradient(135deg, rgba(1, 1, 38, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 30px 12px;
            }

            .hero-content-wrapper h1 {
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }

            .hero-content-wrapper .lead {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .cta-row {
                gap: 0.5rem;
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .visual-screens {
                gap: 0.75rem;
            }

            .screen {
                width: 120px;
                height: 80px;
                padding: 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                margin-top: 60px;
            }

            header {
                padding: 0.5rem 0;
                z-index: 1001;
            }

            nav {
                padding: 0 1rem;
            }

            .mobile-menu-toggle {
                display: block;
                /* Visible and clickable on mobile */
            }

            .nav-menu {
                /* Position menu below fixed header */
                position: fixed;
                top: 60px;
                left: 0;
                width: 100vw;
                max-width: 100%;
                background-color: rgb(1, 1, 38);
                flex-direction: column;
                padding: 1.5rem 1rem;
                gap: 0;
                /* Hidden by default, shown when .active class is added */
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1000;
                max-height: calc(100vh - 60px);
                overflow-y: auto;;
            }

            .nav-menu.active {
                /* Show menu when active class is toggled */
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-item a{
                color: white;
            }

            .nav-link {
                color: white;
                padding: 1rem 0;
                display: block;
            }

            .nav-link:hover {
                background-color: rgba(255,255,255,0.15);
                color: #67aef0;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255,255,255,0.1);
                margin-top: 0.5rem;
            }

            .dropdown a {
                color: white;
                border-bottom-color: rgba(255,255,255,0.1);
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-text {
                padding-right: 0;
            }

            .hero-image {
                order: -1;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Why Choose Us - Choose Grid */
            .choose-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .choose-card {
                padding: 1.5rem 1rem;
            }

            .choose-card h3 {
                font-size: 1.1rem;
            }

            .choose-card p {
                font-size: 0.9rem;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin: 0 auto 0.75rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-section {
                padding: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }

            .toolkit-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .toolkit-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .toolkit-card {
                padding: 2rem 1.5rem;
            }

            .toolkit-icon {
                font-size: 2.5rem;
            }

            .toolkit-card h3 {
                font-size: 1.1rem;
            }

            .toolkit-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            body {
                overflow-x: hidden;
            }

            .section {
                padding: 50px 1rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .container {
                padding: 0 0.75rem;
            }

            /* Why Choose Us Section on Small Mobile */
            .choose-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                margin-top: 1.5rem;
            }

            .choose-card {
                padding: 1.2rem 1rem;
            }

            .choose-card h3 {
                font-size: 1rem;
                margin: 0.75rem 0 0.5rem;
            }

            .choose-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .service-icon {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
                margin: 0 auto 0.5rem;
            }

            .toolkit-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .toolkit-description {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .toolkit-card {
                padding: 1.5rem 1.2rem;
            }

            .toolkit-icon {
                font-size: 2rem;
            }

            .toolkit-card h3 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .toolkit-card p {
                font-size: 0.85rem;
            }

            .section {
                padding: 40px 0;
            }
            .container{
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
        }
        /* Web development page */
           :root{
      --bg:#f6f8fb;
      --card:#ffffff;
      --primary:#0b78ff;
      --muted:black;
      --accent:#06b6d4;
      --radius:12px;
      --container:1200px;
      --shadow: 0 6px 30px rgba(12,20,40,0.06);
      --glass: rgba(255,255,255,0.6);
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background:linear-gradient(180deg,var(--bg),#ffffff);
      color:#0f172a;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
      -webkit-text-size-adjust:100%;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;height:auto;display:block}

    /* =========================
       Layout
       ========================= */
    header.site-header{
      background:var(--card);
      position:sticky;
      top:0;
      z-index:120;
      border-bottom:1px solid rgba(15,23,42,0.04);
      backdrop-filter: blur(6px);
    }
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:600;
      font-size:1rem;
    }
    .brand img{width:40px;height:40px;border-radius:8px;object-fit:cover}
    nav.primary{
      display:flex;
      gap:18px;
      align-items:center;
    }
    .nav-link{
      color:var(--muted);
      font-weight:600;
      padding:8px 10px;
      border-radius:8px;
      transition:all .18s ease;
      font-size:0.95rem;
    }
    .nav-link:hover{background:rgba(11,120,255,0.06); color:var(--primary)}
    .cta-small{
      background:var(--primary);
      color:white;
      padding:8px 12px;
      border-radius:10px;
      font-weight:600;
      box-shadow:0 6px 18px rgba(11,120,255,0.12);
    }

    /* =========================
       Hero
       ========================= */
    .hero{
      padding:64px 0 40px;
      display:flex;
      align-items:center;
      gap:40px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1fr 420px;
      gap:40px;
      align-items:center
    }
    .hero h1{
      margin:0 0 12px;
      font-size:clamp(28px,4.8vw,44px);
      line-height:1.02;
      letter-spacing:-0.02em;
      color: white;
    }
    .hero p.lead{
      margin:0 0 20px;
      /* color:var(--muted); */
      max-width:54ch;
      font-size:1.05rem;
    }
    .hero .cta-row{display:flex; gap:12px; flex-wrap:wrap}
    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 16px;
      border-radius:12px;
      font-weight:700;
      cursor:pointer;
      border:0;
      transition:transform .14s ease, box-shadow .14s ease, opacity .14s ease;
    }
    .btn-primary{
      background:linear-gradient(90deg,var(--primary),#0f9bff);
      color:#fff;
      box-shadow:0 10px 30px rgba(11,120,255,0.12);
    }
    .btn-outline{
      background:transparent;
      border:1px solid rgba(15,23,42,0.06);
      color: #fff;
    .btn:active{transform:translateY(1px)}
    }
    .hero-visual{
      background:linear-gradient(180deg, rgba(6,182,212,0.06), rgba(11,120,255,0.04));
      border-radius:16px;
      padding:18px;
      box-shadow:var(--shadow);
      
    }
    .visual-card{
      background: linear-gradient(180deg, #ffffff, rgba(255,255,255,0.9));
      border-radius:12px;
      padding:18px;
      display:grid;
      gap:12px;
    }
    .visual-screens{display:flex; gap:12px; align-items:center; justify-content:center}
    .screen{
      width:140px;
      height:80px;
      border-radius:10px;
      background:linear-gradient(180deg,#0b78ff,#06b6d4);
      color:white;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      box-shadow:0 6px 20px rgba(12,20,40,0.08);
    }

    /* =========================
       Services Grid
       ========================= */
    section.services{
      padding:42px 0;
    }
    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .service-card{
      background:var(--card);
      border-radius:12px;
      padding:20px;
      box-shadow:var(--shadow);
      transition:transform .18s cubic-bezier(.2,.9,.3,1), box-shadow .18s;
      border:1px solid rgba(12,20,40,0.03);
    }
    .service-card:hover{
      transform:translateY(-8px) scale(1.01);
      box-shadow:0 18px 50px rgba(12,20,40,0.08);
    }
    .service-icon{
      width:52px;height:52px;border-radius:10px;
      display:inline-grid;place-items:center;
      background:linear-gradient(135deg, #fff, rgba(6,182,212,0.06));
      font-size:22px;margin-bottom:12px;
      color:var(--primary);
    }
    .service-card h3{margin:0 0 8px;font-size:1.05rem}
    .service-card p{margin:0;color:var(--muted);font-size:0.95rem}

    /* =========================
       Why Choose Us
       ========================= */
    .why{
      padding:42px 0;
      display:grid;
      grid-template-columns:1fr 420px;
      gap:28px;
      align-items:start;
      align-content:start;
    }
    .bullets{display:flex;flex-direction:column;gap:14px}
    .bullet{
      display:flex;gap:12px;align-items:flex-start;
      background:linear-gradient(180deg, rgba(11,120,255,0.02), rgba(6,182,212,0.01));
      padding:12px;border-radius:10px;
      border:1px solid rgba(11,120,255,0.04);
    }
    .bullet .ico{
      min-width:44px;height:44px;border-radius:8px;
      display:grid;place-items:center;font-weight:700;
      background:white;box-shadow:0 6px 18px rgba(12,20,40,0.04);
      color:var(--primary)
    }
    .bullet p{margin:0;color:var(--muted);font-size:0.96rem}

    /* =========================
       Technologies
       ========================= */
    .tech{
      padding:34px 0;
    }
    .tech-list{
      display:flex;flex-wrap:wrap;gap:12px;
    }
    .tech-pill{
      display:inline-flex;align-items:center;gap:10px;
      padding:10px 14px;border-radius:999px;
      background:var(--card);box-shadow:var(--shadow);
      border:1px solid rgba(12,20,40,0.03);
      font-weight:600;color:#0b1220;font-size:0.95rem;
    }
    .tech-logo{
      width:18px;height:18px;border-radius:4px;display:inline-grid;place-items:center;
      font-size:12px;background:linear-gradient(180deg,rgba(11,120,255,0.06),transparent)
    }

    /* =========================
       Quote / CTA strip
       ========================= */
    .cta-strip{
      margin:36px 0 80px;
      background:linear-gradient(90deg, rgba(11,120,255,0.06), rgba(6,182,212,0.03));
      padding:20px;border-radius:12px;display:flex;align-items:center;justify-content:space-between;
      gap:20px;border:1px solid rgba(11,120,255,0.04);
    }
    .cta-strip .left{display:flex;flex-direction:column;gap:8px}
    .cta-strip h3{margin:0}
    .quote-form{display:flex;gap:10px;align-items:center}
    .quote-form input{
      padding:10px 12px;border-radius:10px;border:1px solid rgba(15,23,42,0.06);min-width:220px;
    }

    /* =========================
       Footer
       ========================= */
    footer{padding:28px 0;color:var(--muted);font-size:0.95rem}
    .footer-inner{display:flex;flex-wrap:wrap;gap:20px;align-items:center;justify-content:space-between}
    .small{font-size:0.9rem;color:var(--muted)}

    /* =========================
       Responsive
       ========================= */
    @media (max-width:1000px){
      .hero-grid{grid-template-columns:1fr 320px}
      .services-grid{grid-template-columns:repeat(2,1fr)}
      .why{grid-template-columns:1fr}
      .hero{padding:48px 0}
    }
    @media (max-width:700px){
      .header-inner{padding:10px 0}
      nav.primary{display:none}
      .hero-grid{grid-template-columns:1fr}
      .visual-card{display:none}
      .services-grid{grid-template-columns:1fr}
      .cta-strip{flex-direction:column;align-items:stretch}
      .quote-form{flex-direction:column;align-items:stretch}
    }
    /* Focus visibility */
    a:focus, button:focus, input:focus, select:focus, textarea:focus{
      outline:3px solid rgba(11,120,255,0.12);
      outline-offset:3px;
    }
    /* ==================== TEAM SECTION STYLES ==================== */

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeInDown 0.8s ease-out;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: white;
        margin-top: 0.5rem;
        font-weight: 300;
    }

    /* Team Grid Container */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    /* Team Card */
    .team-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.6s ease-out;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    /* Team Card Image Wrapper */
    .team-card-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 320px;
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    }

    /* Team Card Image */
    .team-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-card:hover .team-card-image {
        transform: scale(1.08) rotate(2deg);
    }

    /* Team Card Overlay (Social Icons) */
    .team-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(33, 139, 189, 0.95) 0%, rgba(1, 1, 38, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .team-card-overlay {
        opacity: 1;
    }

    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 1.5rem;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        font-size: 1.3rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .social-icons a:hover {
        background: white;
        transform: scale(1.1) rotate(-5deg);
        border-color: white;
    }

    /* Team Card Content */
    .team-card-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Team Member Name */
    .team-member-name {
        font-size: 1.3rem;
        font-weight: 600;
        color: #010126;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .team-card:hover .team-member-name {
        color: rgb(33, 139, 189);
    }

    /* Team Member Role */
    .team-member-role {
        font-size: 0.95rem;
        font-weight: 600;
        color: rgb(33, 139, 189);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    /* Team Member Description */
    .team-member-description {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    /* ==================== ANIMATIONS ==================== */

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ==================== RESPONSIVE DESIGN ==================== */

    /* Tablet (768px and below) */
    @media (max-width: 768px) {
        .team-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .team-card-image-wrapper {
            height: 280px;
        }

        .team-card-content {
            padding: 1.5rem 1rem;
        }

        .team-member-name {
            font-size: 1.1rem;
        }

        .section-header {
            margin-bottom: 2rem;
        }

        .section-subtitle {
            font-size: 0.95rem;
        }
    }

    /* Mobile (480px and below) */
    @media (max-width: 480px) {
        .team-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .team-card-image-wrapper {
            height: 250px;
        }

        .team-card-content {
            padding: 1.2rem 0.8rem;
        }

        .team-member-name {
            font-size: 1rem;
        }

        .team-member-role {
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .team-member-description {
            font-size: 0.85rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
            gap: 1rem;
        }

        .section-header {
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 1.8rem;
        }
    }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 90px;
        right: 20px;
    }
}