
   
      
        :root {
            --z-black: #050505;
            --z-dark: #0a0a0a;
            --z-blue: #00f2ff;
            --z-green: #39ff14;
            --z-silver: #e0e0e0;
            --z-glass: rgba(255, 255, 255, 0.03);
            --z-border: rgba(0, 242, 255, 0.2);
        }

        body {
            background-color: var(--z-black);
            color: var(--z-silver);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
        }

       

        /* --- 2. UTILITY CLASSES --- */
        .text-gradient-blue {
            background: linear-gradient(90deg, #fff, var(--z-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-green {
            background: linear-gradient(90deg, #fff, var(--z-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- 3. PREMIUM BUTTONS (Tech Shape) --- */
        .btn-tech {
            background: transparent;
            color: var(--z-blue);
            border: 1px solid var(--z-blue);
            padding: 12px 35px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: 0.4s;
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            margin-right:15px;
        }

        .btn-tech::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, var(--z-blue), transparent);
            transition: 0.5s;
        }

        .btn-tech:hover::before {
            left: 100%;
        }

        .btn-tech:hover {
            background: var(--z-blue);
            color: var(--z-black);
            box-shadow: 0 0 20px var(--z-blue);
        }

        .btn-tech-green {
            color: var(--z-green);
            border: 1px solid var(--z-green);
        }
        .btn-tech-green:hover {
            background: var(--z-green);
            color: var(--z-black);
            box-shadow: 0 0 20px var(--z-green);
        }

        /* --- 4. HERO SECTION (Skewed & Dynamic) --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }

        /* Animated Background Grid */
        .grid-bg {
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
            animation: gridMove 20s linear infinite;
            z-index: -1;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px); }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content .glitch-text {
            position: relative;
            color: var(--z-blue);
        }

        /* --- 5. GLASS CARDS --- */
        .tech-card {
            background: var(--z-glass);
            border: 1px solid var(--z-border);
            padding: 2.5rem;
            position: relative;
            transition: 0.4s;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
        }

        .tech-card:hover {
            border-color: var(--z-green);
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
        }

        .tech-card i {
            font-size: 2.5rem;
            color: var(--z-blue);
            margin-bottom: 20px;
        }
        .tech-card:hover i {
            color: var(--z-green);
        }

        /* --- 6. CLIENT MARQUEE --- */
        .clients-strip {
            background: var(--z-dark);
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .marquee-content {
            display: inline-block;
            animation: slideLeft 30s linear infinite;
        }
        
        .client-logo {
            display: inline-block;
            margin: 0 40px;
            font-family: 'Orbitron';
            font-weight: 700;
            color: #555;
            font-size: 1.5rem;
        }
        
        .client-logo:hover {
            color: var(--z-blue);
            text-shadow: 0 0 10px var(--z-blue);
        }

        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- 7. SEPARATORS (Skewed Dividers) --- */
        .separator-top {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .separator-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        .separator-top .shape-fill {
            fill: var(--z-black);
        }

        /* --- 8. PROGRESS BARS (Tech Style) --- */
        .progress-custom {
            height: 6px;
            background: #222;
            border-radius: 0;
            margin-top: 15px;
        }
        .progress-bar-custom {
            background: var(--z-blue);
            box-shadow: 0 0 10px var(--z-blue);
        }
        .progress-bar-custom.green {
            background: var(--z-green);
            box-shadow: 0 0 10px var(--z-green);
        }

        /* --- 9. NEWS CARDS --- */
        .news-card {
            background: #0f0f0f;
            border: 1px solid #222;
            border-radius: 10px; /* Slightly softer here */
            overflow: hidden;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: var(--z-blue);
            transform: scale(1.02);
        }
        .news-card img {
            transition: 0.5s;
            filter: grayscale(80%);
        }
        .news-card:hover img {
            filter: grayscale(0%);
        }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-content{ font-size: 3.2rem !important; }
            .tech-card { clip-path: none; border-radius: 10px; }
            .btn-tech { clip-path: none; border-radius: 5px; }
        }
        @media(max-width:576px){
            .hero-content{ font-size: 2.2rem !important;
        font-weight: bold;
    } }
        .hero-content{
            font-weight:bold;
        }
    
    
    
    
    /*===================================================================================*/
    
    
/* HERO SLIDER */
/*#heroSlider {*/
/*    position: relative;*/
/*}*/

/*#heroSlider .carousel-item {*/
/*    height: 100vh;*/
/*    min-height: 600px;*/
/*    position: relative;*/
/*}*/

/*#heroSlider .carousel-item img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/* Dark Overlay */
/*#heroSlider .carousel-item::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0, 0, 0, 0.55);*/
/*    z-index: 1;*/
/*}*/

/* Caption */
/*#heroSlider .carousel-caption {*/
/*    z-index: 2;*/
/*    bottom: 22%;*/
/*    text-align: left;*/
/*    max-width: 700px;*/
/*}*/

/*#heroSlider .carousel-caption h1 {*/
/*    font-size: 65px;*/
/*    font-weight: 800;*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    text-transform: uppercase;*/
/*}*/

/*#heroSlider .carousel-caption p {*/
/*    font-size: 22px;*/
/*    color: #f1f1f1;*/
/*    margin-bottom: 30px;*/
/*}*/

/* Button */
/*.main-btn {*/
/*    display: inline-block;*/
/*    padding: 14px 35px;*/
/*    background: #00c853;*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    border-radius: 50px;*/
/*    font-weight: 600;*/
/*    transition: 0.4s;*/
/*}*/

/*.main-btn:hover {*/
/*    background: #009624;*/
/*    color: #fff;*/
/*}*/

/* Controls */
/*.carousel-control-prev-icon,*/
/*.carousel-control-next-icon {*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    padding: 25px;*/
/*    border-radius: 50%;*/
/*}*/

/* Responsive */
/*@media(max-width:768px) {*/

/*    #heroSlider .carousel-item {*/
/*        height: 80vh;*/
/*    }*/

/*    #heroSlider .carousel-caption {*/
/*        bottom: 15%;*/
/*        text-align: center;*/
/*        padding: 0 20px;*/
/*    }*/

/*    #heroSlider .carousel-caption h1 {*/
/*        font-size: 36px;*/
/*    }*/

/*    #heroSlider .carousel-caption p {*/
/*        font-size: 16px;*/
/*    }*/
/*}    */
    
    /* ABOUT SECTION */
/*.about-section {*/
/*    background: #f8f9fa;*/
/*}*/

/*.about-content .sub-title {*/
/*    color: #00c853;*/
/*    font-weight: 700;*/
/*    letter-spacing: 2px;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.about-content h2 {*/
/*    font-size: 42px;*/
/*    font-weight: 800;*/
/*    margin-bottom: 20px;*/
/*    color: #111;*/
/*    line-height: 1.3;*/
/*}*/

/*.about-content p {*/
/*    color: #555;*/
/*    font-size: 17px;*/
/*    line-height: 1.8;*/
/*    margin-bottom: 18px;*/
/*}*/

/*.about-features {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: 20px;*/
/*    margin-top: 30px;*/
/*}*/

/*.feature-box {*/
/*    background: #fff;*/
/*    padding: 20px;*/
/*    border-radius: 12px;*/
/*    text-align: center;*/
/*    transition: 0.4s;*/
/*    box-shadow: 0 5px 20px rgba(0,0,0,0.08);*/
/*}*/

/*.feature-box:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

/*.feature-box span {*/
/*    font-size: 35px;*/
/*    display: block;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.feature-box h6 {*/
/*    font-size: 16px;*/
/*    font-weight: 700;*/
/*    color: #222;*/
/*}*/

/*.about-btn {*/
/*    display: inline-block;*/
/*    margin-top: 30px;*/
/*    padding: 14px 35px;*/
/*    background: #00c853;*/
/*    color: #fff;*/
/*    border-radius: 50px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    transition: 0.4s;*/
/*}*/

/*.about-btn:hover {*/
/*    background: #009624;*/
/*    color: #fff;*/
/*}*/

/* Responsive */
/*@media(max-width:768px){*/

/*    .about-content h2 {*/
/*        font-size: 30px;*/
/*    }*/

/*    .about-features {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/
    
    
    /* =========================
   HERO SLIDER
========================= */

#heroSlider{
    position: relative;
    overflow: hidden;
}

#heroSlider .carousel-item{
    position: relative;
    height: 700px;
}

#heroSlider .carousel-item img{
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/* Overlay */
#heroSlider .carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Caption */
#heroSlider .carousel-caption{
    position: absolute;
    z-index: 2;
    bottom: 20%;
    left: 10%;
    right: auto;
    text-align: left;
    max-width: 700px;
}

#heroSlider .carousel-caption h1{
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#heroSlider .carousel-caption p{
    font-size: 22px;
    color: #f1f1f1;
    margin-bottom: 30px;
}

/* Button */
.main-btn{
    display: inline-block;
    padding: 14px 35px;
    background: #00c853;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.main-btn:hover{
    background: #009624;
    color: #fff;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color: rgba(0,0,0,0.5);
    padding: 25px;
    border-radius: 50%;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section{
    position: relative;
    z-index: 5;
    background: #f8f9fa;
}

.about-img{
    border-radius: 15px;
}

.about-content .sub-title{
    color: #00c853;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2{
    font-size:32px;
    font-weight: 800;
    /*margin-bottom: 20px;*/
    color: #111;
    line-height: 1.3;
}

.about-content p{
   color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Features */
.about-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box{
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-box:hover{
    transform: translateY(-5px);
}

.feature-box span{
    font-size: 35px;
    display: block;
    margin-bottom: 10px;
}

.feature-box h6{
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* About Button */
.about-btn{
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #00c853;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.about-btn:hover{
    background: #009624;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    #heroSlider .carousel-item{
        height: 500px;
    }

    #heroSlider .carousel-item img{
        height: 500px;
    }

    #heroSlider .carousel-caption{
        bottom: 15%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    #heroSlider .carousel-caption h1{
        font-size: 32px;
    }

    #heroSlider .carousel-caption p{
        font-size: 16px;
    }

    .about-content h2{
        font-size: 30px;
    }

    .about-features{
        grid-template-columns: 1fr;
    }
}
    
    /* ===== Services Section CSS ===== */

.oxy-services-section{
    width:100%;
    /*background:#263238;*/
      background-image: url("/public/images/maxresdefault.jpg");
  z-index: 1; 
  background-size: cover;
	background-position: right top;
	background-repeat: no-repeat;
	/*filter: blur(1px);*/
    padding:80px 20px;
    background-attachment: fixed;
}

.oxy-services-container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.oxy-services-heading{
    text-align:center;
    margin-bottom:50px;
}

.oxy-services-subtitle{
    color:#58c12d;
    font-size:18px;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.oxy-services-title{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    margin:0;
}

.oxy-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.oxy-service-card{
    background:#2f3b42;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s ease;
}

.oxy-service-card:hover{
    transform:translateY(-8px);
}

.oxy-service-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.oxy-service-content{
    padding:25px;
}

.oxy-service-card-title{
    color:#ffffff;
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.oxy-service-card-text{
    color:#d7d7d7;
    line-height:1.8;
    font-size:16px;
}

/* ===== Responsive ===== */

@media(max-width:991px){

    .oxy-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .oxy-services-title{
        font-size:32px;
    }

    .oxy-services-grid{
        grid-template-columns:1fr;
    }

}
    /* 4 Column Layout */

.oxy-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

@media(max-width:991px){

    .oxy-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .oxy-services-grid{
        grid-template-columns:1fr;
    }

}