﻿/* =========================
   HEADER
========================= */
.section-badge {
    background: linear-gradient( 135deg, #ea580c, #f97316 );
    color: #fff;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brochure-btn {
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid #dbeafe;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .brochure-btn:hover {
        background: #eff6ff;
        color: #2563eb;
    }

.live-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg,#2563eb,#38bdf8);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.top-bar {
    padding: 10px;
    background: linear-gradient( 90deg, #7c2d12, #ea580c, #fb923c );
}

.brand-text span,
.brand-text small,
.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .active .nav-link {
    background: linear-gradient( 135deg, #ff7a18, #ffb347 );
    color: #fff !important;
    border-radius: 50px;
}

.custom-navbar {
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 25px;
}

    .top-contact a {
        color: #fff;
        text-decoration: none;
    }

.top-social {
    display: flex;
    gap: 10px;
}

    .top-social a {
        color: #fff;
    }

@media(max-width:991px) {

    .header-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    .brochure-btn,
    .live-btn {
        width: 100%;
        text-align: center;
    }

    .top-bar-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .top-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.main-header {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.custom-navbar {
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 12px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

/* LOGO */

.logo-img {
    height: 65px;
    object-fit: cover;
}

.brand-text {
    margin-left: 12px;
}

    .brand-text span {
        display: block;
        color: #fff;
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }

    .brand-text small {
        color: #cbd5e1;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

/* MENU */

.navbar-nav .nav-item {
    margin: 0 8px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px !important;
    border-radius: 50px;
    transition: .4s;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: #38bdf8 !important;
    }

.navbar-nav .active .nav-link {
    background: linear-gradient( 135deg, #0ea5e9, #2563eb );
    color: #fff !important;
}

/* CTA BUTTON */

.live-btn {
    background: linear-gradient( 135deg, #0ea5e9, #2563eb );
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(37,99,235,.35);
}

    .live-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(37,99,235,.5);
    }

/* MOBILE */

.navbar-toggler {
    color: #fff;
    border: none;
    font-size: 24px;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

@media(max-width:991px) {

    .custom-navbar {
        padding: 15px;
    }

    .navbar-collapse {
        background: #0f172a;
        margin-top: 20px;
        border-radius: 15px;
        padding: 20px;
    }

    .navbar-nav {
        text-align: center;
    }

    .live-btn {
        display: block;
        text-align: center;
        margin-top: 15px;
    }

    .brand-text span {
        font-size: 20px;
    }

    .logo-img {
        height: 55px;
        width: 55px;
    }
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 80px;
}

.stat-card {
    position: relative;
    padding: 35px 25px;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    transition: .4s ease;
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

    .stat-card:nth-child(1) {
        border-top: 4px solid #f59e0b;
    }

    .stat-card:nth-child(2) {
        border-top: 4px solid #10b981;
    }

    .stat-card:nth-child(3) {
        border-top: 4px solid #ec4899;
    }

    .stat-card:nth-child(4) {
        border-top: 4px solid #3b82f6;
    }

.stat-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #ff7a18, #ffb347 );
    font-size: 28px;
    color: #fff;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-card p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {
    .portfolio-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {
    .portfolio-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-showcase {
    background: linear-gradient( 135deg, #0f172a 0%, #312e81 50%, #7c3aed 100% );
    padding: 100px 0;
    overflow: hidden;
}

/* HEADER */

.portfolio-header {
    margin-bottom: 50px;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-header h2 {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.portfolio-header p {
    color: #cbd5e1;
    font-size: 18px;
}

/* =========================
   SLIDER
========================= */

.portfolio-carousel {
    margin-bottom: 70px;
}

.portfolio-slide {
    position: relative;
    height: 700px;
    overflow: hidden;
}

    .portfolio-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .portfolio-slide:hover img {
        transform: scale(1.08);
    }

    .portfolio-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0,0,0,.85), rgba(0,0,0,.25), rgba(0,0,0,.05) );
        z-index: 1;
    }

/* TEXT */

.slide-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
}

    .slide-content span {
        color: #38bdf8;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .slide-content h3 {
        font-size: 65px;
        font-weight: 800;
        color: #fff;
        margin: 15px 0;
        line-height: 1.1;
    }

    .slide-content p {
        color: #e2e8f0;
        font-size: 20px;
        line-height: 1.8;
    }

/* =========================
   NAVIGATION
========================= */

.portfolio-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    background: rgba(255,255,255,.95) !important;
    font-size: 28px !important;
    transition: .3s;
}

    .portfolio-carousel .owl-nav button:hover {
        transform: translateY(-50%) scale(1.1);
    }

.portfolio-carousel .owl-prev {
    left: 30px;
}

.portfolio-carousel .owl-next {
    right: 30px;
}

.portfolio-carousel .owl-dots {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.portfolio-carousel .owl-dot.active span {
    background: #38bdf8 !important;
}

/* =========================
   STATS
========================= */

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-box {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
}

    .stat-box h3 {
        color: #38bdf8;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-box span {
        color: #cbd5e1;
        font-size: 15px;
    }

/* =========================
   MOBILE
========================= */

@media(max-width:991px) {

    .portfolio-slide {
        height: 500px;
    }

    .slide-content {
        left: 30px;
        right: 30px;
    }

        .slide-content h3 {
            font-size: 38px;
        }

        .slide-content p {
            font-size: 16px;
        }

    .portfolio-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .portfolio-header h2 {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .portfolio-slide {
        height: 400px;
    }

    .slide-content h3 {
        font-size: 28px;
    }

    .portfolio-stats {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background: #f8fafc;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    border: 1px solid #e5e7eb;
}

.section-header {
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
}

.content p {
    color: #475569;
    line-height: 1.9;
    font-size: 16px;
}

.services-title {
    margin-top: 35px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #334155;
}

    .services-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #4f46e5;
        font-weight: bold;
    }

.highlight-box {
    margin-top: 35px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
}

    .highlight-box p {
        color: #fff;
    }

@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }

    .section-header h1 {
        font-size: 30px;
    }
}
/* ==================================
   PRODUCTS SECTION
================================== */

.w3l-content-with-photo-1 {
    background: #f8fafc;
}

/* Heading */

.product-heading {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient( 135deg, #ff7a18, #ffb347 );
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255,122,24,.25);
    margin-bottom: 30px;
}

/* Product Images */

.photo-6-inf-left {
    margin-bottom: 30px;
}

    .photo-6-inf-left img {
        width: 100%;
        border-radius: 18px;
        border: 4px solid #ffffff;
        box-shadow: 0 10px 35px rgba(0,0,0,.08);
        transition: .4s ease;
    }

    .photo-6-inf-left:hover img {
        transform: translateY(-8px);
        border-color: #ffb347;
        box-shadow: 0 20px 45px rgba(255,122,24,.20);
    }

/* Contact Button */

.read .btn {
    background: linear-gradient( 135deg, #ff7a18, #ffb347 );
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: .4s;
}

    .read .btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255,122,24,.30);
    }

/* Row Spacing */

.content-photo-grids {
    margin-bottom: 25px;
}

/* Optional Card Effect */

.photo-6-inf-left {
    background: #fff;
    padding: 15px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient( 135deg, #ff7a18, #ffb347 );
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255,122,24,.25);
}

.product-heading {
    font-size: 54px;
    font-weight: 800;
    color: #111827;
    margin-top: 82px;
    margin-bottom: 15px;
    position: relative;
}

    .product-heading::after {
        content: '';
        width: 90px;
        height: 4px;
        background: linear-gradient( 135deg, #ff7a18, #ffb347 );
        display: block;
        margin: 15px auto 0;
        border-radius: 10px;
    }

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .product-heading {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}
.content-ab-right img,
.about-img {
    transition: all 0.5s ease;
}

.content-ab-right img:hover,
.about-img:hover {
    transform: scale(1.05);
}

.shadow-sm {
    transition: all 0.3s ease;
}

.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}.contact-section {
    background: linear-gradient(135deg, #f8f9ff, #eef4ff);
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-weight: bold;
    color: #6b7280;
    font-size: 16px;
}

.contact-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg,#0066ff,#00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 32px;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.contact-card p,
.contact-card a {
    color: #666;
    text-decoration: none;
    line-height: 1.8;
}

.contact-btn {
    background: linear-gradient(135deg,#0066ff,#00aaff);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.contact-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,102,255,.3);
}


.contact-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border: none;
    letter-spacing: 0.5px;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:hover {
    transform: translateY(-4px);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #0052cc, #0099ff);
}
.footer-modern {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #cbd5e1;
    padding: 50px 0 0;
    font-size: 14px;
}

.footer-modern h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-modern h5:after {
    content: '';
    width: 40px;
    height: 3px;
    background: #00c6ff;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 5px;
}

.footer-modern p,
.footer-modern li,
.footer-modern a {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.8;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-modern a:hover {
    color: #00c6ff;
    padding-left: 5px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color: #00c6ff;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: all .4s ease;
}

.footer-social a:hover {
    background: #00c6ff;
    transform: translateY(-5px);
}

.footer-contact i {
    color: #00c6ff;
    width: 22px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
}

/* Move To Top Button */

#movetop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    font-size: 22px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,114,255,.4);
    transition: all .3s ease;
}

#movetop:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,114,255,.6);
}
.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.form-title {
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.contact-info-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#0072ff,#00c6ff);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    margin-right: 20px;
}

.contact-info-box h5 {
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 600;
}

.contact-info-box p,
.contact-info-box a {
    color: #64748b;
    margin: 0;
    text-decoration: none;
}

.contact-input,
textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: .3s;
}

.contact-input:focus,
textarea:focus {
    border-color: #0072ff;
    box-shadow: 0 0 10px rgba(0,114,255,.15);
    outline: none;
}

textarea {
    min-height: 140px;
    resize: none;
}

.send-btn {
    background: linear-gradient(135deg,#0072ff,#00c6ff);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,114,255,.35);
}

.product-tabs .nav-link {
    margin: 5px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    color: #333;
    border: 1px solid #ddd;
    transition: .3s;
}

.product-tabs .nav-link.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.product-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
    transition: .4s;
}

.product-img:hover {
    transform: scale(1.03);
}

.contact-btn {
    background: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    color: #fff;
    background: #084298;
}




.products-section{
    background:linear-gradient(180deg,#f8fbff,#ffffff);
    position:relative;
    overflow:hidden;
}

.products-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#0d6efd15;
    border-radius:50%;
    top:-150px;
    left:-150px;
}

.products-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#00c6ff10;
    border-radius:50%;
    right:-180px;
    bottom:-180px;
}

.product-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    height:100%;
    position:relative;
}

.product-card:hover{

    transform:translateY(-12px);
    box-shadow:0 22px 50px rgba(13,110,253,.22);

}

.product-image{

    height:250px;
    overflow:hidden;
    position:relative;

}

.product-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.12);

}

.product-tag{

    position:absolute;
    top:15px;
    left:15px;
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.product-content{

    padding:28px;

}

.product-content h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;

}

.product-content p{

    color:#666;
    line-height:28px;
    margin-bottom:25px;

}

.product-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;

}

.product-btn:hover{

    color:#fff;
    transform:translateX(6px);

}



