/*
Theme Name: Smart Glass
Theme URI: https://smartglassstudio.com
Author: Kundan Kumar
Description: Custom WordPress theme for Smart Glass Studio.
Version: 1.0
Text Domain: smartglass
*/

/* ===================================
   GOOGLE FONTS & RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-body);
    color:var(--text-color);
    background:#ffffff;
    overflow-x:hidden;
    font-size:var(--font-size-base);
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===================================
   VARIABLES
=================================== */

:root{

    --primary:#0F172A;
    --secondary:#4F46E5;
    --text:#1F2937;
    --text-color:#1f2937;
    --muted-color:#6b7280;
    --light:#ffffff;
    --border:#e5e7eb;
    --heading-color:#111827;

    --font-body:'Poppins',sans-serif;
    --font-heading:'Playfair Display',serif;
    --font-size-base:16px;
    --font-size-sm:15px;
    --font-size-md:17px;
    --font-size-lg:24px;

    --shadow:
        0 10px 40px rgba(0,0,0,.08);

    --transition:.35s ease;

    --radius:14px;

}

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

.container{

    width:min(1200px,92%);
    margin:auto;

}

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

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    transition:.35s ease;

    padding:18px 0;

}

/* Add this class using JS after scrolling */

#header.scrolled{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    box-shadow:
        0 8px 30px rgba(0,0,0,.08);

    padding:14px 0;

}

/* ===================================
   NAV
=================================== */

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

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

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:100px;
    height:auto;

}

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

.nav-menu{

    display:flex;

    gap:40px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    color:var(--primary);

    font-size:16px;

    font-weight:500;

    transition:var(--transition);

    padding:5px 0;

}

.nav-menu a:hover{

    color:var(--secondary);

}

/* Underline Animation */

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.nav-menu a:hover::after{

    width:100%;

}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-dark{

    background:var(--primary);

    color:#fff;

}

.btn-dark:hover{

    background:var(--secondary)!important;
	border-color: #4f46e4;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(79,70,229,.25);

}
.nav-container a.btn-dark:hover{background:#4f46e4;
	border-color: #4f46e4;}

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

.mobile-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:var(--primary);

}

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

@media(max-width:991px){

    .nav-menu{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:35px 0;

        box-shadow:0 10px 30px rgba(0,0,0,.08);

        display:none;

    }

    .nav-menu.active{

        display:flex;

    }

    .mobile-toggle{

        display:block;

    }

    .btn-dark{

        display:none;

    }

    .logo img{

        width:145px;

    }

}

@media(max-width:576px){

    #header{

        padding:14px 0;

    }

    .logo img{

        width:70px;

    }

}

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

#hero{

    position:relative;

    height:100vh;

    min-height:820px;

    overflow:hidden;

}

/*===========================
        BG
===========================*/

.hero-bg{

    position:absolute;

    inset:0;

}

.hero-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*===========================
        Overlay
===========================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.75) 32%,
    rgba(255,255,255,.20) 58%,
    rgba(255,255,255,0) 100%
    );

}

#hero .container{

    position:relative;

    z-index:10;

    height:100%;

}

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

.hero-content{

    max-width:810px;

    padding-top:150px;

}

.subtitle{

    display:inline-block;

    margin-bottom:22px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

    color:#6b7280;

}

.hero-content h1{

    font-family:var(--font-heading);

    font-size:82px;

    line-height:1.05;

    color:var(--heading-color);

    margin-bottom:28px;

}

.hero-content h1 span{

        color: #4f46e4;

}

.hero-content p{

    font-size:var(--font-size-lg);

    line-height:1.7;

    color:var(--muted-color);

    max-width:810px;

    margin-bottom:45px;

}

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

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:56px;
    padding:0 32px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

/* Primary Button */

.btn-dark{
    background:#111827;
    color:#fff;
    border:1px solid #111827;
}

/* .btn-dark:hover{
    background:#000;
    transform:translateY(-3px);
} */

/* Secondary Button */

.btn-light{
    background:#fff;
    color:#111827;
    border:1px solid #d1d5db;
}

.btn-light:hover{
    background:#f8fafc;
    border-color:#111827;
}

/* Arrow */

.btn i{
    font-size:14px;
}

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

.glass-card{

    position:absolute;

    right:0;

    bottom:65px;

    width:680px;

    height:180px;

    display:grid;

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

    align-items:center;

    border-radius:24px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.55);

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

}

/*===========================
        FEATURES
===========================*/

.feature{

    text-align:center;

    position:relative;

}

.feature:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:20%;

    width:1px;

    height:60%;

    background:#ddd;

}

.feature i{

    font-size:34px;

    color:#333;

    margin-bottom:18px;

}

.feature h4{

    font-size:18px;

    line-height:1.4;

    color:#222;

}

/*===========================
        Responsive
===========================*/

@media(max-width:991px){

#hero{

height:auto;

padding:200px 0 80px;

}

.hero-content{

padding-top:0;

max-width:100%;

text-align:center;

}

.hero-content h1{

font-size:58px;

}

.hero-content p{

font-size:18px;

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

}

.glass-card{

position:relative;

width:100%;

height:auto;

right:auto;

bottom:auto;

margin-top:60px;

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

padding:25px;

gap:25px;

}

.feature:not(:last-child)::after{

display:none;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:42px;

}

 .hero-buttons{

        justify-content:center;

        flex-direction:row;

        gap:15px;

    }

    .hero-buttons .btn{

        width:auto;

        min-width:170px;

        padding:0 24px;

    }

.glass-card{

grid-template-columns:1fr;

}

}

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

#about{

    padding:120px 0;

    background:#fff;

}

.about-grid{

  
    display:grid;

    grid-template-columns:minmax(0,48%) minmax(0,52%);

    gap:70px;

    align-items:center;

}
.about-image,
.about-content{

    min-width:0;

}

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

.about-image img{

 display:block;

    width:100%;

    max-width:100%;

    height:500px;

    object-fit:cover;

    border-radius:18px;


}

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

.section-tag{

    display:block;

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

    color: var(--secondary);

    margin-bottom:18px;

}

.about-content h2{

    font-family:var(--font-heading);

    font-size:54px;

    line-height:1.15;

    color:var(--heading-color);

    margin-bottom:25px;

}

.about-content h2 span{

       color: #4f46e5;

}

.about-content>p{

    font-size:14px;

    line-height:1.9;

    color:#5f6368;

    margin-bottom: 30px;

}

/*======================================
        FEATURES
======================================*/

.about-features{

    display:grid;

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

}

.feature-item{

    padding:0 11px;

    position:relative;

}

.feature-item:first-child{

    padding-left:0;

}

.feature-item:last-child{

    padding-right:0;

}

.feature-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:5px;

    width:1px;

    height: 120px;

    background:#ececec;

}

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

.feature-icon{

    width:62px;

    height:62px;

    border-radius:50%;

    background:#f5f7fb;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

}

.feature-icon i{

    font-size:28px;

    color: #4f46e5;

}

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

.feature-item h4{

    font-size:14px;

    margin-bottom:14px;

    color:#111827;

}

.feature-item p{

    font-size:16px;

    line-height:1.8;

    color:#6b7280;

}

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

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

gap:40px;

}

.feature-item{

padding:0;

}

.feature-item::after{

display:none;

}

.feature-icon{

margin:0 auto 20px;

}

}

@media(max-width:768px){

#about{

padding:80px 0;

}

.about-content h2{

font-size:40px;

}

.about-content>p{

font-size:16px;

}

.feature-item h4{

font-size:22px;

}

}

@media(max-width:576px){

.about-content h2{

font-size:34px;

line-height:1.25;

}

}

/*======================================
        PRODUCTS SECTION
======================================*/


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

.section-title{
    text-align:center;
    margin-bottom:70px;
}

section#products {

    padding-top:0px;
    padding-bottom:100px;
}

.section-title span{
    display:inline-block;
    padding:8px 18px;
    background:#eef6ff;
    color:var(--secondary);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
  
}

.section-title h2{
    font-family:var(--font-heading);
    font-size:clamp(30px, 3vw, 48px);
    color:var(--primary);
    width: 70%;
    margin: 20px auto;
}

#products .section-title h2 span {
    color: #4f46e5; font-size: 48px;padding: 0; 
}
.section-title p{width: 75%; margin: 0 auto;}

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

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

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

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

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

    transition:.4s ease;

    display:flex;

    flex-direction:column;

}

.product-card:hover{

    transform:translateY(-12px);

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

}

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

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}

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

.product-card h3{

    font-size:24px;

    color:var(--primary);

    margin:25px 25px 15px;

}

.product-card p{

    font-size:15px;

    line-height:1.8;

    color:#6b7280;

    margin:0 25px 30px;

    flex-grow:1;

}

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

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin:0 25px 25px;

    padding:14px 26px;

    border-radius:50px;

    border:2px solid var(--secondary);

    color:var(--secondary);

    font-weight:600;

    transition:.35s ease;

}

.btn-outline:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-3px);

}

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

@media(max-width:1200px){

    .product-grid{

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

    }

}

@media(max-width:768px){

    #products{

        padding:0px 0;

    }

    .section-title h2{

        font-size:36px;

    }

    .product-grid{

        grid-template-columns:1fr;

    }

    .product-card img{

        height:230px;

    }

}

@media(max-width:576px){

    .section-title h2{

        font-size:30px;

    }

    .product-card h3{

        font-size:20px;

    }

}

/*======================================
        WHY CHOOSE US
======================================*/

#why-us{
    padding:80px 0;
    background: rgb(238 246 255);
}

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

#why-us .section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

#why-us .section-title span{
    display:inline-block;
    padding:8px 18px;
    background: #0000000a;
    color:var(--secondary);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

#why-us .section-title h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

#why-us .section-title h2 span{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color: #4f46e5;
    padding: 0;
    background: none;
}



#why-us .section-title p{
    font-size:17px;
    color:#6b7280;
    line-height:1.8;
}

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

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

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

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    border:1px solid rgba(0,0,0,.05);

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

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-12px);

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

}

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

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#eef6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:var(--secondary);

    transition:.35s;

}

.why-card:hover .why-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotateY(180deg);

}

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

.why-card h4{

    font-size:22px;

    color:var(--primary);

    margin-bottom:15px;
    font-family: 'Playfair Display', serif;

}

.why-card p{

    font-size:15px;

    line-height:1.8;

    color:#6b7280;

}

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

@media(max-width:1200px){

    .why-grid{

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

    }

}

@media(max-width:768px){

    #why-us{

        padding:40px 0;

    }

    #why-us .section-title h2{

        font-size:36px;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    #why-us .section-title h2{

        font-size:30px;

    }

    .why-card{

        padding:35px 25px;

    }

}



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

#contact{
    padding-bottom:120px;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

#contact::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    top:-120px;
    right:-120px;
    background:rgba(96,165,250,.08);
    border-radius:50%;
    filter:blur(80px);
}

#contact::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    left:-100px;
    bottom:-100px;
    background:rgba(15,23,42,.05);
    border-radius:50%;
    filter:blur(80px);
}

#contact .container{
    position:relative;
    z-index:2;
}

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

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;
}

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

.contact-info .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef6ff;
    color:var(--secondary);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.contact-info h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    line-height:1.2;

    color:var(--primary);

    margin-bottom:25px;

}

.contact-info p{

    color:#6b7280;

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

}

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

.contact-info ul{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.contact-info li i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#ffffff;

    color:var(--secondary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    flex-shrink:0;

    transition:.35s;

}

.contact-info li:hover i{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-4px);

}

.contact-info li strong{

    display:block;

    font-size:18px;

    color:var(--primary);

    margin-bottom:6px;

}

.contact-info li div{

    color:#6b7280;

    line-height:1.7;

    font-size:16px;

}

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

.contact-form {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    border: 1px solid rgba(255,255,255,.6);
}

/* Form Layout */
.contact-form form,
.contact-form .wpcf7-form {
    display: grid;
    gap: 20px;
}
.wpcf7-form.init {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .6);
}

/* Remove CF7 default spacing */
.contact-form .wpcf7 p {
    margin: 0;
    padding: 0;
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom:20px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-dark.submit-btn {
    background: #111827;
}

/* Fields */
.form-group input,
.form-group select,
.form-group textarea,
.contact-form .wpcf7 input,
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {

    width: 100%;
    padding: 17px 22px;
    border-radius: 14px;
    border: 1px solid #dbe4ec;
    background: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: .3s;
    box-sizing: border-box;
}

/* Textarea */
.form-group textarea,
.contact-form .wpcf7 textarea {
    resize: none;
    height: 180px;
}

/* Focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form .wpcf7 input:focus,
.contact-form .wpcf7 select:focus,
.contact-form .wpcf7 textarea:focus {

    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

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

.submit-btn,
.contact-form .wpcf7-submit {

    width: 100%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 18px;
    border-radius: 50px;

    background: var(--secondary);
    color: #fff;
    transition: .3s;
}

.submit-btn:hover,
.contact-form .wpcf7-submit:hover {
    opacity: .9;
}

/*======================================
        PLACEHOLDER
======================================*/

.form-group input::placeholder,
.form-group textarea::placeholder,
.contact-form .wpcf7 input::placeholder,
.contact-form .wpcf7 textarea::placeholder {

    color: #9ca3af;
}

/* Contact Form 7 Extras */

.contact-form .wpcf7-spinner {
    margin: 10px 0 0;
}

.contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
}

.contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;
    border-radius: 10px;
}

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

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .contact-info{

        text-align:center;

    }

    .contact-info li{

        justify-content:center;

        text-align:left;

    }

}

@media(max-width:768px){

    #contact{

        padding:40px 0;

    }

    .contact-info h2{

        font-size:36px;

    }

    .contact-form{

        padding:35px;

    }

}

@media(max-width:576px){

    .contact-info h2{

        font-size:30px;

    }

    .contact-form{

        padding:25px;

    }

    .contact-info li{

        gap:15px;

    }

    .contact-info li i{

        width:48px;

        height:48px;

        font-size:18px;

    }

}

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

#footer{

    background:#111827;

    color:#d1d5db;

    padding-top:80px;

}

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

.footer-grid{

    display:grid;

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

    gap:60px;

    padding-bottom:60px;

}

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

.footer-logo{

    width:100px;

    margin-bottom:25px;

    filter: brightness(0) invert(1);

}

.footer-about p{

    line-height:1.9;

    color:#9ca3af;

    margin-bottom:30px;

}

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

#footer h4{

    color:#fff;

    font-size:20px;

    margin-bottom:25px;

    position:relative;

}

#footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:2px;

    background:var(--secondary);

}

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

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

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#9ca3af;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

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

.footer-contact li{

    display:flex;

    gap:15px;

    align-items:flex-start;

    margin-bottom:18px;

    color:#9ca3af;

}

.footer-contact i{

    color:var(--secondary);

    font-size:18px;

    margin-top:4px;

}

/*======================================
        SOCIAL
======================================*/

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

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

.footer-bottom{

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

    padding:25px 0;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#9ca3af;

    font-size:15px;

}

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

@media(max-width:991px){

    .footer-grid{

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

        gap:50px;

    }

}

@media(max-width:768px){

    #footer{

        padding-top:60px;

    }

    .footer-logo{margin:20px auto;}

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    #footer h4::after{

        left:50%;

        transform:translateX(-50%);

    }

    .social-links{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;

        text-align:left;

    }

}
/*new css*/

h6{font-size:18px;}


/*==============================
 Portfolio Section
===============================*/

.portfolio-section {
    
    background: #fff;
    overflow: hidden;
    padding-top: 80px;
}

.portfolio-section .container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

/*==============================
 Section Heading
===============================*/

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted-color);
    font-size: var(--font-size-md);
    line-height: 1.8;
}

/*==============================
 Filter Buttons
===============================*/

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 55px;
}

.portfolio-filter button {
    padding: 12px 26px;
    border-radius: 40px;
    background: #fff;
    border: 1px solid #E6E8F0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
    background: #4F46E5;
    color: #fff;
    border-color: #4F46E5;
}

/*==============================
 Gallery Layout
===============================*/

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Featured Images */

.portfolio-item.large {
    grid-column: span 2;
}

/*==============================
 Gallery Item
===============================*/

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: block;
    background: #f8f8f8;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.portfolio-item.large img {
    min-height: 430px;
}

/* Overlay */

.portfolio-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,.05),
        transparent
    );
    opacity: 0;
    transition: .4s;
}

.portfolio-item::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    top: 50%;
    left: 50%;

    width: 62px;
    height: 62px;

    background: #fff;
    color: #4F46E5;

    border-radius: 50%;

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

    font-size: 18px;

    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    transition: .35s;
    z-index: 5;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/*==============================
 Button
===============================*/

.portfolio-btn {
    text-align: center;
    margin-top: 60px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 34px;

    border-radius: 60px;
    border: 1px solid #4F46E5;

    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;

    transition: .35s;
}

.primary-btn:hover {
    background: #4F46E5;
    color: #fff;
}

/*==============================
 Responsive
===============================*/

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

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

    .portfolio-item.large{
        grid-column:span 2;
    }

}

@media(max-width:767px){

    .portfolio-section{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .portfolio-gallery{
        grid-template-columns:1fr;
    }

    .portfolio-item.large{
        grid-column:span 1;
    }

    .portfolio-item img,
    .portfolio-item.large img{
        min-height:260px;
    }

    .portfolio-filter{
        gap:10px;
    }

    .portfolio-filter button{
        padding:10px 18px;
        font-size:14px;
    }
}


/* popup */

.portfolio-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.portfolio-lightbox.show{

    opacity:1;

    visibility:visible;

}

.portfolio-lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:18px;

}

.close-lightbox{

    position:absolute;

    top:35px;

    right:45px;

    color:#fff;

    font-size:42px;

    cursor:pointer;

}




/*==========================
   Our Process Section
==========================*/

.process-section {
     padding: 120px 0;
    background: #fff;
}

.process-section .container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

/*==========================
   Heading
==========================*/

.process-section .section-heading {
    max-width: 700px;
    margin: 0 auto 70px;
}

.process-section .section-heading h2 {
    font-size: 56px;
    font-weight: 700;
    color: #122C4D;
    margin-bottom: 25px;
    line-height: 1.15;
}

.process-section .section-heading h2 span {
    color: #4f46e5;
}



/*==========================
   Grid
==========================*/

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/*==========================
   Card
==========================*/

.process-card {
    background: #fff;
    border: 1px solid #edf0f6;
    border-radius: 24px;
    padding: 55px 30px;
    text-align: center;
    transition: .35s ease;
    box-shadow: 0 15px 40px rgba(16, 24, 40, .05);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(16, 24, 40, .10);
}

/*==========================
   Icon
==========================*/

.process-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f3f6ff;
    margin: 0 auto 35px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 46px;
    color: #4F46E5;
}

/*==========================
   Number
==========================*/

.step-number {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: #4F46E5;
    line-height: 1;
}

.step-line {
    width: 45px;
    height: 3px;
    background: #4F46E5;
    border-radius: 50px;
    display: block;
    margin: 18px auto 28px;
}

/*==========================
   Title
==========================*/

.process-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #122C4D;
    line-height: 1.4;
    margin: 0;
}

/*==========================
   Responsive
==========================*/

@media (max-width: 1199px) {

    .process-grid {
        gap: 25px;
    }

    .process-card {
        padding: 45px 25px;
    }

    .process-card h3 {
        font-size: 24px;
    }

}

@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 46px;
    }

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

}

@media (max-width: 767px) {

    .process-section {
        padding: 40px 0;
    }

    .process-section .section-heading h2 {
    font-size: 34px;}

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

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

    .process-card {
        padding: 40px 20px;
    }

    .process-icon {
        width: 90px;
        height: 90px;
    }

    .process-icon i {
        font-size: 36px;
    }

    .step-number {
        font-size: 30px;
    }

    .process-card h3 {
        font-size: 22px;
    }

}

.product-page-hero {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #f4f8fb 0%, #eaf3f7 100%);
}

.product-page-content {
  max-width: 700px;
}

.product-page-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.product-page-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #556;
  margin-bottom: 28px;
}

.product-list-section {
  padding: 60px 0 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-detail-card {
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-detail-card img {
  border-radius: 10px;
  margin-bottom: 16px;
}

.product-detail-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-detail-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.site-footer {
  background: var(--primary-color);
  color: #fff;
  padding: 24px 0;
  text-align: center;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Details */

.product-details {
  padding: 70px 0;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 35px;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: #777;
}

.product-wrapper {
  margin-top:50px;
}
.product-content {margin-top:50px;}
/*.product-wrapper {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: 70px;*/
/*  margin-top:50px;*/
/*}*/
.main-image {
  position: relative;
  background: #f7f7f7;
  border-radius: 15px;
  text-align: center;
}

.main-image img {
  max-width: 100%;
  height: 420px;
  object-fit: fill;
  width: 100%;
}

.zoom-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.thumb-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.thumb-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.thumbnails {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: space-around;
}

.thumbnails img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  border: 2px solid transparent;
  object-fit: cover;
  cursor: pointer;
}

.thumbnails img.active {
  border-color: #d40c13;
}

.category {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #4f46e4;
}

.product-content h1 {
  font-size: 48px;
  margin: 10px 0;
  line-height: 1.2;
}

.product-content h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.product-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}
.product-content .btn-primary {
  border: 2px solid #ac0d12;
}
.product-content .btn-primary:hover {
  background: #ffffff;
  color: #ac0d12;
  border: 2px solid #ac0d12;
}
.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 16px;
  padding-left: 35px;
  position: relative;
  font-size: 17px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #4f46e4;
  color: #4f46e4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.headmar{margin-top:50px;}
.btn-group {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.product-content .btn-outline {
  border: 2px solid #b30d13;
  color: #b30d13;
}

.product-content .btn-outline:hover {
    background: rgb(172 13 18);
    color: rgb(255 255 255);
}

.specifications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.spec-box {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #eee;
}

.spec-box:last-child {
  border-right: none;
}

.spec-box i {
  width: 60px;
  height: 60px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d40c13;
  font-size: 24px;
}

.spec-box h4 {
  margin-bottom: 6px;
}

.spec-box p {
  color: #666;
}

@media (max-width: 991px) {
  .product-wrapper {
    grid-template-columns: 1fr;
  }

  .product-content h1 {
    font-size: 36px;
  }

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

@media (max-width: 600px) {
  .specifications {
    grid-template-columns: 1fr;
  }

  .thumbnails img {
    width: 70px;
    height: 70px;
  }

  .btn-group {
    flex-direction: column;
  }
}

/* product-tabs-section */

.product-tabs-section {
  padding: 0px 0px 80px 0;
}

.product-tabs-section .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Tabs */

.tabs {
  display: flex;
  width: 100%;
  gap: 70px;
  border-bottom: 1px solid #ddd;
  justify-content: flex-start;
}

.tab {
  border: none;

  background: none;

  padding: 20px 0;

  font-size: 16px;

  font-weight: 600;

  color: #555;

  cursor: pointer;

  position: relative;
}

.tab.active {
  color: #c8102e;
}

.tab.active::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -1px;

  width: 100%;

  height: 3px;

  background: #c8102e;
}

/* Description */

.description-wrapper {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;

  margin: 60px 0;
}

.description-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.description-content h2 {
  font-size: 34px;

  margin-bottom: 25px;

  color: #102a4c;
}

.description-content p {
  line-height: 1.9;

  color: #666;

  margin-bottom: 25px;
}

.description-image img {
  width: 100%;

  border-radius: 15px;

  display: block;
}

/* Specification */

.technical-specification h2 {
  font-size: 34px;

  margin-bottom: 30px;

  color: #102a4c;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

table {
  width: 100%;

  border-collapse: collapse;

  border-radius: 8px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

thead {
  background: #102a4c;

  color: #fff;
}

th {
  text-align: left;

  padding: 14px 20px;

  font-size: 15px;
}

td {
  padding: 14px 20px;

  border-bottom: 1px solid #ececec;

  font-size: 15px;

  color: #555;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive */

@media (max-width: 992px) {
  .container {
    width: 90%;
  }

  .description-wrapper {
    grid-template-columns: 1fr;
  }

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

  .tabs {
    display: flex;
    align-items: center;
    gap: 35px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #e5e5e5;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 576px) {
  .description-content h2,
  .technical-specification h2 {
    font-size: 28px;
  }

  th,
  td {
    padding: 12px;

    font-size: 14px;
  }
}

.tab-inner-content {
  display: none;
  animation: fade 0.3s ease;
}

.tab-inner-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*new css*/
.inner-page .pergola-info {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    padding: 120px 30px 0px;
    }

    /* =========================
       TOP DESCRIPTION
    ========================== */

    .inner-page .intro {
      display: flex;
      align-items: center;
      gap: 42px;
      margin-bottom: 32px;
    }

    .inner-page .intro-icon {
      flex: 0 0 128px;
      width: 128px;
      height: 250px;
      border-radius: 15px;
      background: #f2f3ff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .inner-page .intro-icon i {
      font-size: 50px;
      color: #3935e8;
    }

     .inner-page .intro-text {
      max-width: 900px;
    }

    .inner-page .intro-text p {
      font-size: 16px;
      line-height: 1.85;
      font-weight: 400;
      color: #282832;
    }

    /* =========================
       FEATURES
    ========================== */

    .inner-page .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      margin-top:80px;
    }

    .inner-page .inner-feature {
      display: flex;
      align-items: center;
      min-height: 75px;
      padding: 0 28px;
      border-right: 1px solid #dedee8;
    }

    .inner-page .inner-feature:first-child {
      padding-left: 0;
    }

    .inner-feature:last-child {
      border-right: none;
    }

    .inner-page .feature-icon {
      flex: 0 0 66px;
      width: 66px;
      height: 66px;
      border-radius: 50%;
      background: #f2f3ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 18px;
    }

    .inner-page .feature-icon i {
      font-size: 27px;
      color: #4541e8;
    }

    .feature-content h3 {
      font-size: 18px;
      line-height: 1.4;
      color: #151522;
      font-weight: 700;
      margin-bottom: 6px;
      font-family: "Playfair Display", sans-serif;
    }

    .inner-page .feature-content p {
      font-size: 13px;
      line-height: 1.65;
      color: #3e3e49;
      max-width: 170px;
    }

    /* =========================
       TABLET
    ========================== */

    @media (max-width: 900px) {

      .inner-page .pergola-info {
        padding: 35px 25px;
      }

      .inner-page .intro {
        gap: 25px;
      }

      .inner-page .intro-icon {
        flex-basis: 105px;
        width: 105px;
        height: 105px;
      }

      .inner-page .intro-text p {
        font-size: 15px;
      }

       .inner-page .features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
      }

      .inner-page .inner-feature {
        border-right: none;
        padding: 0 15px;
      }

      .inner-page .inner-feature:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid #dedee8;
      }

      .inner-page .inner-feature:nth-child(even) {
        padding-right: 0;
      }
    }

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

    @media (max-width: 600px) {

      .inner-page .pergola-info {
        padding: 30px 20px;
      }

      .inner-page .intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
      }

      .inner-page .intro-icon {
        width: 85px;
        height: 85px;
      }

      .inner-page .intro-icon i {
        font-size: 36px;
      }

      .intro-text p {
        font-size: 14px;
        line-height: 1.7;
      }

      .inner-page .features {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .inner-page .inner-feature,
      .inner-page .inner-feature:nth-child(odd),
      .inner-page .inner-feature:nth-child(even) {
        padding: 0;
        border-right: none;
      }

      .inner-page .feature-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
      }

      .inner-page .feature-content p {
        max-width: none;
      }
    }

 /* FAQ Secction CSS */

 /* ========================================
   FAQ SECTION
======================================== */

.inner-page .faq-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 30px;
  font-family: Arial, Helvetica, sans-serif;
}


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

.inner-page .faq-heading {
  text-align: center;
  margin-bottom: 22px;
}

.inner-page .faq-label {
  display: inline-block;
  padding: 4px 11px;
  margin-bottom: 8px;
  border-radius: 20px;
  background: #f1f2ff;
  color: #4b48e8;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display';
}

.inner-page .faq-heading h2 {
  margin: 0;

  font-family: "Playfair Display", sans-serif;

  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;

  color: #172033;
}

.inner-page .faq-heading h2 span {
  color: #4643e9;
}


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

.inner-page .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top:40px;
}


/* ========================================
   FAQ COLUMN
======================================== */

.inner-page .faq-column {
  border: 1px solid #e1e4ed;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;

  box-shadow: 0 1px 4px rgba(20, 30, 50, 0.03);
}


/* ========================================
   FAQ ITEM
======================================== */

.inner-page .faq-item {
  border-bottom: 1px solid #e6e8ef;
}

.inner-page .faq-item:last-child {
  border-bottom: none;
}


/* ========================================
   QUESTION
======================================== */

.inner-page .faq-question {
  width: 100%;

  min-height: 39px;
  padding: 9px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: none;
  background: #ffffff;

  cursor: pointer;

  text-align: left;

  font-family: poppins, sans-serif;

  font-size: 18px;
  font-weight: 600;

  color: #1e293b;

  transition: background 0.25s ease;
}

.inner-page .faq-question:hover {
  background: #fafaff;
}


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

.inner-page .faq-icon {
  flex-shrink: 0;

  width: 22px;
  height: 22px;

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

  margin-left: 15px;

  color: #453fe8;

  font-size: 22px;
  font-weight: 400;

  transition: transform 0.3s ease;
}


/* ========================================
   ANSWER
======================================== */

.inner-page .faq-answer {
  max-height: 0;
  overflow: hidden;

  padding: 0 16px;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.inner-page .faq-answer p {
    margin: 0;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins';
}


/* ========================================
   ACTIVE FAQ
======================================== */

.inner-page .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 16px 14px;
}

.inner-page .faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 800px) {

  .inner-page .faq-section {
    padding: 50px 20px;
  }

  .inner-page .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .inner-page .faq-heading h2 {
    font-size: 24px;
  }

}


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

@media (max-width: 500px) {

  .inner-page .faq-section {
    padding: 40px 15px;
  }

  .inner-page .faq-heading {
    margin-bottom: 20px;
  }

  .inner-page .faq-heading h2 {
    font-size: 21px;
  }

  .inner-page .faq-question {
    min-height: 45px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .inner-page .faq-icon {
    font-size: 20px;
  }

}
/* ========================================
   GLASS PERGOLA CTA
======================================== */

.inner-page .pergola-cta {
  width: 100%;
  margin-bottom: 100px;
}


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

.inner-page .pergola-cta .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;


  border-radius: 16px;

  background: #edf2fc;
}


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

.inner-page .pergola-cta .cta-content {
  

  padding: 60px 55px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #f2f5fd 0%,
    #e8effc 100%
  );
}


/* ========================================
   LABEL
======================================== */

.inner-page .pergola-cta .cta-label {
  display: inline-block;
  width: fit-content;

  margin-bottom: 13px;
  padding: 5px 10px;

  border-radius: 20px;

  background: #e5eaff;

  color: #4845e8;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.3px;
}


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

.inner-page .pergola-cta .cta-content h2 {
  margin: 0 0 17px;

font-family: 'Playfair Display';

  font-size: 48px;
  line-height: 1.08;

  font-weight: 700;

  color: #101b2d;
}

.inner-page .pergola-cta .cta-content h2 span {
  color: #403de5;
}


/* ========================================
   DESCRIPTION
======================================== */

.inner-page .pergola-cta .cta-content p {
  max-width: 440px;

  margin: 0 0 24px;

  font-size: 16px;
  line-height: 1.65;

  color: #344054;
  font-family: 'Poppins';
}





/* ========================================
   ARROW
======================================== */

.inner-page .pergola-cta .arrow {
  font-size: 26px;
  font-weight: 300;
  margin-left: 10px;
  line-height: 1;

  transition: transform 0.3s ease;
}

.inner-page .pergola-cta .cta-button:hover .arrow {
  transform: translateX(5px);
}


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

.inner-page .pergola-cta .cta-image {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}


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

.inner-page .pergola-cta .cta-image img {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  max-width: none;

  transition: transform 0.5s ease;
}

.inner-page .pergola-cta:hover .cta-image img {
  transform: scale(1.02);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

  .inner-page .pergola-cta .cta-grid {
    grid-template-columns: 1fr 1fr;

    height: 340px;
    min-height: 340px;

    grid-template-rows: 340px;
  }

  .inner-page .pergola-cta .cta-content {
    height: 340px;
    padding: 35px 40px;
  }

  .inner-page .pergola-cta .cta-content h2 {
    font-size: 30px;
  }

  .inner-page .pergola-cta .cta-content p {
    font-size: 14px;
  }

  .pergola-cta .cta-button {
    width: 280px;
    height: 54px;
  }

  .inner-page .pergola-cta .cta-image {
    height: 340px;
  }
}


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

@media (max-width: 767px) {

  .inner-page .pergola-cta {
    margin: 35px 0;
  }

 .inner-page .pergola-cta .cta-grid {
    display: flex;
    flex-direction: column;

    height: auto;
    min-height: 0;

    border-radius: 12px;
  }

  .inner-page .pergola-cta .cta-content {
    height: auto;

    padding: 35px 25px;
  }

  .inner-page .pergola-cta .cta-label {
    font-size: 9px;
  }

 .inner-page .pergola-cta .cta-content h2 {
    font-size: 28px;
  }

  .inner-page .pergola-cta .cta-content p {
    font-size: 14px;
  }

  .inner-page .pergola-cta .cta-button {
    width: 100%;
    height: 54px;
  }

  .inner-page .pergola-cta .cta-image {
    width: 100%;
    height: 280px;
    min-height: 280px;
  }

}


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

@media (max-width: 480px) {

  .inner-page .pergola-cta .cta-content {
    padding: 30px 20px;
  }

  .inner-page .pergola-cta .cta-content h2 {
    font-size: 25px;
  }

  .inner-page .pergola-cta .cta-image {
    height: 230px;
    min-height: 230px;
  }

}

/*new css*/
.hero-inner-content {max-width:1040px!important;}
.hero-inner-content p {font-size: 20px;
  max-width: auto;
  margin-bottom: 0px;}
  .hero-inner-bg img {height: 100%;}
  .inner-page #hero {height: auto;
  min-height: auto;}
  .intro-text h2 {font-size: 45px;margin-bottom: 10px;}
   .intro-text h2  span { color: #4f46e5;}
  .inner-about-content h2{font-size:45px;}
 .inner-page #why-us .section-title {max-width:fit-content!important;}
 .process-grid-inner {display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;}
  .inner-page .process-card{padding: 40px;}
  .inner-page .process-card h3 {  font-size: 22px;}
 .riabout {padding:0!important;}
  .inner-page section#products {padding-top:100px;padding-bottom:0px;}
  .inner-page .intro-text .hero-buttons{margin-top: 30px;}
.inner-page-pyramid .faq-section {padding-top:0px;}