/*
Theme Name: Bhartiya Theme By Rashmi
Author: Rashmi Tewary
*/


/*--------------------------------------------------------------
# GLOBAL
--------------------------------------------------------------*/

html,
body {

    overflow-x: hidden;

    max-width: 100%;

}
* {

    box-sizing: border-box;

}

body {

    background-image:
        linear-gradient(
            to bottom,
            rgba(248,248,253,0.08),
            rgba(248,248,253,0.25)
        ),
        url("/wp-content/themes/Bhartiya-Theme/images/bg.png");

    background-color: #F8F8FD;

    background-repeat: no-repeat;

    background-position: top center;

    background-size: cover;

    background-attachment: fixed;

    color: #334155;

    font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Gothic A1", sans-serif;
    color: #11829C;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
body h2 {

    font-family: "Gothic A1", sans-serif;

    font-size: 32px;

    font-weight: 700;

    line-height: 1.3;

    color: #11829C;

    margin-top: 50px;

    margin-bottom: 24px;

    position: relative;

    letter-spacing: -0.5px;

}

/* Accent underline */

body h2::after  {

    content: '';

    display: block;

    width: 70px;

    height: 4px;

    margin-top: 12px;

    border-radius: 20px;
	
    background: linear-gradient(
        90deg,
        #11829C,
        #38bdf8
    );

}
body h3 {

    font-family: "Gothic A1", sans-serif;

    font-size: 24px;

    font-weight: 600;

    line-height: 3;

    color: #0f172a;

    margin-top: 45px;

    margin-bottom: 24px;

    letter-spacing: -0.3px;

    position: relative;

    padding-left: 18px;

}

/* Left Accent Bar */

body h3::before {

    content: '';

    position: absolute;

    left: 0;

    top: 8px;

    width: 5px;

    height: 65%;

    border-radius: 20px;

    background: linear-gradient(
        to bottom,
        #11829C,
        #38bdf8
    );

}

/* Better spacing after h3 */

h3 + p,
h3 + ul,
h3 + div {

    margin-top: 18px;

}

/*--------------------------------------------------------------
# LISTS
--------------------------------------------------------------*/

nav ul,
nav li {
    list-style: none !important;
}

nav ul li::before,
#contact ul li::before {
    display: none;
}

ul li {
    list-style: none;
    margin-bottom: 10px;
	position: relative;
    padding-left: 36px;
}

ul li::before {

    content: '\f00c';

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 22px;

    height: 22px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    background:
        linear-gradient(
            135deg,
            #11829C,
            #0ea5e9
        );

    color: #ffffff;

    box-shadow:
        0 6px 14px rgba(17,130,156,0.18);

}



/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/

nav a:hover,
nav a.active {
    color: green;
    font-weight: bold;
}

.nav-link {

    position: relative;

    display: flex;

    align-items: center;

    height: 100%;

    padding: 0 10px;

    font-weight: bold;
}

.nav-link::before {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background-color: orange;

    transform: translateX(-100%);

    visibility: hidden;

    transition: transform 0.5s ease-out;
}

.nav-link:hover::before,
.nav-link.active::before {

    transform: translateX(0);

    visibility: visible;
}
/*--------------------------------------------------------------
# HOME PAGE
--------------------------------------------------------------*/
.led-homepage {

    background:
        #050816;

    color:
        #ffffff;

}
/*======================================
LED HERO
======================================*/

.led-hero {

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at top left,
            rgba(0,229,255,0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255,45,149,0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #020617 0%,
            #071129 45%,
            #050816 100%
        );

    padding:
        120px 6% 100px;

}

.hero-fairy-image {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 135%;

    max-width: none;

    transform:
        translate(-50%, -50%);

    z-index: 5;

    pointer-events: none;

    filter:
        drop-shadow(0 0 40px rgba(0,229,255,0.18))
        drop-shadow(0 0 80px rgba(124,58,237,0.16));

    animation:
        floatFairy 6s ease-in-out infinite;

}



@keyframes floatFairy {

    0% {

        transform:
            translate(-50%, -50%)
            translateY(0px);

    }

    50% {

        transform:
            translate(-50%, -50%)
            translateY(-14px);

    }

    100% {

        transform:
            translate(-50%, -50%)
            translateY(0px);

    }

}

/*Grid Overlay*/

.led-hero-overlay {

    position: absolute;

    inset: 0;

    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:
        50px 50px;

    opacity: 0.3;

}



/*Container*/

.led-hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}



/*======================================
LEFT CONTENT
======================================*/

.led-hero-content {

    max-width: 650px;

}



.led-hero-tag {

    display: inline-flex;

    align-items: center;

    padding:
        12px 22px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    color:
        #67e8f9;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 30px;

    backdrop-filter: blur(10px);

}



.led-hero-content h1 {

    font-size: clamp(52px,6vw,86px);

    line-height: 1.02;

    font-weight: 900;

    color: #ffffff;

    margin-bottom: 28px;

}



.led-hero-content p {

    font-size: 18px;

    line-height: 1.9;

    color:
        rgba(255,255,255,0.72);

    margin-bottom: 42px;

}



/*Buttons*/

.led-hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}



.led-primary-btn {

    padding:
        16px 34px;

    border-radius: 16px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    box-shadow:
        0 16px 40px rgba(59,130,246,0.35);

    transition:
        0.35s ease;

}



.led-primary-btn:hover {

    transform:
        translateY(-4px);

}



.led-secondary-btn {

    padding:
        16px 34px;

    border-radius: 16px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 600;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.10);

}



/*======================================
RIGHT VISUAL
======================================*/

.led-hero-visual {

    position: relative;

    height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;

}



/*Stage*/

.led-stage {

    position: relative;

    width: 520px;

    height: 520px;

    perspective: 1400px;

}



/*Main Screen*/

.main-screen {

    position: absolute;

    inset: 0;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    box-shadow:
        0 0 80px rgba(59,130,246,0.45),
        0 0 140px rgba(124,58,237,0.28);

    transform:
        perspective(1200px)
        rotateY(-12deg)
        rotateX(6deg);

}



/*Pixel Texture*/

.main-screen::before {

    content: '';

    position: absolute;

    inset: 0;

    border-radius: 28px;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        );

    background-size:
        10px 10px;

    mix-blend-mode: overlay;

    opacity: 0.4;

}



/*Side Panels*/

.left-screen,
.right-screen {

    position: absolute;

    width: 120px;

    height: 340px;

    top: 90px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #00E5FF,
            #7C3AED
        );

    opacity: 0.8;

    filter: blur(0.2px);

}



.left-screen {

    left: -70px;

    transform:
        rotateY(40deg)
        rotate(-6deg);

}



.right-screen {

    right: -70px;

    transform:
        rotateY(-40deg)
        rotate(6deg);

}



/*Stage Floor*/

.led-stage-floor {

    position: absolute;

    bottom: -80px;

    left: 50%;

    width: 420px;

    height: 120px;

    transform:
        translateX(-50%)
        perspective(1000px)
        rotateX(82deg);

    background:
        linear-gradient(
            90deg,
            rgba(0,229,255,0.5),
            rgba(124,58,237,0.5),
            rgba(255,45,149,0.5)
        );

    filter:
        blur(20px);

    opacity: 0.7;

}



/*======================================
ORBS
======================================*/

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter:
        blur(40px);

}



.orb-1 {

    width: 180px;

    height: 180px;

    background:
        rgba(0,229,255,0.24);

    top: 40px;

    right: 100px;

}



.orb-2 {

    width: 220px;

    height: 220px;

    background:
        rgba(124,58,237,0.20);

    bottom: 60px;

    left: 40px;

}



.orb-3 {

    width: 140px;

    height: 140px;

    background:
        rgba(255,45,149,0.18);

    bottom: 140px;

    right: 20px;

}



/*======================================
PARTICLES
======================================*/

.hero-particles span {

    position: absolute;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    opacity: 0.7;

    animation:
        floatParticle 8s linear infinite;

}



.hero-particles span:nth-child(1) {

    top: 20%;

    left: 10%;

}



.hero-particles span:nth-child(2) {

    top: 60%;

    left: 15%;

}



.hero-particles span:nth-child(3) {

    top: 15%;

    right: 20%;

}



.hero-particles span:nth-child(4) {

    bottom: 30%;

    right: 10%;

}



.hero-particles span:nth-child(5) {

    bottom: 10%;

    left: 30%;

}



.hero-particles span:nth-child(6) {

    top: 40%;

    right: 35%;

}



/*Animation*/

@keyframes floatParticle {

    0% {

        transform:
            translateY(0);

        opacity: 0;

    }

    50% {

        opacity: 1;

    }

    100% {

        transform:
            translateY(-80px);

        opacity: 0;

    }

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .led-hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }

    .led-hero-content {

        margin: auto;

    }

    .led-hero-buttons {

        justify-content: center;

    }

}



@media (max-width: 768px) {

    .led-hero {

        min-height: auto;

        padding:
            120px 20px 80px;

    }

    .led-hero-visual {

        height: 420px;

    }

    .led-stage {

        width: 300px;

        height: 300px;

    }

    .left-screen,
    .right-screen {

        display: none;

    }

}
/*======================================
GRADIENT TEXT
======================================*/

.gradient-text {

    background:
        linear-gradient(
            135deg,
            #00E5FF 0%,
            #3B82F6 30%,
            #7C3AED 65%,
            #FF2D95 100%
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

}



/*Optional Glow Version*/

.gradient-text-glow {

    background:
        linear-gradient(
            135deg,
            #00E5FF 0%,
            #3B82F6 30%,
            #7C3AED 65%,
            #FF2D95 100%
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

    filter:
        drop-shadow(0 0 12px rgba(59,130,246,0.35));

}

/*======================================
LED CATEGORY GRID
======================================*/

.led-categories-grid {

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0,1fr)) !important;

    gap: 28px;

    width: 100%;

}



/*======================================
LED DISPLAY CARD
======================================*/

.led-display-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.08);

    transition:
        0.4s ease;

    backdrop-filter: blur(14px);

    box-shadow:
        0 12px 40px rgba(0,0,0,0.28);

}



.led-display-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,255,255,0.18);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.32);

}



/*======================================
IMAGE
======================================*/

.led-card-image {

    position: relative;

    z-index: 2;

}



.led-card-image img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    display: block;

}



/*======================================
CONTENT
======================================*/

.led-card-content {

    position: relative;

    z-index: 2;

    padding: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,0.18),
            rgba(59,130,246,0.16),
            rgba(124,58,237,0.16),
            rgba(255,45,149,0.14)
        );

    backdrop-filter: blur(14px);

}



/*Gradient Glow Line*/

.led-card-content::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

}



/*======================================
TEXT
======================================*/

.led-card-content h3 {

    color: #ffffff;

    font-size: 24px;

    margin-bottom: 14px;

}



.led-card-content p {

    color:
        rgba(255,255,255,0.72);

    line-height: 1.8;

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .led-categories-grid {

        grid-template-columns:
            repeat(2,1fr) !important;

    }

}



@media (max-width: 768px) {

    .led-categories-grid {

        grid-template-columns:
            1fr !important;

    }

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .led-categories-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}



@media (max-width: 768px) {

    .led-categories-grid {

        grid-template-columns:
            1fr;

    }

}

/*======================================
CATEGORY STRIP
======================================*/

.led-category-strip {

    background:
        #050816;

    padding:
        30px 6% 70px;

}



.led-category-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 18px;

}



.led-category-card {

    padding:
        26px 22px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    text-align: center;

    color: #ffffff;

    font-weight: 700;

    line-height: 1.7;

    backdrop-filter: blur(12px);

    transition: 0.35s ease;

}



.led-category-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,255,255,0.4);

}



/*======================================
MOBILE
======================================*/

@media (max-width: 991px) {

    .led-hero-container {

        flex-direction: column;

        text-align: center;

    }

    .led-hero-content {

        max-width: 100%;

    }

    .led-hero-buttons {

        justify-content: center;

    }

    .led-category-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}



@media (max-width: 640px) {

    .led-hero {

        padding:
            90px 20px 60px;

    }

    .led-hero-content h1 {

        font-size: 42px;

    }

    .led-category-grid {

        grid-template-columns:
            1fr;

    }

}
/*======================================
WHY CHOOSE LED
======================================*/

.why-led-section {

    padding:
        100px 6%;

    background:
        linear-gradient(
            180deg,
            #050816 0%,
            #071129 100%
        );

}



/*Grid*/

.why-led-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 24px;

    margin-top: 70px;

}



/*Card*/

.why-led-card {

    position: relative;

    overflow: hidden;

    padding: 40px 32px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(0,229,255,0.12),
            rgba(59,130,246,0.10),
            rgba(124,58,237,0.10),
            rgba(255,45,149,0.08)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    transition:
        0.4s ease;

    backdrop-filter: blur(14px);

}



.why-led-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.28);

}



/*Icon*/

.why-led-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #7C3AED,
            #FF2D95
        );

}



/*Text*/

.why-led-card h3 {

    color: #ffffff;

    font-size: 24px;

    margin-bottom: 16px;

}



.why-led-card p {

    color:
        rgba(255,255,255,0.72);

    line-height: 1.8;

}



/*======================================
STATS
======================================*/

.led-stats-row {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 24px;

    margin-top: 80px;

}



.led-stat-box {

    text-align: center;

    padding: 36px 20px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.08);

}



.led-stat-box h3 {

    font-size: 42px;

    color: #ffffff;

    margin-bottom: 10px;

}



.led-stat-box span {

    color:
        rgba(255,255,255,0.72);

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .why-led-grid,
    .led-stats-row {

        grid-template-columns:
            repeat(2,1fr);

    }

}



@media (max-width: 768px) {

    .why-led-grid,
    .led-stats-row {

        grid-template-columns:
            1fr;

    }

}
/*======================================
LED CONSULTATION
======================================*/

.led-consultation {

    position: relative;

    overflow: hidden;

    padding:
        120px 6%;

    background:
        linear-gradient(
            135deg,
            #020617 0%,
            #071129 40%,
            #050816 100%
        );

}



/*Glow Background*/

.led-consultation-bg {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(0,229,255,0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255,45,149,0.16),
            transparent 40%
        );

    z-index: 1;

}



/*Container*/

.led-consultation-container {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;

}



/*Tag*/

.consultation-tag {

    display: inline-block;

    padding:
        10px 20px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.10);

    color:
        #67e8f9;

    font-weight: 600;

    margin-bottom: 28px;

}



/*Heading*/

.led-consultation h2 {

    font-size: clamp(38px,5vw,68px);

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 26px;

}



/*Paragraph*/

.led-consultation p {

    max-width: 760px;

    margin:
        0 auto 40px;

    color:
        rgba(255,255,255,0.76);

    font-size: 18px;

    line-height: 1.9;

}



/*Buttons*/

.consultation-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}



/*Primary Button*/

.consultation-primary {

    padding:
        16px 34px;

    border-radius: 14px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    box-shadow:
        0 14px 40px rgba(59,130,246,0.35);

    transition:
        0.35s ease;

}



.consultation-primary:hover {

    transform:
        translateY(-4px);

}



/*Secondary Button*/

.consultation-secondary {

    padding:
        16px 34px;

    border-radius: 14px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 600;

    border:
        1px solid rgba(255,255,255,0.12);

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(10px);

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 768px) {

    .led-consultation {

        padding:
            90px 20px;

    }

    .led-consultation h2 {

        font-size: 42px;

    }

}
/*======================================
FEATURED INSTALLATIONS
======================================*/

.featured-installations {

    padding:
        100px 6%;

    background:
        linear-gradient(
            180deg,
            #081120 0%,
            #050816 100%
        );

}



.installations-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    grid-auto-rows: 280px;

    gap: 24px;

}



/*Large Cards*/

.installation-card.large {

    grid-column:
        span 2;

    grid-row:
        span 2;

}



.installation-card.wide {

    grid-column:
        span 2;

}



/*Card*/

.installation-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background:
        #0f172a;

    border:
        1px solid rgba(255,255,255,0.08);

    cursor: pointer;

}



.installation-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}



.installation-card:hover img {

    transform:
        scale(1.08);

}



/*Overlay*/

.installation-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(2,6,23,0.92),
            rgba(2,6,23,0.1)
        );

}



.installation-overlay h3 {

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 10px;

}



.installation-overlay p {

    color:
        rgba(255,255,255,0.78);

    line-height: 1.8;

}



/*Glow Border*/

.installation-card::before {

    content: '';

    position: absolute;

    inset: 0;

    border-radius: 28px;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,0.4),
            rgba(124,58,237,0.35),
            rgba(255,45,149,0.35)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:
        xor;

    pointer-events: none;

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 991px) {

    .installations-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            320px;

    }

    .installation-card.large,
    .installation-card.wide {

        grid-column:
            span 1;

        grid-row:
            span 1;

    }

}
/*--------------------------------------------------------------
# PRODUCT PAGE
--------------------------------------------------------------*/

.product-container {

    max-width: 1400px;

    margin: 40px auto;

    padding: 40px 6% 100px;

    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at top left,
            rgba(0,229,255,0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255,45,149,0.15),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    box-shadow:
        0 15px 50px rgba(0,0,0,0.06);

}
.product-container > * {

    position: relative;

    z-index: 2;

}
/*--------------------------------------------------------------
# BREADCRUMBS
--------------------------------------------------------------*/

.breadcrumbs {
    color: #64748b;

    font-size: 14px;

    margin-bottom: 30px;

}



/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/

.product-hero {

    display: flex;

    flex-direction: column;

    gap: 28px;
	    background: white;

    border-radius: 32px;

    padding: 50px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.06);

    border:
        1px solid rgba(0,0,0,0.05);
}

.product-header {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.product-title {

    font-size: 42px;

    color: #0f172a;
	    font-size: clamp(42px,5vw,68px);

    line-height: 1.05;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.product-rating {

    display: flex;

    align-items: center;

    gap: 10px;
}

.stars {

    color: #f59e0b;

    font-size: 22px;

    letter-spacing: 2px;

}

.rating-text {

    font-size: 15px;

    color: #64748b;
}



/*--------------------------------------------------------------
# MAIN IMAGE
--------------------------------------------------------------*/

.product-main-image {

    width: 100%;
}

.product-main-image img {

    width: 100%;

    height: auto;

    object-fit: contain;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12);

}



/*--------------------------------------------------------------
# IMAGE GALLERY
--------------------------------------------------------------*/

.product-gallery-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 18px;
}

.product-gallery-item img {

    width: 95px;

    height: 95px;

    object-fit: cover;

    border: 2px solid transparent;
	    border-radius: 16px;

    transition: 0.3s;

    cursor: pointer;
}

.product-gallery-item img:hover {

    transform: scale(1.05);

    border-color: #11829C;
}



/*--------------------------------------------------------------
# EXCERPT
--------------------------------------------------------------*/

.product-excerpt {

    margin-top: 40px;

    padding: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,0.06),
            rgba(124,58,237,0.05)
        );

    font-size: 18px;

    line-height: 1.9;
}



/*--------------------------------------------------------------
# CTA BUTTONS
--------------------------------------------------------------*/

.product-cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}

.whatsapp-btn,
.brochure-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 28px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.whatsapp-btn {

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );
    color: #ffffff;
}

.brochure-btn {

    background: #11829C;

    color: #ffffff;
}

.whatsapp-btn:hover,
.brochure-btn:hover {

    transform: translateY(-3px);
}



/*--------------------------------------------------------------
# CONTENT SECTIONS
--------------------------------------------------------------*/

.product-description-section,
.product-specifications,
.product-videos,
.product-brochure-section,
.product-reviews,
.product-faqs {

    margin-bottom: 70px;
}

.product-specifications h2,
.product-videos h2,
.product-reviews h2,
.product-faqs h2 {

    font-size: 42px;

    margin-bottom: 35px;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}
.product-videos {

    margin-top: 70px;

}

.product-video-item iframe {

    border-radius: 24px;

    overflow: hidden;

}


/*--------------------------------------------------------------
# DESCRIPTION
--------------------------------------------------------------*/
/* Product Description */
.product-description {

    background: white;

    border-radius: 28px;

    padding: 50px;

    margin-top: 50px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);

}
.product-description ul {

    padding-left: 0;

    list-style: none;

}

.product-description li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 14px;

}

.product-description li::before {

    content: '';

    position: absolute;

    left: 0;

    top: 10px;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #FF2D95
        );

}
.product-description-section {

    margin-top: 60px;

}

.product-description-content {

    font-size: 18px;

    line-height: 1.9;

    color: #475569;

}

.product-description-content h2 {

    font-size: 42px;

    font-weight: bolder;

    color: #11829C;

    margin-top: 50px;

    margin-bottom: 24px;

    line-height: 1.3;

}

.product-description-content p {

    margin-bottom: 24px;

}

.product-description-content ul {

    margin-top: 25px;

    margin-bottom: 30px;

    padding-left: 0;

}

.product-description-content ul li {

    list-style: none;

    position: relative;

    padding-left: 34px;

    margin-bottom: 16px;

    color: #334155;

    line-height: 1.8;

}

.product-description-content ul li::before {

    content: '';

    position: absolute;

    left: 0;

    top: 8px;

    width: 18px;

    height: 18px;

    background-image: url('/wp-content/themes/Bhartiya-Theme/images/check.png');

    background-size: contain;

    background-repeat: no-repeat;

}

.product-description-content strong {

    color: #0f172a;

}

.product-description-content img {

    width: 100%;

    height: auto;

    border-radius: 18px;

    margin: 35px 0;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);

}
/*======================================
TABLES INSIDE PRODUCT DESCRIPTION
======================================*/

.product-description table {

    width: 100%;

    border-collapse: collapse;

    margin: 30px 0;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.06);

    table-layout: fixed;
}

.product-description th,
.product-description td {

    width: 50%;

}
.product-description table tr > * {

    width: 50%;

}

.product-description th {

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED
        );

    color: #ffffff;

    padding: 16px 20px;

    text-align: left;

    font-weight: 700;

}



.product-description td {

    padding: 16px 20px;

    border-bottom:
        1px solid #e5e7eb;

}



.product-description tr:nth-child(even) td {

    background: #f8fbff;

}



.product-description tr:hover td {

    background: #eef8ff;

}
/*--------------------------------------------------------------
# SPECIFICATIONS
--------------------------------------------------------------*/

.specifications-table {

    width: 100%;

    border-collapse: collapse;

    overflow: hidden;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.05);

}
.specifications-table th,
.specifications-table td {

    padding: 18px;

    border: 1px solid #e2e8f0;
}

.specifications-table th {

    width: 35%;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6
        );

    color: white;

    padding: 18px;

}

.specifications-table td {

    padding: 18px;

    background: #ffffff;

}
.specifications-table tr:nth-child(even) td {

    background: #f8fbff;

}


/*--------------------------------------------------------------
# VIDEOS
--------------------------------------------------------------*/

.product-video-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    justify-content: center;

    margin-top: 20px;
}

.product-video-item {

    width: 320px;

    padding: 10px;

    border-radius: 18px;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(10px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);
}

.product-video-item iframe {

    width: 100%;

    height: 180px;

    border: none;

    border-radius: 12px;
}



/*--------------------------------------------------------------
# REVIEWS
--------------------------------------------------------------*/

.reviews-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    justify-content: center;

    margin-top: 30px;
}

.review-card {

    width: 320px;

    overflow: hidden;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
	background: white;

    border-radius: 24px;

    padding: 30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);
}


.review-card:hover {

    transform: translateY(-5px);
}

.review-image img {

    width: 100%;

    height: 180px;

    object-fit: cover;
}

.review-content {

    padding: 20px;
}

.review-rating {

    padding: 16px 20px 0;

    color: #f59e0b;

    font-size: 18px;

    letter-spacing: 2px;
}

.review-content h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 4px;

    color: #0f172a;
}

.review-company {

    font-size: 14px;

    font-weight: 600;

    color: #11829C;

    margin-bottom: 2px;
}

.review-place {

    font-size: 13px;

    color: #64748b;

    margin-bottom: 14px;
}

.review-text {

    font-size: 15px;

    line-height: 1.7;

    color: #334155;
}



/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-item {

	background: white;

    border-radius: 20px;

    padding: 25px;

    margin-bottom: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}


.faq-question {

    font-size: 22px;

    font-weight: 600;

    margin-bottom: 12px;

    color: #0f172a;
}

.faq-answer {

    line-height: 1.8;

    color: #475569;
}



/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 768px) {

    .product-container {

        padding: 25px;
    }

    .product-title {

        font-size: 32px;
    }

    .product-main-image img {

        height: 350px;
    }

    .product-gallery-item img {

        width: 75px;

        height: 75px;
    }

    .product-cta-buttons {

        flex-direction: column;
    }

    .whatsapp-btn,
    .brochure-btn {

        width: 100%;
    }

    .specifications-table th,
    .specifications-table td {

        padding: 12px;

        font-size: 14px;
    }
    .hero-buttons,
    .section-buttons,
    .about-buttons {

        flex-direction: column;

        width: 100%;

        gap: 14px;

    }

    .hero-buttons a,
    .section-buttons a,
    .about-buttons a {

        width: 100%;

        text-align: center;

        justify-content: center;

    }
}

/* FORCE PRODUCT DESCRIPTION STYLES */

.product-description-content ul {

    list-style: disc !important;

    margin-left: 25px !important;

    padding-left: 20px !important;

}

.product-description-content ul li {

    list-style: disc !important;

    display: list-item !important;

    padding-left: 0 !important;

    margin-bottom: 16px !important;

    color: #334155 !important;

    line-height: 1.8 !important;

}

/* REMOVE GLOBAL CUSTOM CHECK ICON */

.product-description-content ul li::before {

    content: none !important;

    display: none !important;

}



.product-description-content p {

    margin-bottom: 22px !important;

    line-height: 1.9 !important;

}

/*======================================
CATALOGUE PAGE
======================================*/

.catalogue-container {
    width: min(1450px, 92%);
    margin: 60px auto 100px;
}

/*======================================
HERO
======================================*/

.catalogue-hero {
    text-align: center;
    padding: 70px 30px;
    margin-bottom: 70px;
    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(17,130,156,0.08),
            rgba(255,255,255,0.9)
        );

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.06);
}

.catalogue-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 800;
}

.catalogue-hero p {
    max-width: 900px;
    margin: auto;
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
}

/*======================================
CATEGORY SECTION
======================================*/

.catalogue-category {
    margin-bottom: 90px;
}

.catalogue-category h2 {
    font-size: 38px;
    margin-bottom: 40px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(17,130,156,0.15);
    color: #11829C;
}

.catalogue-subcategory {
    margin-bottom: 50px;
}

.catalogue-subcategory h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #0f172a;
}

/*======================================
GRID
======================================*/

.catalogue-grid {

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;

}

/*======================================
CARD
======================================*/

.catalogue-card {
    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(10px);
	width: auto !important;
    min-width: 0;

    border-radius: 28px;

    overflow: hidden;

    transition: 0.35s ease;

    box-shadow:
        0 12px 40px rgba(0,0,0,0.08);

    position: relative;
}

.catalogue-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.12);
}

/*======================================
IMAGE
======================================*/

.catalogue-image {

    background: #ffffff;

    border-top-left-radius: 28px;

    border-top-right-radius: 28px;

    overflow: hidden;

    padding: 20px;

}

.catalogue-image img {

    width: 100%;

    height: 240px;

    object-fit: contain;

    display: block;

}

.catalogue-card:hover .catalogue-image img {
    transform: scale(1.04);
}

/*======================================
CONTENT
======================================*/

.catalogue-content {
    padding: 28px;
}

.catalogue-content h4 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #0f172a;
}

.catalogue-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
}

/*======================================
BUTTON
======================================*/

.catalogue-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 14px;

    background: #11829C;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.catalogue-button:hover {
    background: #0B6A7C;

    transform: translateY(-2px);
}

/*======================================
MOBILE
======================================*/

@media (max-width: 768px) {

    .catalogue-container {
        width: 94%;
        margin-top: 30px;
    }

    .catalogue-hero {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .catalogue-hero h1 {
        font-size: 38px;
    }

    .catalogue-hero p {
        font-size: 16px;
    }

    .catalogue-category h2 {
        font-size: 30px;
    }

    .catalogue-subcategory h3 {
        font-size: 22px;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalogue-image img {
        height: 220px;
    }

}
@media (max-width: 1200px) {

    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .catalogue-grid {
        grid-template-columns: 1fr;
    }

}
/*======================================
CONTACT STRIP
======================================*/

.catalogue-contact-strip {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    margin-bottom: 80px;

}

.contact-strip-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    border-radius: 24px;

    text-decoration: none;

    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);

    transition: 0.3s ease;

}

.contact-strip-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 16px 45px rgba(0,0,0,0.12);

}

.contact-icon {

    font-size: 34px;

    flex-shrink: 0;

}

.contact-strip-card strong {

    display: block;

    font-size: 20px;

    color: #0f172a;

    margin-bottom: 4px;

}

.contact-strip-card p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

}

/*Mobile*/

@media (max-width: 768px) {

    .catalogue-contact-strip {

        grid-template-columns: 1fr;

    }

}
/*======================================
FLOATING WHATSAPP
======================================*/

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.18);

    transition: 0.3s ease;
}

.floating-whatsapp:hover {

    transform: scale(1.08);

}

/*Mobile*/

@media (max-width: 768px) {

    .floating-whatsapp {

        width: 58px;
        height: 58px;

        font-size: 26px;

        right: 16px;
        bottom: 16px;

    }

}

/*======================================
POPUP MAKER STYLING
======================================*/

.pum-container {

    width: min(520px, 92vw) !important;

    border-radius: 28px !important;

    padding: 24px !important;

    background:
        rgba(255,255,255,0.92) !important;

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.18);
}



/*======================================
TITLE
======================================*/

.pum-title {

    font-size: 30px !important;

    font-weight: 800 !important;

    color: #0f172a !important;

    margin-bottom: 10px !important;

    text-align: center;

}



/*======================================
CONTENT
======================================*/

.pum-content {

    font-size: 16px;

    color: #64748b;

}



/*======================================
OVERLAY
======================================*/

.pum-overlay {

    backdrop-filter: blur(6px);

    background:
        rgba(15,23,42,0.45) !important;
	    padding-top: 0 !important;

}





/*======================================
CLOSE BUTTON
======================================*/

.pum-close {

    background: #ffffff !important;

    color: #0f172a !important;

    border-radius: 50% !important;

    width: 38px !important;

    height: 38px !important;

    font-size: 22px !important;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.12);

    padding: 0 !important;

}



/*======================================
SUBTITLE
======================================*/

.popup-subtitle {

    text-align: center;

    line-height: 1.6;

    color: #64748b;

    margin-bottom: 15px;

}
.pum-active .pum-container {

    margin-top: 10px !important;

}


/*======================================
MOBILE
======================================*/

@media (max-width: 768px) {

    .pum-container {

        width: 94vw !important;

        padding: 20px !important;

        border-radius: 24px !important;
    }

    .pum-title {

        font-size: 24px !important;

    }

}
/*======================================
QUOTE FORM
======================================*/

.quote-form {

    margin-top: 15px;

}

.quote-form label {

    display: block;

    margin-bottom: -10px;

    margin-top: 0px;

    font-size: 15px;

    font-weight: 700;

    color: #0f172a;

}

.quote-form input,
.quote-form textarea {

    width: 100%;

    padding: 10px 13px;

    border-radius: 18px;

    border: 1px solid #dbe4ee;

    background:
        rgba(248,250,252,0.85);

    font-size: 15px;

    transition: 0.3s ease;

    outline: none;

}

.quote-form input:focus,
.quote-form textarea:focus {

    border-color: #11829C;

    box-shadow:
        0 0 0 4px rgba(17,130,156,0.12);

    background: #ffffff;

}

.quote-form textarea {

    min-height: 80px;

    resize: vertical;

}

.quote-form input[type="submit"] {

    width: 100%;

    margin-top: 5px;

    padding: 14px;

    border-radius: 18px;

    background: #11829C;

    color: #ffffff;

    border: none;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow:
        0 10px 25px rgba(17,130,156,0.22);

}
.quote-form p{
    margin-top: 0;

    margin-bottom: 14px;
}
.quote-form input[type="submit"]:hover {

    background: #0B6A7C;

    transform: translateY(-2px);

}

/*======================================
SOLUTIONS PAGE
======================================*/

.solutions-showcase {

    margin-top: 70px;

}

.solution-showcase-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 90px;

}

.solution-reverse .solution-showcase-image {

    order: 2;

}

.solution-reverse .solution-showcase-content {

    order: 1;

}

.solution-showcase-image img {

    width: 100%;

    border-radius: 28px;

    display: block;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);

}

.solution-showcase-content {

    padding: 10px;

}

.solution-category {

    display: inline-block;

    margin-bottom: 16px;

    padding: 8px 16px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

}

.solution-showcase-content h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 22px;

}

.solution-showcase-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #475569;

    margin-bottom: 32px;

}

@media (max-width: 900px) {

    .solution-showcase-card {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .solution-reverse .solution-showcase-image,
    .solution-reverse .solution-showcase-content {

        order: initial;

    }

    .solution-showcase-content h2 {

        font-size: 32px;

    }

}
/*======================================
SOLUTIONS HERO
======================================*/

.solutions-hero {

    text-align: center;

    padding: 40px 0 20px;

    margin-bottom: 70px;

}

.solutions-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 24px;

}

.solutions-title {

    font-size: 64px;

    line-height: 1.1;

    font-weight: 800;

    color: #0f172a;

    max-width: 950px;

    margin:
        0 auto 28px;

}

.solutions-subtitle {

    max-width: 850px;

    margin:
        0 auto 40px;

    font-size: 19px;

    line-height: 1.9;

    color: #475569;

}

.solutions-hero-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

/*Mobile*/

@media (max-width: 768px) {

    .solutions-title {

        font-size: 38px;

    }

    .solutions-subtitle {

        font-size: 16px;

    }

}
/*======================================
SOLUTION POST PAGE
======================================*/

.solution-featured-image {

    margin-bottom: 50px;

}

.solution-featured-image img {

    width: 100%;

    border-radius: 28px;

    display: block;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);

}

.solution-post-header {

    text-align: center;

    max-width: 900px;

    margin:
        0 auto 60px;

}

.solution-post-category {

    display: inline-block;

    margin-bottom: 18px;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.solution-post-title {

    font-size: 58px;

    line-height: 1.1;

    color: #0f172a;

    margin-bottom: 22px;

}

.solution-post-meta {

    color: #64748b;

    font-size: 15px;

}

.solution-post-content {

    max-width: 950px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.9;

    color: #334155;

}

.solution-post-content img {

    width: 100%;

    height: auto;

    border-radius: 24px;

    margin: 40px 0;

}

.solution-post-content h2 {

    margin-top: 70px;

}

.solution-post-content h3 {

    margin-top: 45px;

}

.solution-post-content ul {

    margin:
        30px 0;

}

.solution-post-content li {

    margin-bottom: 16px;

}

.solution-post-cta {

    margin-top: 90px;

    padding: 60px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(17,130,156,0.08),
            rgba(255,255,255,0.9)
        );

    text-align: center;

}

.solution-post-cta h2 {

    margin-bottom: 20px;

}

.solution-post-cta p {

    max-width: 760px;

    margin:
        0 auto 35px;

    line-height: 1.9;

    color: #475569;

}

.solution-post-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

/*Mobile*/

@media (max-width: 768px) {

    .solution-post-title {

        font-size: 38px;

    }

    .solution-post-content {

        font-size: 16px;

    }

    .solution-post-cta {

        padding: 35px 25px;

    }

}
/*======================================
HOME HERO
======================================*/

.home-hero {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    min-height: 72vh;

    padding:
        40px 6% 0;

    overflow: hidden;

}

/*======================================
LEFT CONTENT
======================================*/

.home-hero-content {

    position: relative;

    z-index: 2;

}

.hero-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 24px;

}

.home-hero h1 {

    font-size: 72px;

    line-height: 1.05;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 28px;

}

.home-hero p {

    font-size: 19px;

    line-height: 1.9;

    color: #475569;

    max-width: 720px;

    margin-bottom: 40px;

}

/*======================================
BUTTONS
======================================*/

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

/*======================================
RIGHT VISUAL
======================================*/

.home-hero-visual {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

.home-hero-visual img {

    width: 100%;

    max-width: 900px;

    height: auto;

    display: block;

}

/*======================================
BACKGROUND GLOW
======================================*/

.home-hero::before {

    content: "";

    position: absolute;

    top: -200px;

    right: -200px;

    width: 600px;

    height: 600px;

    background:
        radial-gradient(
            rgba(17,130,156,0.12),
            transparent 70%
        );

    z-index: 0;

}

/*======================================
MOBILE
======================================*/

@media (max-width: 980px) {

    .home-hero {

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 40px;

        min-height: auto;

        gap: 30px;

    }

    .home-hero-content {

        order: 1;

    }

    .home-hero-visual {

        order: 2;

    }

    .hero-buttons {

        justify-content: center;

    }

    .home-hero h1 {

        font-size: 48px;

    }

}

@media (max-width: 640px) {

    .home-hero h1 {

        font-size: 38px;

    }

    .home-hero p {

        font-size: 16px;

        line-height: 1.8;

    }

}
/*======================================
HOME INTRO
======================================*/

.home-intro {

    padding:
        30px 6% 80px;

}

.home-intro-content {

    max-width: 1100px;

    margin: 0 auto;

    padding: 55px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(17,130,156,0.06),
            rgba(255,255,255,0.95)
        );

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06);

    text-align: center;

}

.home-intro-content h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 24px;

}

.home-intro-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #475569;

    max-width: 900px;

    margin: 0 auto;

}

/*Mobile*/

@media (max-width: 768px) {

    .home-intro-content {

        padding: 35px 25px;

    }

    .home-intro-content h2 {

        font-size: 32px;

    }

    .home-intro-content p {

        font-size: 16px;

    }

}
/*======================================
HOME SOLUTIONS
======================================*/

.home-solutions {

    padding:
        25px 6% 55px;

}

/*======================================
SECTION HEADING
======================================*/

.section-heading {

    text-align: center;

    max-width: 850px;

    margin:
        0 auto 40px;

}

.section-heading span {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 14px;

}

.section-heading h2 {

    font-size: 52px;

    line-height: 1.15;

    margin-bottom: 14px;

    color: #0f172a;

}

.section-heading p {

    font-size: 18px;

    line-height: 1.9;

    color: #475569;

}

/*======================================
SOLUTIONS GRID
======================================*/

.home-solutions-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

}

/*======================================
SOLUTION CARD
======================================*/

.home-solution-card {

    background: #ffffff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06);

    transition: 0.35s ease;

}

.home-solution-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0,0,0,0.1);

}

/*======================================
IMAGE
======================================*/

.home-solution-image img {

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    display: block;

}

/*======================================
CONTENT
======================================*/

.home-solution-content {

    padding: 22px;

}

.home-solution-content h3 {

    margin:
        12px 0 12px;

    font-size: 28px;

    line-height: 1.3;

}

.home-solution-content h3 a {

    color: #0f172a;

    text-decoration: none;

}

.home-solution-content p {

    color: #475569;

    line-height: 1.9;

    margin-bottom: 18px;

}

/*======================================
READ MORE
======================================*/

.solution-read-more {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #11829C;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;

}

.solution-read-more:hover {

    transform: translateX(4px);

}

/*======================================
BOTTOM BUTTON
======================================*/

.solutions-bottom-link {

    text-align: center;

    margin-top: 30px;

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .home-solutions-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .home-solutions-grid {

        grid-template-columns: 1fr;

    }

    .section-heading h2 {

        font-size: 36px;

    }

    .home-solution-content h3 {

        font-size: 24px;

    }

}
/*======================================
HOME PRODUCTS
======================================*/

.home-products {

    padding:
        25px 6% 55px;

}

/*======================================
PRODUCT GRID
======================================*/

.home-products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}

/*======================================
PRODUCT CARD
======================================*/

.home-product-card {

    background: #ffffff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.06);

    transition: 0.35s ease;

}

.home-product-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 24px 50px rgba(0,0,0,0.1);

}

/*======================================
PRODUCT IMAGE
======================================*/

.home-product-image {

    display: block;

    overflow: hidden;

}

.home-product-image img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;

}

.home-product-card:hover
.home-product-image img {

    transform: scale(1.04);

}

/*======================================
CONTENT
======================================*/

.home-product-content {

    padding: 22px;

}

.product-category-badge {

    display: inline-block;

    padding: 7px 14px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 14px;

}

.home-product-content h3 {

    margin-bottom: 12px;

    font-size: 24px;

    line-height: 1.3;

}

.home-product-content h3 a {

    color: #0f172a;

    text-decoration: none;

}

.home-product-content p {

    color: #475569;

    line-height: 1.8;

    margin-bottom: 20px;

    font-size: 15px;

}

/*======================================
BOTTOM BUTTON
======================================*/

.products-bottom-link {

    text-align: center;

    margin-top: 30px;

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1200px) {

    .home-products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .home-products-grid {

        grid-template-columns: 1fr;

    }

    .home-product-content h3 {

        font-size: 22px;

    }

}
/*======================================
HOME PRODUCTS
======================================*/

.home-products {

    padding:
        25px 6% 55px;

}

/*======================================
PRODUCT GRID
======================================*/

.home-products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}

/*======================================
PRODUCT CARD
======================================*/

.home-product-card {

    background: #ffffff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.06);

    transition: 0.35s ease;

}

.home-product-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 24px 50px rgba(0,0,0,0.1);

}

/*======================================
PRODUCT IMAGE
======================================*/

.home-product-image {

    display: block;

    overflow: hidden;

}

.home-product-image img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;

}

.home-product-card:hover
.home-product-image img {

    transform: scale(1.04);

}

/*======================================
CONTENT
======================================*/

.home-product-content {

    padding: 22px;

}

.product-category-badge {

    display: inline-block;

    padding: 7px 14px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 14px;

}

.home-product-content h3 {

    margin-bottom: 12px;

    font-size: 24px;

    line-height: 1.3;

}

.home-product-content h3 a {

    color: #0f172a;

    text-decoration: none;

}

.home-product-content p {

    color: #475569;

    line-height: 1.8;

    margin-bottom: 20px;

    font-size: 15px;

}

/*======================================
BOTTOM BUTTON
======================================*/

.products-bottom-link {

    text-align: center;

    margin-top: 30px;

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1200px) {

    .home-products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .home-products-grid {

        grid-template-columns: 1fr;

    }

    .home-product-content h3 {

        font-size: 22px;

    }

}
/*======================================
WHY US SECTION
======================================*/

.why-us-section {

    padding:
        25px 6% 55px;

}

/*======================================
GRID
======================================*/

.why-us-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}

/*======================================
CARD
======================================*/

.why-card {

    position: relative;

    padding: 30px 24px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.95),
            rgba(17,130,156,0.04)
        );

    box-shadow:
        0 18px 40px rgba(0,0,0,0.06);

    transition: 0.35s ease;

}

.why-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 24px 50px rgba(0,0,0,0.1);

}

/*======================================
ICON
======================================*/

.why-icon {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    margin-bottom: 22px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 24px;

}

/*======================================
TEXT
======================================*/

.why-card h3 {

    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 14px;

    color: #0f172a;

}

.why-card p {

    font-size: 15px;

    line-height: 1.9;

    color: #475569;

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .why-us-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .why-us-grid {

        grid-template-columns: 1fr;

    }

    .why-card {

        padding: 24px 20px;

    }

}
/*======================================
CONSULTATION SECTION
======================================*/

.consultation-section {

    padding:
        25px 6% 65px;

}

/*======================================
CONTAINER
======================================*/

.consultation-content {

    position: relative;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        60px 55px;

    border-radius: 36px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(17,130,156,0.08),
            rgba(255,255,255,0.96)
        );

    box-shadow:
        0 25px 55px rgba(0,0,0,0.08);

    text-align: center;

}

/*======================================
BACKGROUND GLOW
======================================*/

.consultation-content::before {

    content: "";

    position: absolute;

    top: -120px;

    right: -120px;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(17,130,156,0.18),
            transparent 70%
        );

}

/*======================================
TAG
======================================*/

.consultation-tag {

    position: relative;

    z-index: 2;

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.12);

    color: #11829C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

/*======================================
TITLE
======================================*/

.consultation-content h2 {

    position: relative;

    z-index: 2;

    font-size: 52px;

    line-height: 1.15;

    margin-bottom: 22px;

    color: #0f172a;

}

/*======================================
TEXT
======================================*/

.consultation-content p {

    position: relative;

    z-index: 2;

    max-width: 860px;

    margin:
        0 auto 35px;

    font-size: 18px;

    line-height: 1.9;

    color: #475569;

}

/*======================================
BUTTONS
======================================*/

.consultation-buttons {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 768px) {

    .consultation-content {

        padding:
            40px 25px;

    }

    .consultation-content h2 {

        font-size: 36px;

    }

    .consultation-content p {

        font-size: 16px;

    }

}
/*======================================
TESTIMONIAL SECTION
======================================*/

.testimonial-section {

    padding:
        100px 6%;

    background:
        linear-gradient(
            180deg,
            #071129 0%,
            #050816 100%
        );

}



/*Grid*/

.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 28px;

    margin-top: 70px;

}



/*Card*/

.testimonial-card {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.08);

    padding: 36px;

    backdrop-filter: blur(16px);

    transition:
        0.4s ease;

    box-shadow:
        0 12px 40px rgba(0,0,0,0.24);

}



/*Gradient Glow*/

.testimonial-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

}



/*Hover*/

.testimonial-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.32);

}



/*Rating*/

.testimonial-rating {

    color:
        #FFD54A;

    font-size: 22px;

    margin-bottom: 24px;

}



/*Text*/

.testimonial-text {

    color:
        rgba(255,255,255,0.76);

    line-height: 1.9;

    margin-bottom: 36px;

    font-size: 16px;

}



/*Bottom*/

.testimonial-bottom {

    margin-top: auto;

}



/*Profile*/

.testimonial-profile {

    display: flex;

    align-items: center;

    gap: 16px;

}



/*Avatar*/

.testimonial-avatar {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    object-fit: cover;

    border:
        2px solid rgba(255,255,255,0.14);

}



/*Meta*/

.testimonial-meta h3 {

    color: #ffffff;

    font-size: 18px;

    margin-bottom: 6px;

}



.testimonial-meta span {

    color:
        rgba(255,255,255,0.58);

    font-size: 14px;

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .testimonial-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}



@media (max-width: 768px) {

    .testimonial-grid {

        grid-template-columns:
            1fr;

    }

}
/*======================================
ABOUT SECTION
======================================*/

.about-section {

    padding:
        70px 6%;

    position: relative;

}

/*======================================
CONTAINER
======================================*/

.about-container {

    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

}

/*======================================
LEFT CONTENT
======================================*/

.about-content {

    max-width: 720px;

}

/*======================================
TAG
======================================*/

.section-tag {

    display: inline-flex;

    align-items: center;

    padding:
        10px 18px;

    border-radius: 999px;

    background:
        rgba(17,130,156,0.08);

    color: #11829C;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;

}

/*======================================
HEADING
======================================*/

.about-content h2 {

    font-size: 56px;

    line-height: 1.15;

    color: #0f172a;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 24px;

}

/*======================================
TEXT
======================================*/

.about-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 18px;

}

/*======================================
STATS
======================================*/

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 35px;

}

/*======================================
STAT CARD
======================================*/

.about-stat-card {

    background: #ffffff;

    border-radius: 26px;

    padding: 26px 20px;

    text-align: center;

    border:
        1px solid rgba(15,23,42,0.06);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.04);

    transition: 0.3s ease;

}

.about-stat-card:hover {

    transform:
        translateY(-5px);

}

/*======================================
STAT ICON
======================================*/

.about-stat-icon {

    width: 64px;

    height: 64px;

    margin:
        0 auto 18px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(17,130,156,0.15),
            rgba(17,130,156,0.05)
        );

    color: #11829C;

    font-size: 24px;

}

/*======================================
STAT TEXT
======================================*/

.about-stat-card h3 {

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 8px;
	line-height: 1.2;
	margin-top:5px;

}

.about-stat-card span {

    color: #64748b;

    font-size: 14px;

    line-height: 1.2;

}

/*======================================
BUTTONS
======================================*/

.about-buttons {

    display: flex;

    gap: 16px;

    margin-top: 38px;

    flex-wrap: wrap;

}

.about-primary-btn,
.about-secondary-btn {

    padding:
        15px 28px;

    border-radius: 18px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: 0.3s ease;

}

/*Primary*/

.about-primary-btn {

    background: #11829C;

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(17,130,156,0.18);

}

.about-primary-btn:hover {

    background: #0B6A7C;

    transform:
        translateY(-2px);

}

/*Secondary*/

.about-secondary-btn {

    background: #ffffff;

    border:
        1px solid #dbe4ee;

    color: #0f172a;

}

.about-secondary-btn:hover {

    transform:
        translateY(-2px);

}

/*======================================
IMAGE
======================================*/

.about-visual {

    position: relative;

}

.about-visual img {

    width: 100%;

    display: block;

    border-radius: 34px;

    box-shadow:
        0 35px 80px rgba(0,0,0,0.12);

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .about-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}

@media (max-width: 768px) {

    .about-section {

        padding:
            50px 5%;

    }

    .about-content h2 {

        font-size: 38px;

    }

    .about-stats {

        grid-template-columns: 1fr;

    }

}
/*======================================
HEADER
======================================*/

.site-header {

    position: sticky;

    top: 0;

    z-index: 9999;

	backdrop-filter: blur(10px);
	background:
		linear-gradient(
			180deg,
			rgba(2,6,23,0.92),
			rgba(2,6,23,0.78)
		);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
	box-shadow:
		0 10px 40px rgba(0,0,0,0.35);
}



/*Glow Line*/

.site-header::before {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,229,255,0.6),
            rgba(124,58,237,0.5),
            rgba(255,45,149,0.5),
            transparent
        );

}



/*======================================
CONTAINER
======================================*/

.header-container {

    max-width: 1400px;

    margin: auto;

    padding:
        18px 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}



/*======================================
LOGO
======================================*/

.site-logo img {

    max-height: 52px;

    display: block;

}



/*======================================
DESKTOP MENU
======================================*/

.desktop-menu {

    display: flex;

    align-items: center;

    gap: 34px;

}



.desktop-menu a {

    position: relative;

    color:
        rgba(255,255,255,0.78);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition:
        0.35s ease;

}



/*Hover*/

.desktop-menu a:hover {

    color:
        #ffffff;

}



/*Gradient Underline*/

.desktop-menu a::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #00E5FF,
            #7C3AED,
            #FF2D95
        );

    transition:
        0.35s ease;

}



.desktop-menu a:hover::after {

    width: 100%;

}



/*======================================
HEADER BUTTON
======================================*/

.header-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 26px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    box-shadow:
        0 12px 40px rgba(59,130,246,0.30);

    transition:
        0.35s ease;

}



.header-btn:hover {

    transform:
        translateY(-3px);

}



/*======================================
MOBILE TOGGLE
======================================*/

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    width: 46px;

    height: 46px;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    cursor: pointer;

}



.mobile-menu-toggle span {

    width: 22px;

    height: 2px;

    background: #ffffff;

    margin: 0 auto;

    border-radius: 999px;

}



/*======================================
MOBILE MENU
======================================*/

.mobile-menu {

    display: none;

    flex-direction: column;

    gap: 18px;

    padding:
        24px 6% 34px;

    background:
        rgba(2,6,23,0.96);

    border-top:
        1px solid rgba(255,255,255,0.06);

}



.mobile-menu.active {

    display: flex;

}



.mobile-menu a {

    color:
        rgba(255,255,255,0.82);

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

}



/*Mobile CTA*/

.mobile-consultation-btn {

    margin-top: 10px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding:
        15px 24px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    color: #ffffff !important;

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 991px) {

    .desktop-menu,
    .header-actions {

        display: none;

    }

    .mobile-menu-toggle {

        display: flex;

    }

}
/*======================================
FOOTER
======================================*/

.site-footer {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #050816 0%,
            #020617 100%
        );

    padding-top: 90px;

}



/*======================================
BACKGROUND EFFECTS
======================================*/

.footer-bg-wave {

    position: absolute;

    inset: 0;

    background-image:
        url('/wp-content/themes/Bhartiya-Theme/images/digital-wave.png');

    background-size: cover;

    background-position: center;

    opacity: 0.12;

    z-index: 1;

}



.footer-glow {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(0,229,255,0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255,45,149,0.10),
            transparent 40%
        );

    z-index: 1;

}



/*======================================
CONTAINER
======================================*/

.footer-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding:
        0 6%;

}



/*======================================
TOP GRID
======================================*/

.footer-top {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

}



/*======================================
BRAND
======================================*/

.footer-logo {

    max-width: 180px;

    margin-bottom: 24px;

}



.footer-brand p {

    color:
        rgba(255,255,255,0.68);

    line-height: 1.9;

}



/*======================================
HEADINGS
======================================*/

.footer-column h3,
.footer-links h3,
.footer-contact h3,
.footer-cta h3 {

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 24px;

}



/*======================================
LINKS
======================================*/

.footer-links ul,
.footer-contact ul {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li,
.footer-contact li {

    margin-bottom: 16px;

}



.footer-links a {

    color:
        rgba(255,255,255,0.70);

    text-decoration: none;

    transition:
        0.3s ease;

}



.footer-links a:hover {

    color:
        #67e8f9;

}



/*======================================
CONTACT
======================================*/

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    color:
        rgba(255,255,255,0.72);

    line-height: 1.7;

}



.footer-contact i {

    color:
        #67e8f9;

    margin-top: 4px;

}



/*======================================
CTA
======================================*/

.footer-cta p {

    color:
        rgba(255,255,255,0.68);

    line-height: 1.8;

    margin-bottom: 28px;

}



.footer-consult-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        15px 28px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #3B82F6,
            #7C3AED,
            #FF2D95
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    box-shadow:
        0 12px 40px rgba(59,130,246,0.35);

    transition:
        0.35s ease;

}



.footer-consult-btn:hover {

    transform:
        translateY(-4px);

}



/*======================================
BOTTOM
======================================*/

.footer-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        30px 6%;

}



.footer-bottom p {

    color:
        rgba(255,255,255,0.52);

}



/*======================================
SOCIALS
======================================*/

.footer-socials {

    display: flex;

    gap: 14px;

}



.footer-socials a {

    width: 44px;

    height: 44px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    color: #ffffff;

    text-decoration: none;

    transition:
        0.35s ease;

}



.footer-socials a:hover {

    transform:
        translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #00E5FF,
            #7C3AED,
            #FF2D95
        );

}



/*======================================
WHATSAPP
======================================*/

.floating-whatsapp {

    position: fixed;

    right: 24px;

    bottom: 24px;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #1ebe5d
        );

    color: #ffffff;

    font-size: 30px;

    z-index: 999;

    box-shadow:
        0 12px 40px rgba(37,211,102,0.4);

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .footer-top {

        grid-template-columns:
            repeat(2,1fr);

    }

}



@media (max-width: 768px) {

    .footer-top {

        grid-template-columns:
            1fr;

    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}
/*======================================
ABOUT PAGE
======================================*/

.about-page {

    overflow: hidden;

}



/*======================================
ABOUT HERO
======================================*/

.about-hero {

    max-width: 1450px;

    margin: 0 auto;

    padding:
        80px 6% 40px;

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 60px;

    align-items: center;

}

.about-hero-content h1 {

    font-size: 64px;

    line-height: 1.1;

    color: #0f172a;

    margin:
        20px 0;

}

.about-hero-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #64748b;

    max-width: 680px;

}

.about-hero-image img {

    width: 100%;

    border-radius: 34px;

    box-shadow:
        0 30px 70px rgba(15,23,42,0.12);

}

.about-hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 35px;

}



/*======================================
COMPANY SECTION
======================================*/

.about-company {

    padding:
        40px 6% 70px;

}

.about-company-grid {

    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1.1fr;

    gap: 60px;

    align-items: start;

}

.about-company h2 {

    font-size: 46px;

    line-height: 1.2;

    color: #0f172a;

    margin-top: 16px;

}

.about-company p {

    color: #64748b;

    line-height: 2;

    margin-bottom: 22px;

}



/*======================================
SECTION HEADING
======================================*/

.section-heading {

    text-align: center;

    margin-bottom: 50px;

}

.section-heading h2 {

    font-size: 46px;

    margin-top: 16px;

    color: #fff;

}



/*======================================
SERVICES
======================================*/

.about-services {

    padding:
        70px 6%;

    background:
        linear-gradient(
            180deg,
            #f8fbfd 0%,
            #edf7fa 100%
        );

}

.about-services-grid {

    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;

}

.about-service-card {

    background: #ffffff;

    border-radius: 24px;

    padding: 28px 22px;

    text-align: center;

    box-shadow:
        0 12px 28px rgba(15,23,42,0.05);

    transition: 0.3s ease;

}

.about-service-card:hover {

    transform:
        translateY(-6px);

}

.about-service-card i {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    background:
        linear-gradient(
            135deg,
            #11829C,
            #0ea5e9
        );

    color: #ffffff;

    font-size: 22px;

    box-shadow:
        0 14px 28px rgba(17,130,156,0.16);

}

.about-service-card h3 {
	
    font-size: 18px;

    color: #0f172a;

    line-height: 1.4;

}



/*======================================
WHY SECTION
======================================*/

.about-why {

    padding:
        80px 6%;

}

.about-why-grid {

    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

}

.about-why-card {

    background: #ffffff;

    border:
        1px solid rgba(15,23,42,0.06);

    border-radius: 28px;

    padding: 34px 24px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(15,23,42,0.04);

}

.about-why-card i {

    font-size: 34px;

    color: #11829C;

    margin-bottom: 20px;

}

.about-why-card h3 {

    font-size: 22px;

    color: #0f172a;

}



/*======================================
CTA
======================================*/

.about-cta {

    padding:
        20px 6% 90px;

}

.about-cta-box {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    padding:
        70px 50px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #f3fbfd 0%,
            #e7f6fa 100%
        );

    border:
        1px solid rgba(17,130,156,0.08);

    box-shadow:
        0 24px 60px rgba(17,130,156,0.08);

}

.about-cta-box h2 {

    font-size: 48px;

    margin-bottom: 20px;

    color: #0f172a;

}

.about-cta-box p {

    max-width: 760px;

    margin: 0 auto 34px;

    line-height: 1.9;

    color: #64748b;

}



/*======================================
BUTTONS
======================================*/

.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        16px 28px;

    border-radius: 18px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;

}

.primary-btn {

    background: #11829C;

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(17,130,156,0.18);

}

.primary-btn:hover {

    transform:
        translateY(-3px);

}

.secondary-btn {

    background: #ffffff;

    color: #11829C;

    border:
        1px solid rgba(17,130,156,0.12);

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 992px) {

    .about-hero,
    .about-company-grid {

        grid-template-columns: 1fr;

    }

    .about-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .about-why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .about-hero-content h1 {

        font-size: 48px;

    }

}

@media (max-width: 768px) {

    .about-services-grid,
    .about-why-grid {

        grid-template-columns: 1fr;

    }

    .about-hero-content h1,
    .about-company h2,
    .section-heading h2,
    .about-cta-box h2 {

        font-size: 36px;

    }

    .about-hero-buttons {

        flex-direction: column;

    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

    }

}
/*======================================
CONTACT PAGE
======================================*/

.contact-page {

    overflow: hidden;

}



/*======================================
HERO
======================================*/

.contact-hero {

    max-width: 1100px;

    margin: 0 auto;

    padding:
        70px 6% 25px;

    text-align: center;

}

.contact-hero h1 {

    font-size: 64px;

    line-height: 1.1;

    margin:
        20px 0;

    color: #0f172a;

}

.contact-hero p {

    max-width: 820px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.9;

    color: #64748b;

}



/*======================================
CONTACT SECTION
======================================*/

.contact-section {

    padding:
        20px 6% 60px;

}

.contact-grid {

    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;

    align-items: start;

}



/*======================================
LEFT SIDE
======================================*/

.contact-info {

    background:
        linear-gradient(
            180deg,
            #f8fbfd 0%,
            #edf7fa 100%
        );

    border-radius: 32px;

    padding: 38px;

    border:
        1px solid rgba(17,130,156,0.08);

}

.contact-info h2 {

    font-size: 42px;

    margin:
        18px 0;

    color: #0f172a;

}

.contact-info > p {

    color: #64748b;

    line-height: 1.9;

    margin-bottom: 40px;

}



/*======================================
INFO CARDS
======================================*/

.contact-info-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-info-card {
    display: flex;

    gap: 16px;

    align-items: center;

    background: #ffffff;

    padding: 18px 20px;

    border-radius: 22px;

    box-shadow:
        0 10px 24px rgba(15,23,42,0.04);

}

.contact-info-card i {

    width: 52px;

    height: 52px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #11829C,
            #0ea5e9
        );

    color: #ffffff;

    font-size: 18px;

    flex-shrink: 0;

}

.contact-info-card h3 {

    font-size: 18px;

    margin-bottom: 4px;

    color: #0f172a;

}

.contact-info-card p {

    color: #64748b;

    line-height: 1.6;

    margin: 0;

}



/*======================================
FORM BOX
======================================*/

.contact-form-box {
    background: #ffffff;

    border-radius: 32px;

    padding: 38px;

    box-shadow:
        0 18px 45px rgba(15,23,42,0.05);

    border:
        1px solid rgba(15,23,42,0.05);

}

.contact-form-box h2 {

    font-size: 42px;

    margin:
        18px 0 10px;

    color: #0f172a;

}

.contact-form-subtitle {

    color: #64748b;

    line-height: 1.8;

    margin-bottom: 30px;

}



/*======================================
RESPONSIVE
======================================*/

@media (max-width: 992px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 768px) {

    .contact-hero h1,
    .contact-info h2,
    .contact-form-box h2 {

        font-size: 38px;

    }

    .contact-info,
    .contact-form-box {

        padding: 30px;

    }

}
