
* {
       font-family: "Oxanium", sans-serif;

}
/* Navigation link effects */
.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(230, 241, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #64ffda;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px #64ffda;
}

.nav-link:hover {
    color: #64ffda;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Logo styling */
.logo-text {
    -webkit-background-clip: text;
    background-clip: text;

    font-weight: 500;
    letter-spacing: 0.05em;
    color: white;
    position: relative;
    padding: 0 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* 
.logo-text::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(120deg, rgba(100, 255, 218, 0.1), rgba(230, 241, 255, 0.1));
    border-radius: 4px;
    z-index: -1;
    transform: skew(-3deg);
    transition: all 0.3s ease;
} */

.logo-text:hover::before {
    transform: skew(-5deg) scale(1.05);
    background: linear-gradient(120deg, rgba(100, 255, 218, 0.2), rgba(230, 241, 255, 0.2));
}

/* Button glow effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    /* content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #64ffda, #0a192f, #64ffda);
    background-size: 200% 100%;
    z-index: -1;
    /* animation: glow 3s linear infinite; */
    opacity: 0;
    transition: opacity 0.3s linear; 
}

.cta-button:hover::before {
    opacity: 1;
}

@keyframes glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Product and service card hover effects */
.product-card, .service-card {
    position: relative;
    transition: all 0.2s ease;
}

.product-card::after, .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.5rem;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-card:hover::after, .service-card:hover::after {
    opacity: 1;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
}

/* Image container and zoom effect */
.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover::before,
.image-container:hover::after {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.05);
}

.full-image-preview {
    transition: opacity 0.3s ease;
}

.full-image-preview.hidden {
    opacity: 0;
    pointer-events: none;
}

.full-image-preview:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Section titles enhancement */
.section-title {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-title:hover::before {
    opacity: 1;
}
:root {
    --primary-color: #007bff; /* A strong blue for industrial look */
    --secondary-color: #0056b3; /* Darker blue for hover states */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-family: 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}
/* Typography */
h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 20px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px; /* Adjust height for your logo */
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-weight: 500;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    min-height: 300px;
    background-color: #ddd; /* Placeholder color */
    border-radius: 10px;
    /* This is where your large visual goes */
}

/* Advantage Section */
.advantage {
    padding: 60px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    padding: 30px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Solutions Snapshot */
.solutions-snapshot {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.solution-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon {
    display: block;
    font-size: 2rem; /* Replace with actual icons (e.g., Font Awesome) */
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-banner .btn-primary:hover {
    background-color: #eee;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .nav {
        margin-top: 15px;
    }
    .nav a {
        margin: 0 10px;
        display: inline-block;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-visual {
        width: 100%;
    }
    h1 {
        font-size: 2rem;
    }
}
/* home */
.home {
background: #bfd7f5;
background: linear-gradient(90deg, rgba(191, 215, 245, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(207, 207, 207, 1) 60%);
   padding: 190px 80px 80px; 
   height: calc(100vh - 70px);
   display: flex;
justify-content: center;
align-items: center;
}
.home .home-con {
display: flex;
justify-content: space-between;
align-items: center;
gap: 90px;
}
.home .home-con .home-info {
 width:50%;
}
.home .home-con .home-info h1 {
   font-size: 3rem;
   margin-bottom: 20px;
   color: #0a192f;
   font-weight: 700;
   line-height: 1.35;}

.home .home-con .home-info p {
   font-size: 1.3rem;
   margin-bottom: 30px;
   color: #333;
   line-height: 1.5;
   margin-top: 25px;
}
@media (max-width: 768px) {
    .home .home-con .home-info h1 {
        font-size: 2.2rem;
    }
    .home {
        height: auto;
        padding: 150px 20px;
    }
}
.home .home-con .home-info .btn {
   background-color: #0c2141;
   color: #ffffff !important;
   padding: 12px 30px;
   border-radius: 5px;
   font-weight: bold;
   transition: background-color 0.3s ease;
   text-decoration: none;
}
.home .home-con .home-img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home .home-con .home-img video {
   width: 100%;
   border-radius: 10px;
}
.home .home-con .home-img img {
   width: 100%;
   border-radius: 10px;
}

@media (max-width:800px) {
    .home .home-con {
    flex-direction: column;
    }
    .home .home-con .home-info, .home .home-con .home-img {
        width: 100%;
        text-align: center;
    }
}
 .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            padding: 30px;
           
            margin: 0 auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .card {
         background: #ddd;
            border-radius: 15px;
            padding: 30px;
         
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .card-icon {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #0c2141
        }

        .card h3 {
            color: #0066cc;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 1.4em;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }

        .card p {
            color: #495057;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .card ul {
            padding-left: 20px;
            color: #495057;
        }

        .card li {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
                padding: 15px;
            }
            .home {
            height: auto;
            }
        }
        /* khtek */
           .products-con {
            display: flex;
            flex-direction: column;
            gap: 80px;
            }
        .products-con .khtek {
     display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            margin-top: 50px;
        }
             @media (max-width: 768px) {
            .products-con .khtek {
                flex-direction: column;

             }
            }
        .products-con .khtek .info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            width: 50%;
        }
        .products-con .khtek .info h3 {
            font-size: 2.5rem;
            color: #ffffff;
            font-weight: 700;
            line-height: 1.35; 
            margin-bottom: 25px;
           
        }
         .products-con .khtek .info h4 {
            font-size: 1.5rem;
            color: #ffffff;
            font-weight: 600;
            line-height: 1.35; 
            margin-bottom: 25px;
         }
           .products-con .khtek .info li {
            margin-bottom: 10px;
           }
        .products-con .khtek .info p {
            font-size: 1.2rem;
        line-height: 40px;
    
        }

          .products-con .khtek img {
            width: 45%;
            border-radius: 10px;
          }

        @media (max-width: 768px) {
            .products-con .khtek img {
                width: 100%;
            }
            .products-con .khtek .info {
                width: 100%;
                text-align: center;
            }
            .products-con .khtek .info h3 {
                font-size: 2rem;
            }
             .products-con .khtek .info h4 {
                font-size: 1.3rem;
            }
        .khtek-reverse {
            flex-direction: column-reverse !important;
        }
        }