body {
    font-family: "Google Sans";
    margin: 0;
    padding: 0;
}

#header {
    background-color: #ffffff00;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    padding: 0px 100px;
}

p {
    font-size: 18px;
    color: #666;
}
a{
    text-decoration: none;
}
h2 {
    text-transform: uppercase;
    font-size: 58px;
    padding-bottom: 20px;
    font-weight: 700;
}

.navbar {
    padding: 10px 15px;
    position: relative;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #000;

    /* Mask your shape */
    -webkit-mask: url('../img/Header.png') no-repeat center / 100% 100%;
    mask: url('../img/Header.png') no-repeat center / 100% 100%;

    /* Make it border only */
    /* padding: 1px; */

    /* Trick for border effect */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    padding-right: 40px;
}

.navbar-brand {}

.navbar a {
    text-decoration: none;
}

.mob-nav {
    width: 55px;
    height: 38px;
    object-fit: scale-down;
}

.mob-nav1 {
    width: 80px;
    height: 45px;
    object-fit: scale-down;
}

h2.logo {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}

h2.logo strong {
    font-size: 35px;
    color: #EDF828;
    font-weight: 600;
}

.navbar-brand a {
    display: flex;
    gap: 15px;
}

h2.center-logo {
    margin: 0 25px;
}

.center-logo .sungloss {
    width: 100px;
    /* height: 60px; */
    object-fit: scale-down;
}

.center-logo .raj {
    width: 123px;
    height: 58px;
    object-fit: scale-down;
}

#navbarSupportedContent {
    justify-content: space-between;
}

ul.navbar-nav {}

ul.navbar-nav li.nav-item {
    margin-right: 25px;
}

ul.navbar-nav li.nav-item:last-child {
    margin-right: 0;
}

ul.navbar-nav li.nav-item a.nav-link {
    color: #000;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--pri-col);
}

ul.navbar-nav li.nav-item a.nav-link:hover {
    color: var(--pri-col);

}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(0, 0, 0);
}

.navbar-expand-lg .navbar-collapse {
    z-index: 999;
}
.mobile{
    display: none;
}
/* HEADER BASE */
#header {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* HIDE ON SCROLL DOWN */
#header.hide {
    transform: translateY(-100%);
}

/* SHOW ON SCROLL UP */


/* OPTIONAL: TRANSPARENT AT TOP */
#header.top {
    background: transparent;
    box-shadow: none;
    /* top: 0px; */
}

#header.show {
    transform: translateY(0);
    background: transparent;
    /* change as per your theme */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}
#header{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* After scroll */
#header.scrolled{
    top: 0;
}

/* Hide navbar */
#header.hide{
    transform: translateY(-120%);
}
.main-section {
    background: url('../img/Banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

}


/* about */
.about-section {
    padding: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

.about-img img {
    width: 90%;
}
.about-content p{
    max-width: 650px;
}
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    position: relative;
    background: transparent;
    text-transform: uppercase;
}

/* Shape Border using mask */
.custom-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    -webkit-mask: url('../img/BTN(Black).png') no-repeat center / 100% 100%;
    mask: url('../img/BTN(Black).png') no-repeat center / 100% 100%;
    /* padding: 1px; */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Arrow animation */
.custom-btn i {
    transition: 0.3s;
}

/* Hover */
.custom-btn:hover {
    background: #fff;
    color: #000;
}

.custom-btn:hover i {
    transform: translateX(6px);
}
.custom-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 20px;
    font-size:16px;
    font-weight:600;
    color:#000;
    text-decoration:none;
    position:relative;
    background:transparent;
    text-transform:uppercase;
    transition:0.3s ease;
    z-index:1;
}

/* Default Black Border */
.custom-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:#000;
    -webkit-mask:url('../img/BTN(Black).png') no-repeat center / 100% 100%;
    mask:url('../img/BTN(Black).png') no-repeat center / 100% 100%;
    z-index:-1;
    transition:0.3s ease;
}

/* Hover White Border */
/* .custom-btn:hover::before{
    background:#fff;

    -webkit-mask:url('../img/BTN(White).png') no-repeat center / 100% 100%;
    mask:url('../img/BTN(White).png') no-repeat center / 100% 100%;
} */

/* Arrow Animation */
.custom-btn i{
    transition:0.3s ease;
}

/* Hover */
.custom-btn:hover{
    background:#000;
    color:#fff;
}

.custom-btn:hover i{
    transform:translateX(6px);
}

/*  */

.popular-products {
    padding: 0px 5% 100px;
    position: relative;
    /* overflow: hidden; */
}

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

.section-title h2 {

    color: #000;
    text-transform: uppercase;
}

.section-title p {
    max-width: 900px;
    margin: auto;
    color: #666;
    
}

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

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.product-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
    filter: grayscale(100%);
}

.product-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.product-name {
    position: absolute;
    left: 28px;
    bottom: 24px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    z-index: 2;
}

.hover-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s ease;
    z-index: 2;
}

.hover-arrow::before {
    content: "↗";
    color: #fff;
    font-size: 34px;
    font-weight: 300;
}

.product-card:hover .hover-arrow {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:1400px) {

    .product-card img {
        height: 520px;
    }
}

@media(max-width:1100px) {

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

    .section-title h2 {
        font-size: 48px;
    }
}

@media(max-width:768px) {

    .popular-products {
        padding: 70px 20px;
    }

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

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        font-size: 16px;
    }

    .product-card img {
        height: 450px;
    }

    .hover-arrow {
        width: 55px;
        height: 55px;
    }

    .hover-arrow::before {
        font-size: 26px;
    }
}
.pos-relati{
    position: relative; 
}
.produt-flex {
    position: absolute;
    right: -95px;
    width: 250px;
    top: -41px;
}

/* export */

.export{
    background: url(../img/Export-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.grid-ex- {
    padding: 85px 89px 70px;
    max-width: 750px;
    background: url(../img/Export-shape.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.testimonial-section{
    padding:100px 0;
    overflow:hidden;
}
/* Heading */

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

.section-heading h2{

    text-transform:uppercase;
}

.section-heading p{
    max-width:900px;
    margin:auto;
    color:#666;
}

/* Layout */

.testimonial-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

/* Navigation */

.testimonial-nav{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.nav-btn{
    width:75px;
    height:60px;
    border:3px solid #000;
    background:transparent;
    font-size:34px;
    cursor:pointer;
    transition:0.4s ease;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-btn:hover{
    background:#000;
    color:#fff;
}

/* Slider */

.testimonial-slider{
    width:100%;
    overflow:visible;
}

.swiper-slide{
    opacity:0.35;
    transition:0.4s ease;
}

.swiper-slide-active{
    opacity:1;
}

/* Card */

.testimonial-card{
    position:relative;
    border:4px solid #000;
    padding:55px;
    background:transparent;
    min-height:350px;
}

.testimonial-card::after{
    content:"";
    position:absolute;
    top:125px;
    right:-4px;
    width:4px;
    height:110px;
    background:#fff;
}

/* Quote */

.quote-icon {
    position: absolute;
    right: -70px;
    bottom: 105px;
    font-size: 138px;
    line-height: 0.8;
    font-weight: 800;
    background: #ffffff;
    padding-left: 10px;
    z-index: 99;
}

/* Text */

.testimonial-text{
    
    color:#666;
    font-style:italic;
    margin-bottom:50px;
}

/* Client */

.client-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-info img{
    width:70px;
    height:70px;
    object-fit:cover;
}

.client-name{
    font-size:26px;
    font-weight:600;
    margin-bottom:5px;
}

.client-role{
    font-size:22px;
    color:#666;
}

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

@media(max-width:1400px){

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

    .testimonial-text{
        font-size:20px;
    }
}

@media(max-width:991px){

    .testimonial-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .testimonial-nav{
        flex-direction:row;
    }
}

@media(max-width:768px){

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

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

    .section-heading p{
        font-size:16px;
    }

    .testimonial-card{
        padding:30px;
        min-height:auto;
    }

    .testimonial-text{
        font-size:16px;
        margin-bottom:35px;
    }

    .client-name{
        font-size:18px;
    }

    .client-role{
        font-size:14px;
    }

    .quote-icon{
        font-size:110px;
        right:-20px;
    }

    .nav-btn{
        width:60px;
        height:50px;
        font-size:28px;
    }
}

.testimonial-section{
    padding:100px 0;
    overflow:hidden;
}

.testimonial-wrapper{
    position:relative;
    padding-left:120px;
}

.testimonial-slider{
    overflow:visible !important;
}

.swiper{
    overflow:visible !important;
}

.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    opacity:0.35;
    transition:0.4s ease;
    overflow:visible;
}

.swiper-slide-active{
    opacity:1;
}

.testimonial-nav{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:99;

    display:flex;
    flex-direction:column;
    gap:20px;
}
.swiper-slide{
    opacity:0.35;
    transition:0.4s ease;
    overflow:visible;
    position:relative;
}

/* Active Slide */
.swiper-slide-active{
    opacity:1;
    z-index:30 !important;
}

/* Previous Slide */
.swiper-slide-prev{
    opacity:0;
    z-index:20 !important;
}

/* Next Slide */
.swiper-slide-next{
    opacity:0.45;
    z-index:10 !important;
}

/* Default Buttons */

.nav-btn{
    width:75px;
    height:60px;
    border:3px solid #000;
    background:transparent;
    color:#000;
    font-size:34px;
    cursor:pointer;
    transition:0.4s ease;

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

/* Hover */

.nav-btn:hover{
    background:#000;
    color:#fff;
}

/* Disabled Button */

.nav-btn.swiper-button-disabled{
    opacity:0.35;
    pointer-events:none;
    border-color:#cfcfcf;
    color:#bdbdbd;
    background:transparent;
}


/* footer */
.footer-section{
    padding:90px 100px 15px;
    overflow:hidden;
    background-color: #000;
}

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

.footer-top{
    text-align:center;
    margin-bottom:90px;
}

.footer-top h2{
    color: #fff;
    margin-bottom:5px;
    text-transform:uppercase;
}

.footer-top p{
    max-width:1200px;
    margin:auto;
}

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

.footer-btn-wrap{
    margin-top:55px;
}

.footer-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:22px;
    padding:28px 45px;
    color:#fff;
    font-size:24px;
    font-weight:600;
    border:3px solid #fff;
    text-transform:uppercase;
    transition:0.4s ease;
    overflow:hidden;
}

.footer-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:#fff;
    transition:0.4s ease;
    z-index:-1;
}

.footer-btn:hover{
    color:#000;
}

.footer-btn:hover::before{
    left:0;
}

.footer-btn i{
    font-size:36px;
    transition:0.4s ease;
}

.footer-btn:hover i{
    transform:translateX(6px);
}

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

.footer-main{
    border-top:1px solid rgba(255,255,255,0.18);
    border-bottom:1px solid rgba(255,255,255,0.18);
}

.footer-grid{
    display:grid;
    grid-template-columns:280px 1fr;
}

/* Logo */

.footer-logo{
    border-right:1px solid rgba(255,255,255,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px 30px;
}

.logo-box{
    position:relative;
    width:190px;
    height:190px;
    border:7px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-box h3{
    font-size:64px;
    font-weight:500;
    letter-spacing:1px;
}

.logo-box span{
    position:absolute;
    right:-48px;
    bottom:20px;
    font-size:24px;
    font-weight:400;
}

/* Right Content */

.footer-right{
    display:flex;
    flex-direction:column;
}

/* Menu */

.footer-menu{
    padding:55px 50px;
    border-bottom:1px solid rgba(255,255,255,0.18);
}

.footer-menu ul{
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    list-style:none;
    margin-bottom: 0;
}

.footer-menu ul li a{
    color:#fff;
    font-size:18px;
    transition:0.3s ease;
}

.footer-menu ul li a:hover{
    opacity:0.7;
}

/* Contact */

.footer-contact{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:45px 50px;
    flex-wrap:wrap;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    max-width:650px;
}

.contact-item i{
    font-size:22px;
    /* margin-top:6px; */
    color: #fff;
}

.contact-item p,
.contact-item a{
    color:#fff;
    font-size:18px;
}

/* Bottom */

.footer-bottom{
    text-align:center;
    padding-top:28px;
}

.footer-bottom p{
    color: #666;
}

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

@media(max-width:1600px){

    .footer-top h2{
        font-size:68px;
    }

    .footer-top p{
        font-size:20px;
    }

    .footer-menu ul li a,
    .contact-item p,
    .contact-item a{
        font-size:18px;
    }

    .footer-bottom p{
        font-size:17px;
    }
}

@media(max-width:991px){

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

    .footer-logo{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.18);
    }

    .footer-contact{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-menu ul{
        gap:25px;
    }
}

@media(max-width:768px){

    .footer-section{
        padding:70px 0 30px;
    }
    .footer-top h2{
        font-size:38px;
    }

    .footer-top p{
        font-size:15px;
        line-height:1.8;
    }

    .footer-btn{
        padding:18px 28px;
        font-size:16px;
    }

    .footer-btn i{
        font-size:24px;
    }

    .footer-menu,
    .footer-contact{
        padding:30px 25px;
    }

    .footer-menu ul{
        flex-direction:column;
        gap:18px;
    }

    .contact-item p,
    .contact-item a{
        font-size:15px;
    }

    .logo-box{
        width:140px;
        height:140px;
    }

    .logo-box h3{
        font-size:42px;
    }

    .logo-box span{
        right:-32px;
        font-size:18px;
    }

    .footer-bottom p{
        font-size:14px;
        line-height:1.7;
    }
}

footer .custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    text-transform: uppercase;
}

/* Shape Border using mask */
footer .custom-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    -webkit-mask: url('../img/BTN\(White\).png') no-repeat center / 100% 100%;
    mask: url('../img/BTN\(White\).png') no-repeat center / 100% 100%;
    /* padding: 1px; */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Arrow animation */
footer .custom-btn i {
    transition: 0.3s;
}

/* Hover */
footer .custom-btn:hover {
    background: #fff;
    color: #000;
}

footer .custom-btn:hover i {
    transform: translateX(6px);
}