:root {
            --primary: #1e3a8a;
            --primary-dark: #0a1128;
            --primary-light: #2563eb;
            --secondary: #d97706;
            --secondary-gold: #f59e0b;
            --secondary-light: #fef3c7;
            --text-main: #334155;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-main);
            background-color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Cinzel', serif;
        }

        /* ----------------------------------------------------
           NEW IMPROVED FULL-WIDTH HEADER & TOP BAR
        ---------------------------------------------------- */
        /* Top Info Bar - Full Width */
        .top-bar {
            background: linear-gradient(90deg, #070d1e 0%, #0f172a 100%);
            color: #cbd5e1;
            padding: 10px 4%;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
        }

        .top-bar-info {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .top-bar-info span, .top-bar-info a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }

        .top-bar-info i {
            color: var(--secondary-gold);
            font-size: 0.95rem;
        }

        .top-bar-info a:hover {
            color: #fff;
        }

        /* Full Width Header Navbar */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            width: 100%;
            border-bottom: 3px solid var(--secondary);
        }

        nav.full-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 4%; /* Full width margin touch */
            width: 100%;
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fde68a;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
        }

        .logo-text span.highlight {
            color: var(--secondary);
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
            letter-spacing: 0.3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--secondary), var(--secondary-gold));
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .btn-nav-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-nav-cta::after {
            display: none !important;
        }

        .btn-nav-cta:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, #b45309 100%) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(217, 119, 6, 0.35);
        }

        .menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0a1128;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:280px;
    height:100%;
    background:#fff;
    z-index:99999;
    transition:.4s;
    padding:80px 30px;
    box-shadow:-5px 0 30px rgba(0,0,0,.15);
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    display:block;
    padding:15px 0;
    text-decoration:none;
    color:#0a1128;
    font-weight:600;
    border-bottom:1px solid #eee;
}

.mobile-menu a:hover{
    color:#d97706;
}

.mobile-close{
    position:absolute;
    top:20px;
    right:20px;
    font-size:28px;
    cursor:pointer;
}

.mobile-overlay{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:9999;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

@media(max-width:991px){

    .top-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding:12px;
    }

    .top-bar-info{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo{
        font-size:1.3rem;
    }

    .logo-icon{
        width:40px;
        height:40px;
    }

}

        /* ----------------------------------------------------
           NEW LUXURY HERO SECTION WITH RICH BACKGROUND & TEXT OVERLAY
        ---------------------------------------------------- */
        #home {
            position: relative;
            min-height: 90vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Premium Overlay + High-Res Textile Layer Image */
            background: 
                linear-gradient(135deg, rgba(10, 17, 40, 0.88) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(30, 58, 138, 0.78) 100%),
                url('image/b2.png') center/cover no-repeat fixed;
            padding: 80px 5%;
            overflow: hidden;
        }

        /* Decorative background element */
        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.18) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(245, 158, 11, 0.5);
            padding: 8px 24px;
            border-radius: 30px;
            color: #fef08a;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-badge i {
            color: var(--secondary-gold);
        }

        .hero-title {
            font-size: 3.6rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 22px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }

        .hero-title span.gold-text {
            background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #e2e8f0;
            max-width: 850px;
            margin: 0 auto 40px;
            font-weight: 300;
            line-height: 1.7;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        /* Hero Feature Pills */
        .hero-highlights {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .highlight-pill {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 12px;
            color: #f1f5f9;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(5px);
        }

        .highlight-pill i {
            color: var(--secondary-gold);
            font-size: 1.1rem;
        }

        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary) 100%);
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(217, 119, 6, 0.5);
            background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        /* ----------------------------------------------------
           COMMON SECTION STYLES
        ---------------------------------------------------- */
        section {
            padding: 90px 5%;
            /* max-width: 1300px; */
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-size: 2.4rem;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--secondary-gold));
            border-radius: 2px;
        }

        /* About Section */
        #about {
            background-color: var(--bg-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            object-fit: cover;
            height: 460px;
        }

        .experience-badge {
            position: absolute;
            bottom: -25px;
            right: -20px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            padding: 25px 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
        }

        .experience-badge .years {
            font-size: 2.4rem;
            font-weight: 800;
            font-family: 'Cinzel', serif;
            color: var(--secondary-gold);
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
            color: #cbd5e1;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 0.98rem;
        }

        .info-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 25px;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            padding: 14px 18px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            border-left: 4px solid var(--secondary);
        }

        .info-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }

        .info-item div strong {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .info-item div span {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.93rem;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--secondary-gold), var(--secondary));
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .product-info {
            padding: 25px;
        }

        .product-info h3 {
            font-size: 1.35rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .product-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .product-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.92rem;
            transition: var(--transition);
        }

        .product-btn:hover {
            color: var(--secondary);
            gap: 12px;
        }

        /* Services Section */
        #services {
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            padding: 38px 25px;
            border-radius: 14px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #edf2f7;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            background: var(--secondary-light);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.9rem;
            margin: 0 auto 22px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--secondary-gold), var(--secondary));
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
            background: var(--white);
            border-radius: 18px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .contact-info-panel {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            padding: 45px 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info-panel h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .contact-info-panel p {
            color: #cbd5e1;
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        .contact-details-list {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .contact-detail-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }

        .contact-detail-item i {
            font-size: 1.3rem;
            color: var(--secondary-gold);
            margin-top: 3px;
        }

        .contact-detail-item div h4 {
            font-size: 0.95rem;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .contact-detail-item div p, .contact-detail-item div a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition);
        }

        .contact-detail-item div a:hover {
            color: var(--secondary-gold);
        }

        .contact-form-panel {
            padding: 45px 35px;
        }

        .contact-form-panel h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: #94a3b8;
            padding: 60px 5% 25px;
            border-top: 4px solid var(--secondary);
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #1e293b;
        }

        .footer-brand h2 {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 420px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 35px;
            height: 3px;
            background: var(--secondary-gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links ul li a:hover {
            color: var(--secondary-gold);
            transform: translateX(5px);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 25px;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-grid, .contact-container {
                grid-template-columns: 1fr;
            }
            .hero-title {
                font-size: 2.6rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .nav-links {
                display: none;
            }
            .hero-title {
                font-size: 2.1rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .form-row, .info-list {
                grid-template-columns: 1fr;
            }
            section {
                padding: 60px 5%;
            }
        }

        /* ===========================================================
   COMPLETE MOBILE RESPONSIVE CSS
===========================================================*/

/* Large Tablet */
@media (max-width:991px){

    .top-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding:12px 20px;
    }

    .top-bar-info{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    nav.full-nav{
        padding:15px 20px;
    }

    .logo{
        font-size:1.4rem;
    }

    .logo-icon{
        width:40px;
        height:40px;
        font-size:1.2rem;
    }

    .nav-links{
        display:none;
    }

    #home{
        background-attachment:scroll;
        min-height:auto;
        padding:100px 20px;
    }

    .hero-title{
        font-size:2.6rem;
    }

    .hero-subtitle{
        font-size:1.05rem;
    }

    .about-grid,
    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand p{
        max-width:100%;
    }

    .footer-links h4::after{
        left:50%;
        transform:translateX(-50%);
    }

}


/* Mobile */
@media (max-width:768px){

    html{
        font-size:15px;
    }

    section{
        padding:60px 18px;
    }

    .top-bar{
        padding:10px 15px;
    }

    .top-bar-info{
        flex-direction:column;
        gap:6px;
    }

    nav.full-nav{
        padding:14px 15px;
    }

    .logo{
        font-size:1.2rem;
        gap:10px;
    }

    .logo-icon{
        width:38px;
        height:38px;
        font-size:1rem;
    }

    .logo-text{
        line-height:1.2;
    }

    #home{
        padding:90px 20px;
    }

    .hero-badge{
        font-size:.75rem;
        padding:8px 15px;
        letter-spacing:1px;
    }

    .hero-title{
        font-size:2rem;
        line-height:1.3;
    }

    .hero-subtitle{
        font-size:.95rem;
        margin-bottom:30px;
    }

    .hero-highlights{
        gap:12px;
    }

    .highlight-pill{
        width:100%;
        justify-content:center;
        font-size:.85rem;
    }

    .btn-group{
        flex-direction:column;
    }

    .btn{
        width:100%;
        justify-content:center;
    }

    .section-title{
        font-size:2rem;
    }

    .about-image img{
        height:300px;
    }

    .experience-badge{
        position:relative;
        bottom:0;
        right:0;
        margin-top:20px;
        display:inline-block;
    }

    .about-content h3{
        font-size:1.5rem;
    }

    .info-list{
        grid-template-columns:1fr;
    }

    .products-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .product-img{
        height:220px;
    }

    .product-info{
        padding:20px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px 20px;
    }

    .contact-container{
        border-radius:12px;
    }

    .contact-info-panel,
    .contact-form-panel{
        padding:25px 20px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .footer{
        text-align:center;
    }

    .footer-links ul li a{
        justify-content:center;
    }

}


/* Small Mobile */
@media (max-width:480px){

    html{
        font-size:14px;
    }

    .hero-title{
        font-size:1.65rem;
    }

    .hero-subtitle{
        font-size:.9rem;
    }

    .hero-badge{
        width:100%;
        justify-content:center;
    }

    .section-title{
        font-size:1.7rem;
    }

    .product-img{
        height:190px;
    }

    .service-icon{
        width:65px;
        height:65px;
        font-size:1.5rem;
    }

    .contact-detail-item{
        gap:12px;
    }

    .btn{
        padding:14px 20px;
        font-size:.9rem;
    }

}

/* social media css */

.social-media-box{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
}

.social-media-box h4{
    color:#fff;
    margin-bottom:18px;
    font-size:18px;
    font-weight:600;
}

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    font-size:20px;
    transition:.35s;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
}

.social-icons a:hover{
    transform:translateY(-6px) scale(1.08);
}

.facebook:hover{
    background:#1877F2;
}

.instagram:hover{
    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

.linkedin:hover{
    background:#0077B5;
}

.youtube:hover{
    background:#FF0000;
}

.whatsapp:hover{
    background:#25D366;
}

@media(max-width:768px){

    .social-icons{
        justify-content:center;
    }

    .social-media-box{
        text-align:center;
    }

}

/*==========================
PAGE BANNER
==========================*/
.page-banner{
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('image/b1.png') center center/cover no-repeat;
    padding:80px 0;
    color:#fff;
    text-align:center;
}
/*==========================================
PRODUCT DETAILS PAGE
==========================================*/

.product-section{
    padding:80px 0;
    background:#fff;
}

.product-image{
    overflow:hidden;
    border-radius:15px;
}

.product-image img{
    width:100%;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-image:hover img{
    transform:scale(1.05);
}

/* Badge */

.product-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--secondary-gold),var(--secondary));
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

/* Heading */

.product-title{
    font-family:'Cinzel',serif;
    color:var(--primary-dark);
    font-size:40px;
    margin-bottom:20px;
}

.product-desc{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:25px;
}

/* Product Info */

.product-info{
    background:#f8fafc;
    border-radius:12px;
    padding:25px;
}

.product-info h6{
    color:var(--primary);
    margin-bottom:5px;
    font-weight:600;
}

.product-info p{
    margin-bottom:20px;
    color:var(--text-main);
}

/*==================================
BUTTON
==================================*/

.theme-btn{

    display:inline-block;
    padding:14px 34px;

    background:linear-gradient(135deg,
    var(--secondary-gold),
    var(--secondary));

    color:#fff;
    border-radius:35px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;

}

.theme-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    background:linear-gradient(135deg,
    var(--secondary),
    #b45309);

}

/*==================================
FEATURES
==================================*/

.feature-box{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--secondary-light);

    color:var(--secondary);

    font-size:34px;

    margin-bottom:20px;

}

.feature-box:hover .feature-icon{

    background:linear-gradient(135deg,
    var(--secondary-gold),
    var(--secondary));

    color:#fff;

}

.feature-box h5{

    color:var(--primary-dark);

    margin-bottom:12px;

}

.feature-box p{

    color:var(--text-muted);

}

/*==================================
TABLE
==================================*/

.table-theme{

    border-radius:12px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.table-theme thead{

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

}

.table-theme th{

    padding:15px;

}

.table-theme td{

    padding:15px;

}

.table-theme tbody tr:nth-child(even){

    background:#f8fafc;

}

/*==================================
APPLICATION LIST
==================================*/

.app-list{

    list-style:none;

    padding:0;

}

.app-list li{

    padding:15px;

    margin-bottom:12px;

    border-radius:10px;

    background:#fff;

    box-shadow:var(--shadow-sm);

}

.app-list li i{

    color:var(--secondary);

    margin-right:10px;

}

/*==================================
CTA
==================================*/

.cta-box{

    background:linear-gradient(135deg,
    var(--primary-dark),
    var(--primary));

    padding:60px;

    border-radius:20px;

    text-align:center;

    color:#fff;

}

.cta-box h2{

    color:#fff;

    margin-bottom:20px;

}

.cta-box p{

    color:#dbeafe;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.product-title{

font-size:32px;

}

.product-section{

text-align:center;

}

.product-image{

margin-bottom:35px;

}

}

@media(max-width:576px){

.product-title{

font-size:26px;

}

.theme-btn{

width:100%;

text-align:center;

}

.cta-box{

padding:35px 20px;

}

}
/*========================================
        SERVICES PAGE CSS
========================================*/

.service-box{
    background:#fff;
    border-radius:15px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid var(--primary);
    height:100%;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
    transition:.4s;
}

.service-box:hover .service-icon{
    background:linear-gradient(135deg,var(--secondary),var(--secondary-gold));
    transform:rotateY(180deg);
}

.service-box h4{
    color:var(--primary-dark);
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.service-box p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}


/*========================================
        EXPORT PROCESS
========================================*/

.process-box{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-box span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:28px;
    font-weight:bold;
}

.process-box h5{
    color:var(--primary-dark);
    font-size:22px;
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    margin:0;
}


/*========================================
        WHY CHOOSE US
========================================*/

.choose-list{
    list-style:none;
    padding:0;
    margin:0;
}

.choose-list li{
    padding:15px 20px;
    margin-bottom:15px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.choose-list li:hover{
    transform:translateX(8px);
}

.choose-list i{
    color:var(--secondary);
    margin-right:10px;
}


/*========================================
        CTA SECTION
========================================*/

.cta-section{
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    color:#fff;
    padding:90px 0;
}

.cta-section h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.cta-section p{
    font-size:18px;
    color:#dbe5ff;
    max-width:750px;
    margin:auto;
    margin-bottom:35px;
}

.cta-section .btn-warning{
    background:linear-gradient(135deg,var(--secondary-gold),var(--secondary));
    border:none;
    color:#fff;
    font-weight:600;
    padding:14px 40px;
    border-radius:40px;
    transition:.35s;
}

.cta-section .btn-warning:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}


/*========================================
        SECTION TITLE
========================================*/

.section-subtitle{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:8px;
    display:block;
}

.section-title{
    color:var(--primary-dark);
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}


/*========================================
        RESPONSIVE
========================================*/

@media(max-width:991px){

.service-box,
.process-box{
    margin-bottom:25px;
}

.cta-section h2{
    font-size:34px;
}

.section-title{
    font-size:34px;
}

}

@media(max-width:768px){

.service-box{
    padding:30px 20px;
}

.service-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.service-box h4{
    font-size:22px;
}

.process-box{
    padding:30px 20px;
}

.process-box span{
    width:60px;
    height:60px;
    font-size:24px;
}

.choose-list li{
    font-size:15px;
}

.cta-section{
    padding:70px 20px;
}

.cta-section h2{
    font-size:28px;
}

.cta-section p{
    font-size:16px;
}

.section-title{
    font-size:30px;
}

}

@media(max-width:576px){

.service-box{
    padding:25px 18px;
}

.service-box h4{
    font-size:20px;
}

.process-box h5{
    font-size:20px;
}

.cta-section h2{
    font-size:24px;
}

.cta-section .btn-warning{
    width:100%;
}

}