:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --dark-color: #0a0d12;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --lig-color: #dfdfdf;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
    --primary: #2c3e50;
            --secondary: #1e40af;
            --accent: #fbbf24;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --animation-speed: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:arial, sans-serif;
    background-color: #f8f4f4;
  }
  
  
/* Navigation */
.navbar {
    padding: 1.3rem 2.2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 50px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
}


/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 38vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    display: none;
    z-index: 99;
    margin-top: 90px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

  



  .hero {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
  }
  
  .hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 5px solid rgb(173, 172, 172);

  }
  
  .slide-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    color: white;
    max-width: 600px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  }
  
  .slide-content h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--secondary-light);
  }
  
  .slide-content p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-light);
  }
  

  @media (max-width: 768px) {
    .slide-content h2 {
      font-size: 1.8rem;
    }
  
    .slide-content p {
      font-size: 1rem;
    }
  
    .slide-content {
      bottom: 50px;
      left: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .slide-content h2 {
      font-size: 1.3rem;
    }
  
    .slide-content p {
      font-size: 0.8rem;
    }
  }


  /*service*/

  .features {
            padding: 5rem 5%;
            background: white;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            z-index: -1;
            transition: height 0.3s;
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover .feature-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            transition: all 0.3s;
        }

        .feature-card p {
            color: #666;
            transition: all 0.3s;
        }




        /* Stats Section */
        .stats {
            padding: 3rem 5%;
            background: linear-gradient(135deg, var(--light) 60%, var(--glass-bg) 60%);
            color: white;
            text-align: center;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
            color: var(--dark-color);
        }



  /* partners */
       
.partners-section {
    padding: 70px 0;
    background-color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.partner-card {
    background-color: #f8fafc;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.partner-1 {
    background: linear-gradient(45deg, #fef3c7, #fde68a);
    color: #b45309 !important;
}

.partner-2 {
    background: linear-gradient(45deg, #dbeafe, #93c5fd);
    color: #1e40af !important;
}

.partner-3 {
    background: linear-gradient(45deg, #e0e7ff, #a5b4fc);
    color: #4338ca !important;
}

.partner-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.partner-card p {
    line-height: 1.4;
    color: var(--gray-color);
    font-size: 0.8rem;
}
.section-header h2{
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--dark);
}






        /* Testimonials */
        .testimonials {
            padding: 1rem 5%;
            background: white;
        }

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

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonial-slide {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 1rem;
            text-align: center;
            transition: all 0.3s;
        }

        .testimonial-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .client-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 1px solid var(--secondary);
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .client-name {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .client-position {
            color: var(--secondary-light);
            font-size: 0.8rem;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--secondary), #5dade2);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .btn-cta {
            background: white;
            color: var(--secondary);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }



    /* WhatsApp Chat Button Styles */
    .whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    animation: twinkle 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
}

/* Twinkling Animation */
@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}



.footer {
    background: linear-gradient(135deg, #080044, #030225, #020069);
    color: white;
    padding: 40px 5% 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    padding: 0 1px;
}

.footer-col h3 {
    color: rgb(204, 204, 204);
    margin-bottom: 25px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.logo h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin-bottom: 20px;
}

.logo h3 span {
    color: var(--secondary-color);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-col ul li a i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer bottom/copyright section */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        gap: 30px;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    .footer-col h3::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 5% 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
}



.terms {
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    text-align: center;
    flex-wrap: wrap; 
}

.terms a {
    font-size: 13px;
    text-decoration: none;
    color: var(--dark);
    font-weight: bold;
    white-space: nowrap; 
    padding: 0 5px; 
}

.terms a:hover{
    color: var(--secondary-light);
    border-bottom: 2px solid var(--secondary-light);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 13, 18, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--light-color);
    margin: 3% auto;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
}

.document-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.document-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.document-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem); 
    font-weight: 700;
    letter-spacing: -0.5px;
}

.document-header p {
    color: var(--gray-color);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.1rem); 
}

.document-header h2 {
    color: var(--dark-color);
    margin-top: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem); 
    font-weight: 600;
}

.document-content {
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem); 
    color: var(--dark-color);
}

.document-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: clamp(1.1rem, 3vw, 1.4rem); 
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.document-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.document-content h3 {
    color: var(--dark-color);
    margin: 1.5rem 0 0.75rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem); 
    font-weight: 500;
}

.document-content p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.document-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.document-content li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
}

.document-content li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.highlight {
    background-color: rgba(245, 158, 11, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    margin: 1.5rem 0;
}



@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 5% auto; 
    }
    
    .terms {
        gap: 20px; 
        padding: 0 10px; 
    }
    
    .terms a {
        font-size: 12px; 
    }
    
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1rem;
        margin: 10% auto; 
        border-radius: 0.5rem; 
    }
    
    .terms {
        gap: 10px; 
    }
    
    .terms a {
        font-size: 11px; 
    }
    
    .close-btn {
        top: 0.8rem;
        right: 0.8rem;
        width: 2.5rem;  
        height: 2.5rem; 
        font-size: 1.7rem;
        padding: 0;
        touch-action: manipulation;
    }
    
    .close-btn {
        z-index: 1001;
    }
}
    



.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        margin-bottom: 40px;
    }

    .leadership-grid {
        flex-direction: column;
        align-items: center;
    }

    .leader-card {
        max-width: 100%;
    }

    .case-study {
        flex-direction: column;
    }

    .case-study-image {
        min-height: 300px;
    }
}

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

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .tech-circle-small {
        width: 150px;
        height: 150px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        margin-bottom: 15px;
    }
}