
/* Projects Section */
.projects-section {
    padding: 5rem 0;
    color: white;
    }
    
    .projects-heading {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    }
    
    .projects-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 1rem 0;
    }
    
    .projects-container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    width: max-content;
    }
    
    .project-card {
        background-color: rgba(10, 35, 67, 0.95);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
    }
    
    .project-card:hover {
    transform: translateY(-10px);
    }
    
    .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    }
    
    .project-details {
    padding: 1.5rem;
    text-align: center;
    }
    
    .project-details h3 {
    margin-bottom: 0.5rem;
    color: white;
    }
    
    .project-details p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    }
    
    .project-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    }
    
    .project-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
    }
    
    /* Hide scrollbar for cleaner look */
    .projects-wrapper::-webkit-scrollbar {
    display: none;
    }
    
    
    
    
    :root {
        --teal: #28D8DC;
        --green: #6FCC59;
        --navy: #0A2343;
        --gradient: linear-gradient(135deg, #28D8DC 0%, #6FCC59 100%);
        --glass-bg: rgba(40, 216, 220, 0.1);
        --glass-border: rgba(255, 255, 255, 0.2);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #0A2343 0%, #1a3c5c 50%, #0A2343 100%);
        color: white;
        overflow-x: hidden;
    }
    
    /* Animated Background */
    .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }
    
    .floating-shape:nth-child(1) {
        width: 80px;
        height: 80px;
        background: var(--teal);
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .floating-shape:nth-child(2) {
        width: 120px;
        height: 120px;
        background: var(--green);
        top: 60%;
        right: 20%;
        animation-delay: 2s;
    }
    
    .floating-shape:nth-child(3) {
        width: 60px;
        height: 60px;
        background: var(--teal);
        bottom: 30%;
        left: 70%;
        animation-delay: 4s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    /* Header Styles */
    .navbar {
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--glass-border);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
        background: rgba(40, 63, 93, 0.9);
        box-shadow: 0 2px 20px rgba(40, 216, 220, 0.3);
    }
    
    .navbar-brand {
        font-size: 1.8rem;
        font-weight: 700;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        font-weight: 500;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--teal) !important;
        transform: translateY(-2px);
    }
    
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 50%;
        background: var(--gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
    
    .btn-primary {
        color: black;
        background: var(--gradient);
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 216, 220, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(40, 216, 220, 0.5);
    }
    
    /* Glass Card Styles */
    .glass-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .glass-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(40, 216, 220, 0.2);
        border-color: var(--teal);
    }
    
    /* Services Section */
    /* Services Section */
    .services {
    padding: 4rem 0;
    background-color: #f9f9f9; /* Light white background */
    color: rgba(10, 35, 67, 0.9); /* Main text color */
    }
    
    .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: rgba(10, 35, 67, 0.9); /* Your specified color for icons */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon:hover {
    transform: scale(1.1) rotate(360deg);
    color: rgba(10, 35, 67, 1); /* Full opacity on hover */
    }
    
    /* Service content styling */
    .service-title {
    color: rgba(10, 35, 67, 0.9); /* Your color for titles */
    margin-bottom: 1rem;
    }
    
    .service-description {
    color: rgba(10, 35, 67, 0.8); /* Slightly lighter for description */
    }
    
    /* Service boxes/containers */
    .service-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: rgba(10, 35, 67, 0.9); /* Ensuring text color in boxes */
    }
    
    .service-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Why Choose Us */
    .feature-item {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        background: var(--gradient);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2.5rem;
        color: white;
        transform: rotate(45deg);
    }
    
    .feature-icon i {
        transform: rotate(-45deg);
    }
    
    /* Portfolio Slider */
    .portfolio-slider {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        padding: 2rem 0;
        scroll-snap-type: x mandatory;
    }
    
    .portfolio-item {
        min-width: 300px;
        height: 200px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        scroll-snap-align: start;
        cursor: pointer;
    }
    
    .portfolio-item:hover {
        transform: scale(1.05);
        border-color: var(--teal);
    }
    
    /* Testimonials */
    .testimonial-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        padding: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--gradient);
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
    }
    
    /* CTA Section */
    .cta-section {
        background: var(--gradient);
        padding: 6rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .cta-content {
        position: relative;
        z-index: 2;
    }
    
    .btn-white {
        background: white;
        color: var(--navy);
        border: none;
        padding: 1rem 3rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        color: var(--navy);
    }
    
    /* Footer */
    .footer {
        background: rgba(10, 35, 67, 0.9);
        padding: 4rem 0 2rem;
        border-top: 1px solid var(--glass-border);
    }
    
    .social-links a {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 0.5rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--gradient);
        transform: translateY(-3px);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
        }
        
        .hero-graphic {
            display: none;
        }
        
        .portfolio-slider {
            gap: 1rem;
        }
        
        .portfolio-item {
            min-width: 250px;
        }
    }
    
    /* Scrollbar Styles */
    .portfolio-slider::-webkit-scrollbar {
        height: 8px;
    }
    
    .portfolio-slider::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .portfolio-slider::-webkit-scrollbar-thumb {
        background: var(--gradient);
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 4rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-titlee {
        color: rgba(10, 35, 67, 0.95);
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 4rem;
        background: rgba(10, 35, 67, 0.95);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Additional CSS for enhanced effects */
    .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
        pointer-events: none;
    }
    
    @keyframes ripple-animation {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }
    
    .loaded .hero-content {
        animation: slideInUp 1s ease-out;
    }
    
    @keyframes slideInUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* Enhanced hover effects */
    .glass-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .glass-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(40, 216, 220, 0.3);
    }
    
    .service-icon {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .service-icon:hover {
        transform: scale(1.2) rotate(360deg);
        box-shadow: 0 10px 30px rgba(40, 216, 220, 0.4);
    }
    
    /* Improved mobile responsiveness */
    @media (max-width: 576px) {
        .hero h1 {
            font-size: 2rem;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    }
    
    /* Loading state */
    body:not(.loaded) {
        overflow: hidden;
    }
    
    body:not(.loaded)::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--navy);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Accessibility improvements */
    .btn:focus,
    .nav-link:focus {
        outline: 2px solid var(--teal);
        outline-offset: 2px;
    }
    
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    
    
    
    /* Pricing Section */
    .popular-badge {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #8A2BE2; /* A purple color for contrast */
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50%; /* Circular shape */
        font-size: 0.8rem;
        font-weight: bold;
        width: auto;
        height: auto;
        z-index: 10;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    .pricing-card {
        border-radius: 20px;
        padding: 2rem;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pricing-header h4 {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 1rem 0;
        color: var(--primary);
    }
    
    .pricing-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .pricing-features li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
    }
    
    .pricing-features i {
        color: var(--primary);
        margin-right: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .popular {
        border: 2px solid var(--primary);
    }
    
    .popular-badge {
        position: absolute;
        top: 15px;
        right: -30px;
        background: var(--primary);
        color: rgb(255, 254, 254);
        padding: 0.25rem 2rem;
        transform: rotate(45deg);
        font-size: 0.8rem;
        font-weight: 600;
        width: 120px;
        text-align: center;
    }
    
    .premium {
        border: 2px solid var(--secondary);
    }
    
    .premium-badge {
        position: absolute;
        top: 15px;
        right: -30px;
        background: var(--secondary);
        color: white;
        padding: 0.25rem 2rem;
        transform: rotate(45deg);
        font-size: 0.8rem;
        font-weight: 600;
        width: 120px;
        text-align: center;
    }
    .text-muted{
        color: #00f2fe !important;
    }
    
    @media (max-width: 768px) {
        .popular-badge, .premium-badge {
            right: -35px;
            width: 140px;
        }
    }
    
    
    
    /* Pricing Section - Mobile Optimization */
    @media (max-width: 768px) {
        #pricing .section-title {
            font-size: 2rem;  /* Increased from 1.8rem */
            margin-bottom: 1.2rem;
        }
        
        .pricing-card {
            padding: 1.5rem;  /* Increased from 1.25rem */
            margin-bottom: 1.2rem;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .pricing-header h4 {
            font-size: 1.4rem;  /* Increased from 1.25rem */
        }
        
        .pricing-header .text-muted {
            font-size: 0.95rem;  /* Increased from 0.85rem */
            margin-bottom: 0.6rem;
        }
        
        .price {
            font-size: 2rem;  /* Increased from 1.75rem */
            margin: 0.9rem 0;  /* Slightly increased */
        }
        
        .pricing-features {
            margin-bottom: 1.5rem;  /* Increased from 1.25rem */
        }
        
        .pricing-features li {
            font-size: 0.95rem;  /* Increased from 0.85rem */
            margin-bottom: 0.6rem;  /* Slightly increased */
        }
        
        .pricing-features i {
            font-size: 1rem;  /* Increased from 0.9rem */
            margin-right: 0.6rem;  /* Slightly increased */
        }
        
        .popular-badge, .premium-badge {
            right: -25px;
            width: 100px;
            font-size: 0.8rem;  /* Increased from 0.7rem */
            padding: 0.2rem 1.5rem;  /* Slightly increased */
        }
        
        #pricing .btn {
            padding: 0.6rem;  /* Increased from 0.5rem */
            font-size: 1rem;  /* Increased from 0.9rem */
        }
        
        #pricing .row.g-4 {
            gap: 1.2rem !important;  /* Slightly increased */
        }
    }
    
    /* Additional improvements for very small screens */
    @media (max-width: 576px) {
        .pricing-card {
            padding: 1.2rem;  /* Increased from 1rem */
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        
        .pricing-header h4 {
            font-size: 1.3rem;  /* Increased from 1.1rem */
        }
        
        .price {
            font-size: 1.8rem;  /* Increased from 1.5rem */
        }
        
        .pricing-features li {
            font-size: 0.9rem;  /* Increased from 0.8rem */
        }
        
        .popular-badge, .premium-badge {
            right: -20px;
            width: 90px;
            font-size: 0.75rem;  /* Increased from original */
        }
    }
    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 20, 50, 0.7)), url('banner.jpg') center/cover no-repeat;
        color: #fff;
    }
    
    .hero-content {
        z-index: 2;
    }
    
    .hero h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 2rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero p {
        font-size: 1.5rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }
    
    .hero-graphic {
        position: absolute;
        right: -10%;
        top: 50%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
        opacity: 0.1;
    }
    
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        height: 100%;
    }
    
    .tech-cell {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        animation: pulse 4s ease-in-out infinite;
    }
    
    .tech-cell:nth-child(odd) {
        animation-delay: 1s;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.1; transform: scale(1); }
        50% { opacity: 0.3; transform: scale(1.05); }
    }
    
    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    /* Mobile Responsive Fix */
    @media (max-width: 768px) {
        .navbar-toggler-icon {
            filter: brightness(0) invert(1); /* Makes it white */
        }
        
        .hero {
            min-height: 80vh;
            padding-top: 5rem;
            padding-bottom: 3rem;
            text-align: center;
        }
    
        .hero h1 {
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
    
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
    
        .hero-graphic {
            display: none; /* Hide graphic for mobile for better readability */
        }
    
        .d-flex.gap-3 {
            flex-direction: column;
            gap: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.8rem;
        }
    
        .hero p {
            font-size: 1rem;
        }
    
        .btn-lg {
            font-size: 1rem;
            padding: 0.75rem 1.2rem;
        }
    }
    .logo {
        width: 80px;
    }
    
    @media (max-width: 768px) {
        .logo {
            width: 55px !important; /* smaller on mobile */
        }
        .NAM{
            font-size: 25px;
        }
    }
    



    /* Custom colors */
.btn-primary {
    background-color: #007bff; /* Dark Blue */
    border-color: #007bff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3; /* Darker Blue */
    border-color: #0056b3;
  }
  
  .modal-header {
    background-color: #28a745; /* Green */
    color: white;
  }
  
  .modal-title {
    color: white;
  }
  
  .modal-content {
    border: 2px solid #007bff; /* Dark Blue */
  }
  