 
:root {
            --dark-blue: #0f172a;
            --electric-blue: #0ea5e9;
            --light-blue: #bae6fd;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f8fafc;
            color: #334155;
            overflow-x: hidden;
        }
        
        .about-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            background: linear-gradient(135deg, var(--dark-blue) 0%, #1e293b 100%);
            padding: 6rem 2rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gears-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .gear {
            position: absolute;
            animation: rotate linear infinite;
            opacity: 0.7;
        }
        
        .gear-large {
            width: 250px;
            height: 250px;
            top: 15%;
            left: 10%;
            animation-duration: 40s;
        }
        
        .gear-medium {
            width: 180px;
            height: 180px;
            bottom: 20%;
            right: 15%;
            animation-duration: 35s;
            animation-direction: reverse;
        }
        
        .gear-small {
            width: 120px;
            height: 120px;
            top: 65%;
            left: 25%;
            animation-duration: 25s;
        }
        
        .content-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .text-content {
            padding: 2rem;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(14, 165, 233, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .text-content:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 30px 60px -10px rgba(14, 165, 233, 0.3);
        }
        
        .hero-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--white), var(--light-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.05em;
        }
        
        .subheading {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--electric-blue);
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .subheading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--electric-blue);
            border-radius: 2px;
        }
        
        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 3rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .feature-card {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(14, 165, 233, 0.1);
            border-radius: 12px;
            padding: 1.8rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateZ(0);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px -10px rgba(14, 165, 233, 0.3);
            border-color: rgba(14, 165, 233, 0.3);
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(5deg);
            color: var(--electric-blue);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--light-blue);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .feature-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }
        
        .feature-desc {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.1rem 2.5rem;
            background: transparent;
            color: var(--electric-blue);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 2px solid var(--electric-blue);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--electric-blue);
            transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.5);
        }
        
        .cta-button:hover::before {
            width: 100%;
        }
        
        .image-content {
            position: relative;
            perspective: 1500px;
            height: 600px;
        }
        
        .image-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            transform-style: preserve-3d;
            box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(14, 165, 233, 0.2);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
            z-index: 2;
        }
        
        .gate-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: scale(1.1);
        }
        
        .image-content:hover .gate-image {
            transform: scale(1.05);
        }
        
        .floating-element {
            position: absolute;
            z-index: 20;
            background: var(--dark-blue);
            border: 1px solid rgba(14, 165, 233, 0.3);
            border-radius: 12px;
            padding: 1.2rem;
            box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            transform-style: preserve-3d;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .floating-element-1 {
            top: -30px;
            right: -30px;
            width: 220px;
            transform: rotateZ(3deg);
        }
        
        .floating-element-2 {
            bottom: -40px;
            left: -40px;
            width: 260px;
            transform: rotateZ(-2deg);
        }
        
        .element-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--electric-blue);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .element-text {
            font-size: 0.9rem;
            color: #cbd5e1;
            line-height: 1.6;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px) rotateZ(0deg);
            }
            50% {
                transform: translateY(-15px) rotateZ(2deg);
            }
            100% {
                transform: translateY(0px) rotateZ(0deg);
            }
        }
        
        /* Responsive design */
        @media (max-width: 1100px) {
            .content-container {
                grid-template-columns: 1fr;
                max-width: 800px;
            }
            
            .text-content {
                transform: perspective(1000px) rotateY(0deg);
            }
            
            .image-content {
                height: 500px;
                margin-top: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-heading {
                font-size: 3.5rem;
            }
            
            .subheading {
                font-size: 1.5rem;
            }
            
            .floating-element {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hero-heading {
                font-size: 2.8rem;
            }
            
            .subheading {
                font-size: 1.3rem;
            }
            
            .about-section {
                padding: 4rem 1.5rem;
            }
        }  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(30, 60, 114, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
         
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .nav-link:hover::before {
            left: 0;
        }

        .nav-link:hover {
            transform: translateY(-2px);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
/* ======== Base Styles ======== */
:root {
    /* Colors */
    --color-primary: #052a5b;    /* Dark Blue */
    --color-secondary: #1a56a8;  /* Medium Blue */
    --color-accent: #4285f4;     /* Light Blue Accent */
    --color-light: #ffffff;      /* White */
    --color-dark: #1a1a1a;       /* Almost Black */
    --color-gray: #f5f5f7;       /* Light Gray */
    --color-text: #333333;       /* Dark Gray for Text */
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
    color: darkgray;
}

p {
    margin-bottom: var(--spacing-sm);
    
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}.bg-dark{
    height: 0%;
    padding: 0%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-secondary);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

.btn-light {
    background-color: var(--color-light);
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: var(--color-gray);
    color: var(--color-primary);
}

.section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header.left-align {
    text-align: left;
}

.section-header.light h2,
.section-header.light p {
    color: var(--color-light);
}

.bg-light {
    background-color: var(--color-gray);
}

.bg-dark {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.bg-primary {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

/* ======== Header & Navigation ======== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
   
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
   
    
}

#header.scrolled .logo a,
#header.scrolled .main-nav a {
  
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.logo a {
    font-family: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
}

.logo span {
    color: var(--color-accent);
}

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: var(--spacing-md);
}

.main-nav a {
    color: var(--color-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.3rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--color-light);
}

/* ======== Hero Section ======== */
#hero {
    height: 100vh;
    min-height: 600px;
    background-image: url(514196442_1065054001847944_1062794154497133221_n.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 42, 91, 0.8), rgba(5, 42, 91, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-light);
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
    font-size: 4rem;
    font-weight: 700;
    margin-top: 100px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ======== Products Section ======== */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--spacing-sm);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.product-btn {
    width: 100%;
}

/* ======== Projects Gallery ======== */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 300px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-sm);
    color: var(--color-light);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-type {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: var(--color-accent);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}



/* ======== Testimonials Section ======== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--color-accent);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-rating {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.author-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.testimonial-btn {
    background-color: transparent;
    border: 2px solid var(--color-light);
    color: var(--color-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

/* ======== Waitlist Section ======== */
.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content h2,
.waitlist-content p {
    color: var(--color-light);
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* ======== Contact Section ======== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.info-item {
    margin-bottom: var(--spacing-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-map {
    grid-column: span 2;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
    color: #666;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* ======== Footer ======== */
#footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-about h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-about span {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-products h3,
.footer-newsletter h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-light);
}

.footer-links ul,
.footer-products ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-products a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--color-light);
}

#newsletter-form {
    display: flex;
    margin-top: var(--spacing-sm);
}

#newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

#newsletter-form button {
    background-color: var(--color-accent);
    color: var(--color-light);
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter-form button:hover {
    background-color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======== Animation Classes ======== */
.reveal,
.reveal-delay,
.reveal-delay-2,
.reveal-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

.reveal.active,
.reveal-delay.active,
.reveal-delay-2.active,
.reveal-delay-3.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======== Responsive Styles ======== */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .main-nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: top 0.3s ease;
    }
    
    .main-nav.active {
        top: 0;
    }
    
    .main-nav li {
        margin: var(--spacing-sm) 0;
        color: rgb(255, 255, 255);
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
        color: gray;
      
    }.bar{
        color: gray;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        grid-column: span 1;
    }
}
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }body {
    background: linear-gradient(135deg, white);
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    min-height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    color: #fff;
    padding: 0.5rem 1.5rem;
    
    top: 0;
    z-index: 100;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    transition: max-height 0.3s;
}

.navbar-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.2s;
}

.navbar-links li a:hover {
    color: #74ebd5;
}

.navbar-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.navbar-toggle {
    display: none;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .navbar-toggle:checked + .navbar-icon + .navbar-links {
        max-height: 300px;
        padding: 1rem 0;
    }
    .navbar-icon {
        display: block;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-in forwards;
}/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    animation-delay: 0.5s;
}

        /* About Section */
        .about-section {
            margin-top: 80px;
            min-height: 100vh;
            background: var(--color-primary);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          
            pointer-events: none;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease;
        }

        .about-title {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .card-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .card-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .hamburger {
                display: flex;
            }

            .about-title {
                font-size: 2.5rem;
            }

            .about-subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-card {
                padding: 2rem;
            }

            .navbar {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 2rem;
            }

            .about-section {
                padding: 2rem 1rem;
            }

            .about-card {
                padding: 1.5rem;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        } .body{
        background-color: white;
    }
    .product-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .product-modal.show {
        opacity: 1;
        visibility: visible;
    }
    
    .modal-content {
        background-color: var(--color-light);
        width: 90%;
        max-width: 1000px;
        max-height: 90vh;
        border-radius: var(--border-radius-lg);
        overflow: auto;
        position: relative;
        transform: translateY(50px);
        transition: transform 0.3s ease;
    }
    
    .product-modal.show .modal-content {
        transform: translateY(0);
    }
    
    .close-modal {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        z-index: 1;
        color: var(--color-primary);
    }
    
    .modal-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .modal-image img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius-md);
    }
    
    .modal-details h2 {
        color: var(--color-primary);
        margin-bottom: var(--spacing-sm);
    }
    
    .modal-description {
        margin-bottom: var(--spacing-sm);
    }
    
    .modal-details-text {
        margin-bottom: var(--spacing-sm);
        color: #666;
    }
    
    .modal-price {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-primary);
        margin-bottom: var(--spacing-md);
    }
    
    .modal-features {
        margin-bottom: var(--spacing-md);
    }
    
    .modal-features h3 {
        margin-bottom: var(--spacing-sm);
        font-size: 1.2rem;
    }
    
    .modal-features ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .modal-features li {
        display: flex;
        align-items: center;
    }
    
    .modal-features i {
        color: var(--color-accent);
        margin-right: 10px;
    }
    
    .modal-cta {
        margin-top: var(--spacing-md);
    }
    
    /* Notification Styles */
    .notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 3000;
        min-width: 300px;
        max-width: 400px;
        background-color: white;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(100px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .notification.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .notification.success {
        border-left: 4px solid #4CAF50;
    }
    
    .notification.error {
        border-left: 4px solid #F44336;
    }
    
    .notification-content {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .contact-section {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 50px;
            text-align: center;
           
        }
        .contact-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        .message-container {
            background-color: #041547;
            border-radius: 15px;
            width: 100%;
            max-width: 600px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
            box-shadow:   0 20px 60px rgb(0, 0, 0.04);;
        }
        .message-container textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: none;
            resize: none;
            font-size: 1.2em;
            margin-bottom: 20px;
            background-color: #f1f1f1;
            color: #333;
        }
        .button {
            background-color: #041547;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 10px;
            font-size: 1.2em;
            transition: background-color 0.3s ease;
            border: solid;
            border-color: white;
        }
        .button:hover {
            background-color: white;
            color: #041547;
            border-color: #041547;
        }
    .notification-close {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 20px;
        color: #888;
    }
    
    /* Responsive Modal */
    @media screen and (max-width: 768px) {
        .modal-body {
            grid-template-columns: 1fr;
        }
        
        .modal-features ul {
            grid-template-columns: 1fr;
        }
    }

            .products-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
                gap: 2.5rem;
                margin-top: 2.5rem;
            }
            .product-card {
                background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
                border-radius: 2rem;
                box-shadow: 0 8px 32px rgba(4,21,71,0.10), 0 1.5px 8px rgba(4,21,71,0.04);
                overflow: hidden;
                transition: transform 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.35s cubic-bezier(.77,0,.18,1);
                position: relative;
                padding-bottom: 1.5rem;
                border: 1.5px solid #e0e7ff;
            }
            .product-card:hover {
                transform: translateY(-12px) scale(1.035);
                box-shadow: 0 24px 64px rgba(4,21,71,0.18), 0 3px 12px rgba(4,21,71,0.10);
                border-color: #1e40af;
            }
            .product-image-wrapper {
                position: relative;
                overflow: hidden;
                border-radius: 2rem 2rem 0 0;
                background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
            }
            .product-image {
                width: 100%;
                height: 230px;
                object-fit: cover;
                display: block;
                transition: transform 0.5s cubic-bezier(.77,0,.18,1);
                filter: brightness(0.97) contrast(1.08) saturate(1.1);
            }
            .product-card:hover .product-image {
                transform: scale(1.09) rotate(-1.5deg);
                filter: brightness(1.03) contrast(1.12) saturate(1.2);
            }
            .product-badge {
                position: absolute;
                top: 18px;
                left: 18px;
                background: linear-gradient(90deg, #041547 60%, #1e40af 100%);
                color: #fff;
                font-size: 1em;
                font-weight: 700;
                padding: 0.5em 1.3em;
                border-radius: 1.2em;
                box-shadow: 0 2px 8px rgba(4,21,71,0.12);
                letter-spacing: 0.04em;
                display: flex;
                align-items: center;
                gap: 0.5em;
            }
            .product-content {
                padding: 2rem 1.7rem 0 1.7rem;
                text-align: left;
            }
            .product-title {
                font-size: 1.45em;
                font-weight: 800;
                color: #041547;
                margin-bottom: 0.6em;
                letter-spacing: 0.01em;
            }
            .product-description {
                color: #475569;
                font-size: 1.08em;
                line-height: 1.7;
                margin-bottom: 1.1em;
            }
            .product-features {
                display: flex;
                flex-wrap: wrap;
                gap: 0.7em 1.2em;
                margin-top: 0.5em;
            }
            .product-features span {
                background: #f1f5fa;
                color: #1e40af;
                font-size: 0.98em;
                border-radius: 1em;
                padding: 0.35em 1em;
                display: flex;
                align-items: center;
                gap: 0.5em;
                font-weight: 600;
                box-shadow: 0 1px 4px rgba(30,64,175,0.06);
            }
            .product-features i {
                color: #fbbf24;
                font-size: 1.1em;
            }
            /* Animation styles */
            .product-animate {
                opacity: 0;
                transform: translateY(40px) scale(0.98);
                transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
            }
            .product-animate.visible {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            @media (max-width: 700px) {
                .products-grid {
                    grid-template-columns: 1fr;
                }
                .product-image {
                    height: 160px;
                }
                .product-content {
                    padding: 1.2rem 1rem 0 1rem;
                }
            } .hero-animate {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
    }
    .hero-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }