

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');


/*==================================================
    CSS Variables
==================================================*/

:root{

    --primary-color:#d71920;
    --secondary-color:#111111;
    --white-color:#ffffff;
    --text-color:#555555;
    --heading-color:#111111;
    --border-color:#ececec;
    --light-bg:#f7f7f7;

    --heading-font:'Montserrat',sans-serif;
    --body-font:'Poppins',sans-serif;

    --transition:.4s ease;

    --radius:10px;

    --container:1320px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}



/*==================================================
    Reset
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--body-font);
    color:var(--text-color);
    font-size:16px;
    line-height:1.8;
    background:#fff;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;
    background:none;
    cursor:pointer;
    transition:var(--transition);

}

section{

    position:relative;
    padding:120px 0;

}

.container{

    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;

}

.container-fluid{

    width:100%;
    padding:0 40px;

}



/*==================================================
    Typography
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading-color);
    font-family:var(--heading-font);
    font-weight:700;
    line-height:1.2;

}

.section-sub-title{

    display:inline-block;
    color:var(--primary-color);
    font-size:15px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-weight:600;

}

.section-main-title{

    font-size:48px;
    margin-bottom:25px;

}

.section-heading-center{

    text-align:center;
    margin-bottom:70px;

}

.section-heading-center span{

    color:var(--primary-color);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;

}

.section-heading-center h2{

    margin-top:15px;
    font-size:46px;

}



/*==================================================
    Buttons
==================================================*/

.primary-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    background:var(--primary-color);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.primary-button:hover{

    background:#111;
    transform:translateY(-4px);

}



.secondary-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    margin-left:20px;

}

.secondary-button:hover{

    background:#fff;
    color:#111;

}



/*==================================================
    Scroll Progress
==================================================*/

.scroll-progress-bar{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:4px;

    background:var(--primary-color);

    z-index:999999;

}



/*==================================================
    Header
==================================================*/

.main-header{

    position:fixed;

    width:100%;

    left:0;

    top:0;

    z-index:9999;

    transition:.4s;

}

.main-header.header-sticky{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.header-container{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 15px;

}

.header-logo{

    width:170px;

}

.desktop-navigation{

    margin-left:auto;

}

.navigation-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.navigation-menu>li{

    position:relative;

}

.navigation-menu>li>a{

    color:#fff;

    font-size:16px;

    font-weight:600;

    font-family:var(--heading-font);

}

.header-sticky .navigation-menu>li>a{

    color:#fff;

}

.header-right-area{

    display:flex;

    align-items:center;

    margin-left:50px;

    gap:20px;

}



/*==================================================
    Mega Menu
==================================================*/

.mega-menu-parent{

    position:relative;

}

.mega-menu-wrapper{

    position:absolute;

    left:0;

    top:120%;

    width:1000px;

    background:#fff;

    box-shadow:var(--shadow);

    padding:50px;

    opacity:0;

    visibility:hidden;

    transition:.4s;

}

.mega-menu-parent:hover .mega-menu-wrapper{

    opacity:1;

    visibility:visible;

    top:100%;

}

.mega-menu-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.mega-menu-column h4{

    margin-bottom:20px;

    font-size:20px;

}

.mega-menu-column li{

    margin-bottom:14px;

}

.mega-menu-column a{

    color:#555;

}

.mega-menu-column a:hover{

    color:var(--primary-color);

}



/*==================================================
    Hero Section
==================================================*/

.hero-section{
/* 
    height:100vh; */

    overflow:hidden;

    display:flex;

    align-items:center;

    background:#111;

}

.hero-video-image{

    position:absolute;

    inset:0;

}

.hero-video-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*.hero-background-overlay{*/

/*    position:absolute;*/

/*    inset:0;*/

/*    background:linear-gradient(to right,*/
/*    rgba(0,0,0,.85),*/
/*    rgba(0,0,0,.45));*/

/*}*/

.hero-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #111, #1111117d) !important;
    z-index: 1;
}

.hero-container{

    position:relative;

    z-index:5;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding:0 15px;

}

.hero-sub-heading{

    color:var(--primary-color);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:15px;

}

.hero-main-heading{

    font-size:72px;

    color:#fff;

    margin:20px 0;

}

.hero-main-heading span{

    color:var(--primary-color);

}

.hero-description{

    color:#ddd;

    max-width:620px;

    margin-bottom:40px;

    font-size:18px;

}

.hero-image-area{

    position:relative;

}

.hero-image-area img{

    max-width:620px;

    margin-left:auto;

    animation:floatImage 5s ease-in-out infinite;

}

.hero-scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:12px;

}



/*==================================================
    Animation
==================================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
    Company Statistics Section
==================================================*/

.company-statistics-section{

    background:#ffffff;
    padding:90px 0;
    position:relative;

}

.statistics-wrapper{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;

}

.statistics-card{

    background:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:12px;
    transition:.4s;
    border:1px solid #ececec;

}

.statistics-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.statistics-number{

    font-size:54px;
    color:var(--primary-color);
    margin-bottom:15px;

}

.statistics-title{

    font-size:18px;
    font-weight:600;
    color:#111;

}


/*==================================================
    About Section
==================================================*/

.about-company-section{

    background:#f8f8f8;

}

.about-company-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

}

.about-company-image{

    overflow:hidden;
    border-radius:18px;

}

.about-company-image img{

    transition:.6s;

}

.about-company-image:hover img{

    transform:scale(1.08);

}

.about-company-content p{

    margin-bottom:22px;

}

.about-feature-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:40px 0;

}

.about-feature-item{

    display:flex;
      align-items: baseline;
    gap:15px;

}

.about-feature-item i{

    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--primary-color);

}

.about-feature-item span{

    font-weight:500;
    color:#222;

}


/*==================================================
    Timeline
==================================================*/

.company-timeline-section{

    background:#111;
    color:#fff;

}

.company-timeline-section .section-heading-center h2{

    color:#fff;

}

.company-timeline-wrapper{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    position:relative;

}

.company-timeline-wrapper::before{

    content:"";
    position:absolute;
    top:35px;
    left:0;
    width:100%;
    height:2px;
    background:#444;

}

.timeline-item{

    position:relative;
    text-align:center;
    padding-top:70px;

}

.timeline-item::before{

    content:"";
    position:absolute;
    top:25px;
    left:50%;
    transform:translateX(-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--primary-color);
    border:5px solid #fff;

}

.timeline-item h3{

    color:#fff;
    margin-bottom:15px;
    font-size:30px;

}

.timeline-item p{

    color:#bbb;
    font-size:15px;

}


/*==================================================
    Product Showcase
==================================================*/

.product-showcase-section{

    background:#fff;

}

.product-category-tabs{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:70px;

}

.product-tab-button{

    padding:14px 28px;
    border-radius:50px;
    background:#f3f3f3;
    color:#333;
    font-weight:600;
    transition:.4s;

}

.product-tab-button.active{

    background:var(--primary-color);
    color:#fff;

}

.product-tab-button:hover{

    background:#111;
    color:#fff;

}


/*==================================================
    Product Grid
==================================================*/

.product-showcase-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.product-showcase-card{

    background:#fff;
    border-radius:16px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.product-showcase-card:hover{

    transform:translateY(-12px);

}

.product-card-image{

    overflow:hidden;
    position:relative;

}

.product-card-image img{

    transition:.6s;

}

.product-showcase-card:hover .product-card-image img{

    transform:scale(1.12);

}

.product-card-content{

    padding:35px;

}

.product-card-content h3{

    margin-bottom:15px;
    font-size:28px;

}

.product-card-content p{

    margin-bottom:25px;

}

.product-card-content a{

    color:var(--primary-color);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;

}

.product-card-content a:hover{

    letter-spacing:1px;

}


/*==================================================
    Premium Hover Border
==================================================*/

.product-showcase-card::before{

    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:16px;
    transition:.4s;
    pointer-events:none;

}

.product-showcase-card:hover::before{

    border-color:var(--primary-color);

}


/*==================================================
    Decorative Background Shapes
==================================================*/

.product-showcase-section::before{

    content:"";
    position:absolute;
       width: 230px;
    height: 230px;
    background:#f5f5f5;
    border-radius:50%;
    top:-150px;
    right:-150px;

}

.product-showcase-section::after{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:#fafafa;
    border-radius:50%;
    bottom:-120px;
    left:-120px;

}
/*==================================================
    Manufacturing Process Section
==================================================*/
.manufacturing-process-section h2{color: #fff;}
.manufacturing-process-section{

    background:#0d0d0d;
    color:#ffffff;
    position:relative;
    overflow:hidden;

}

.manufacturing-process-section::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(215,25,32,.05);
    top:-250px;
    right:-250px;

}

.manufacturing-process-wrapper{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    margin-top:80px;

}

.manufacturing-process-item{

    background:rgba(255,255,255,.04);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:45px 30px;
    text-align:center;
    transition:.5s;

}

.manufacturing-process-item:hover{

    transform:translateY(-12px);
    background:#d71920;

}

.process-icon{

    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:50%;

}

.process-icon img{

    width:45px;

}

.manufacturing-process-item h4{

    color:#fff;
    margin-bottom:15px;
    font-size:22px;

}

.manufacturing-process-item p{

    color:#ddd;
    font-size:15px;

}



/*==================================================
    Creative Gallery Section
==================================================*/

.creative-gallery-section{

    background:#ece0e0;

}

.gallery-filter-wrapper{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;

}

.gallery-filter-button{

    padding:15px 35px;
    border-radius:50px;
    background:#fff;
    border:1px solid #ececec;
    transition:.4s;
    font-weight:600;

}

.gallery-filter-button.active{

    background:#d71920;
    color:#fff;

}

.gallery-filter-button:hover{

    background:#111;
    color:#fff;

}



/*==================================================
    Masonry Gallery
==================================================*/

.creative-gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows:260px;

    gap:25px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;

}

.gallery-item:hover img{

    transform:scale(1.15);

}



/* Different Sizes */

.gallery-large{

    grid-column:span 2;
    grid-row:span 2;

}

.gallery-wide{

    grid-column:span 2;

}

.gallery-tall{

    grid-row:span 2;

}



/*==================================================
    Gallery Overlay
==================================================*/

.gallery-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    opacity:0;

    transition:.5s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay span{

    color:#d71920;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;

}

.gallery-overlay h3{

    color:#fff;
    margin:15px 0;

}

.gallery-overlay a{

    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:10px;

}



/*==================================================
    Why Choose Section
==================================================*/

.why-choose-us-section{

    background:#fff;

}

.why-choose-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.why-choose-image{

    overflow:hidden;
    border-radius:20px;

}

.why-choose-image img{

    transition:.8s;

}

.why-choose-image:hover img{

    transform:scale(1.08);

}

.why-choose-list{

    margin-top:45px;

}

.why-choose-item{

    padding:28px;
    margin-bottom:22px;
    border-left:5px solid transparent;
    background:#fafafa;
    transition:.4s;

}

.why-choose-item:hover{

    border-color:#d71920;
    transform:translateX(12px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.why-choose-item h4{

    margin-bottom:12px;

}



/*==================================================
    Industries
==================================================*/

.industries-section{

    background:#111;
    color:#fff;

}

.industries-section
.section-heading-center h2{

    color:#fff;

}

.industries-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.industry-card{

    background:#181818;
    border-radius:18px;
    padding:45px 30px;
    text-align:center;
    transition:.5s;
    border:1px solid rgba(255,255,255,.06);

}

.industry-card:hover{

    transform:translateY(-15px);
    background:#d71920;

}

.industry-card img{

    width:70px;
    margin:0 auto 30px;

}

.industry-card h3{

    color:#fff;
    font-size:22px;

}



/*==================================================
    Floating Animation
==================================================*/

.gallery-item{

    animation:galleryFloat 6s ease-in-out infinite;

}

.gallery-item:nth-child(2){

    animation-delay:.5s;

}

.gallery-item:nth-child(3){

    animation-delay:1s;

}

.gallery-item:nth-child(4){

    animation-delay:1.5s;

}

.gallery-item:nth-child(5){

    animation-delay:2s;

}

.gallery-item:nth-child(6){

    animation-delay:2.5s;

}

@keyframes galleryFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}



/*==================================================
    Image Shine Effect
==================================================*/

.gallery-item::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    z-index:5;

}

.gallery-item:hover::before{

    left:130%;
    transition:1s;

}
/*==================================================
    Global Presence Section
==================================================*/

.global-presence-section{

    background:#efeded57;
    position:relative;
    overflow:hidden;

}

.global-presence-section::before{

    content:"";
    position:absolute;
    top:-250px;
    right:-250px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(215,25,32,.04);

}

.global-presence-wrapper{

    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:70px;
    align-items:center;

}

.global-map-area{

    position:relative;

}

.global-map-area img{

    opacity:.9;

}


/*======================================
    Map Pins
======================================*/

.map-pin{

    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--primary-color);

    animation:pinPulse 2s infinite;

}

.pin-india{

    top:45%;
    left:63%;

}

.pin-uae{

    top:40%;
    left:55%;

}

.pin-europe{

    top:28%;
    left:47%;

}

.pin-africa{

    top:56%;
    left:48%;

}

.pin-usa{

    top:32%;
    left:20%;

}

@keyframes pinPulse{

    0%{

        box-shadow:0 0 0 0 rgba(215,25,32,.6);

    }

    100%{

        box-shadow:0 0 0 18px rgba(215,25,32,0);

    }

}

.global-content-area{

    display:grid;
    gap:25px;

}

.global-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;

}

.global-card:hover{

    transform:translateX(10px);

}

.global-card h3{

    font-size:42px;
    color:var(--primary-color);
    margin-bottom:12px;

}



/*==================================================
    Testimonial Section
==================================================*/

.testimonial-section{

    background:#101010;

}

.testimonial-section .section-heading-center h2{

    color:#ffffff;

}

.testimonial-slider{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.testimonial-card{

    background:#181818;
    border-radius:18px;
    padding:45px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.06);

}

.testimonial-card:hover{

    transform:translateY(-12px);

}

.testimonial-rating{

    color:#ffc107;
    font-size:22px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#cccccc;
    margin-bottom:35px;

}

.testimonial-author{

    display:flex;
    align-items:center;
    gap:18px;

}
.testimonial-author img{filter: brightness(0) invert(1);}
.testimonial-author img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;

}

.testimonial-author h4{

    color:#ffffff;

}

.testimonial-author span{

    color:#aaaaaa;

}



/*==================================================
    Certification Section
==================================================*/

.certification-section{

    background:#fafafa;

}

.certification-logo-wrapper{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:35px;

}

.certification-logo{

    background:#ffffff;
    border-radius:18px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:170px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.certification-logo:hover{

    transform:translateY(-10px);

}

.certification-logo img{

    max-width:120px;

}



/*==================================================
    CTA Section
==================================================*/

.cta-section{

    background:#111111;
    overflow:hidden;
    position:relative;

}

.cta-section::before{

    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(215,25,32,.12),
    transparent
    );

}

.cta-wrapper{

    position:relative;
    z-index:2;
    text-align:center;
    max-width:850px;
    margin:auto;

}

.cta-wrapper span{

    color:var(--primary-color);
    letter-spacing:3px;
    text-transform:uppercase;

}

.cta-wrapper h2{

    color:#ffffff;
    font-size:56px;
    margin:25px 0;

}

.cta-wrapper p{

    color:#cccccc;
    margin-bottom:40px;

}

.cta-button-group{

    display:flex;
    justify-content:center;
    gap:20px;

}



/*==================================================
    Footer
==================================================*/

.main-footer{

    padding-top: 70px;
    background:#080808;
    color:#cccccc;

}

.footer-top{

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
    gap:30px;
    padding-bottom:80px;

}

.footer-column h3{

    color:#ffffff;
    margin-bottom:30px;

}

.footer-column p{

    margin-top:25px;

}

.footer-column ul li{

    margin-bottom:16px;

}

.footer-column a{

    color:#cccccc;

}

.footer-column a:hover{

    color:var(--primary-color);

}

.newsletter-form{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.newsletter-form input{

    height:58px;
    padding:0 20px;
    border:none;
    border-radius:8px;

}

.newsletter-form button{

    height:58px;
    background:var(--primary-color);
    color:#ffffff;
    border-radius:8px;

}

.footer-bottom{

    padding:35px 0;
    border-top:1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.footer-social-links{

    display:flex;
    gap:18px;

}

.footer-social-links a{

    color:#cccccc;

}

.footer-social-links a:hover{

    color:var(--primary-color);

}



/*==================================================
    Back To Top
==================================================*/

.back-to-top-button{

    position:fixed;

    right:35px;

    bottom:35px;

    width:58px;
    height:58px;

    border-radius:50%;

    background:var(--primary-color);

    color:#ffffff;

    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:9999;

}

.back-to-top-button.active{

    opacity:1;
    visibility:visible;

}

.back-to-top-button:hover{

    transform:translateY(-8px);

}



/*==================================================
    Utility Classes
==================================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}



/*==================================================
    Selection
==================================================*/

::selection{

    background:var(--primary-color);
    color:#ffffff;

}

/*==================================================
    PREMIUM EFFECTS & MICRO INTERACTIONS
==================================================*/


/*=====================================
    Smooth Scroll (Optional)
=====================================*/

html{
    scroll-behavior:smooth;
}


/*=====================================
    Custom Cursor
=====================================*/

.custom-cursor{

    position:fixed;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--primary-color);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:999999;
    transition:
    transform .15s ease,
    width .25s ease,
    height .25s ease,
    opacity .25s ease;

}

.custom-cursor.cursor-hover{

    width:60px;
    height:60px;
    opacity:.25;

}


/*=====================================
    Glass Sticky Header
=====================================*/

.main-header.header-sticky{
    background: rgb(0 0 0 / 82%);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

}


/*=====================================
    Hero Animated Gradient
=====================================*/

.hero-section::before{

    content:"";
    position:absolute;
    inset:0;

    background:

    radial-gradient(circle at 20% 30%,
    rgba(215,25,32,.18),
    transparent 45%),

    radial-gradient(circle at 80% 70%,
    rgba(255,255,255,.08),
    transparent 40%);

    animation:heroGradientMove 12s linear infinite;

}

@keyframes heroGradientMove{

    0%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(-40px);

    }

    100%{

        transform:translateX(0);

    }

}


/*=====================================
    Reveal Animation
=====================================*/

.reveal{

    opacity:0;
    transform:translateY(80px);
    transition:1s;

}

.reveal.active{

    opacity:1;
    transform:translateY(0);

}


/*=====================================
    Fade Animation
=====================================*/

.fade-in{

    opacity:0;
    transition:1.2s;

}

.fade-in.active{

    opacity:1;

}


/*=====================================
    Scale Animation
=====================================*/

.scale-up{

    transform:scale(.9);
    opacity:0;
    transition:1s;

}

.scale-up.active{

    transform:scale(1);
    opacity:1;

}


/*=====================================
    Premium Image Reveal
=====================================*/

.image-reveal{

    overflow:hidden;
    position:relative;

}

.image-reveal img{

    transform:scale(1.12);
    transition:1.3s;

}

.image-reveal.active img{

    transform:scale(1);

}


/*=====================================
    Metallic Shine Button
=====================================*/

.primary-button{

    position:relative;
    overflow:hidden;

}

.primary-button::before{

    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;

    background:

    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);

    transform:skewX(-25deg);

}

.primary-button:hover::before{

    left:150%;
    transition:.8s;

}


/*=====================================
    Premium Cards
=====================================*/

.statistics-card,
.product-showcase-card,
.industry-card,
.global-card,
.testimonial-card{

    transition:
    transform .45s,
    box-shadow .45s,
    border-color .45s;

}

.statistics-card:hover,
.product-showcase-card:hover,
.industry-card:hover,
.global-card:hover,
.testimonial-card:hover{

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);

}


/*=====================================
    3D Product Hover
=====================================*/

.product-showcase-card{

    transform-style:preserve-3d;

}

.product-showcase-card:hover{

    transform:
    perspective(1200px)
    rotateX(2deg)
    rotateY(-3deg)
    translateY(-12px);

}


/*=====================================
    Image Dark Overlay
=====================================*/

.product-card-image::after{

    content:"";
    position:absolute;
    inset:0;

    background:

    linear-gradient(
    to top,
    rgba(0,0,0,.55),
    transparent);

    opacity:0;

    transition:.4s;

}

.product-showcase-card:hover
.product-card-image::after{

    opacity:1;

}


/*=====================================
    Logo Marquee
=====================================*/

.logo-marquee{

    overflow:hidden;
    white-space:nowrap;

}

.logo-track{

    display:inline-flex;
    gap:80px;

    animation:logoMove 28s linear infinite;

}

.logo-track img{

    width:140px;
    opacity:.6;
    transition:.4s;

}

.logo-track img:hover{

    opacity:1;

}

@keyframes logoMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/*=====================================
    Noise Texture
=====================================*/

.noise-layer{

    position:absolute;
    inset:0;

    pointer-events:none;

    opacity:.05;

    background-image:url("../images/noise.png");

}


/*=====================================
    Floating Elements
=====================================*/

.float-animation{

    animation:floatAnimation 5s ease-in-out infinite;

}

@keyframes floatAnimation{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=====================================
    Loading Screen
=====================================*/

.page-loader{

    position:fixed;
    inset:0;
    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:999999;

}

.loader-circle{

    width:80px;
    height:80px;

    border-radius:50%;

    border:6px solid #eee;
    border-top-color:var(--primary-color);

    animation:loaderSpin .8s linear infinite;

}

@keyframes loaderSpin{

    to{

        transform:rotate(360deg);

    }

}


/*=====================================
    Scroll Down Mouse
=====================================*/

.mouse-scroll{

    width:30px;
    height:48px;

    border:2px solid #fff;
    border-radius:30px;

    position:relative;

}

.mouse-scroll::before{

    content:"";

    position:absolute;

    width:5px;
    height:9px;

    background:#fff;

    border-radius:10px;

    left:50%;
    transform:translateX(-50%);

    top:8px;

    animation:scrollWheel 1.4s infinite;

}

@keyframes scrollWheel{

    0%{

        opacity:1;
        top:8px;

    }

    100%{

        opacity:0;
        top:24px;

    }

}


/*=====================================
    Utility Animation Classes
=====================================*/

.rotate-hover:hover{

    transform:rotate(4deg);

}

.zoom-hover{

    overflow:hidden;

}

.zoom-hover img{

    transition:1s;

}

.zoom-hover:hover img{

    transform:scale(1.12);

}

.shadow-hover:hover{

    box-shadow:
    0 35px 80px rgba(0,0,0,.14);

}

.border-glow:hover{

    border-color:var(--primary-color);

}


/*=====================================
    Gradient Text
=====================================*/

.gradient-text{

    background:
    linear-gradient(
    90deg,
    #d71920,
    #ff5959);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}


/*=====================================
    End of Premium CSS
=====================================*/

/*==================================================
    RESPONSIVE CSS
    Part 1
==================================================*/


/*==================================================
    Large Desktop
==================================================*/

@media (max-width:1600px){

.header-container{

    max-width:1400px;
    padding:20px 40px;

}

.hero-main-heading{

    font-size:64px;

}

.hero-container{

    gap:60px;

}

.section-main-title{

    font-size:44px;

}

.container{

    max-width:1320px;

}

}


/*==================================================
    Desktop
==================================================*/

@media (max-width:1400px){

.container{

    max-width:1140px;

}

.header-container{

    padding:18px 25px;

}

.navigation-menu{

    gap:25px;

}

.navigation-menu>li>a{

    font-size:15px;

}

.hero-main-heading{

    font-size:58px;

}

.hero-description{

    font-size:17px;

}

.hero-image-area img{

    max-width:520px;

}

.section-main-title{

    font-size:42px;

}

.statistics-wrapper{

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.statistics-card{

    padding:35px 20px;

}

.statistics-number{

    font-size:42px;

}

.product-showcase-grid{

    gap:25px;

}

.creative-gallery-grid{

    gap:20px;

}

.footer-top{

    gap:35px;

}

}


/*==================================================
    Laptop
==================================================*/

@media (max-width:1200px){

.container{

    max-width:960px;

}

.header-logo{

    width:150px;

}

.navigation-menu{

    gap:18px;

}

.navigation-menu>li>a{

    font-size:14px;

}

.header-right-area{

    margin-left:25px;

}

.primary-button{

    padding:15px 32px;

}

.secondary-button{

    padding:15px 32px;

}

.hero-container{

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.hero-main-heading{

    font-size:50px;

}

.hero-description{

    font-size:16px;

}

.hero-image-area img{

    max-width:460px;

}

.section-main-title{

    font-size:38px;

}

.about-company-wrapper{

    gap:50px;

}

.about-feature-list{

    gap:15px;

}

.statistics-wrapper{

    grid-template-columns:repeat(3,1fr);

}

.company-timeline-wrapper{

    grid-template-columns:repeat(3,1fr);

    row-gap:50px;

}

.company-timeline-wrapper::before{

    display:none;

}

.product-showcase-grid{

    grid-template-columns:repeat(2,1fr);

}

.industries-grid{

    grid-template-columns:repeat(3,1fr);

}

.manufacturing-process-wrapper{

    grid-template-columns:repeat(3,1fr);

}

.global-presence-wrapper{

    gap:40px;

}

.certification-logo-wrapper{

    grid-template-columns:repeat(4,1fr);

}

.footer-top{

    grid-template-columns:repeat(3,1fr);

}

}


/*==================================================
    Tablet Landscape
==================================================*/

@media (max-width:1024px){

.container{

    max-width:90%;

}

.desktop-navigation{

    display:none;

}

.header-right-area .primary-button{

    display:none;

}

.mobile-menu-button{

    display:flex;

}

.header-container{

    justify-content:space-between;

}

.hero-section{

    height:auto;

    padding:180px 0 120px;

}

.hero-container{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-description{

    margin:auto auto 35px;

}

.hero-image-area{

    margin-top:50px;

}

.hero-image-area img{

    margin:auto;

}

.about-company-wrapper{

    grid-template-columns:1fr;

}

.why-choose-wrapper{

    grid-template-columns:1fr;

}

.global-presence-wrapper{

    grid-template-columns:1fr;

}

.statistics-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.company-timeline-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.product-showcase-grid{

    grid-template-columns:repeat(2,1fr);

}

.manufacturing-process-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.industries-grid{

    grid-template-columns:repeat(2,1fr);

}

.creative-gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-large,
.gallery-wide,
.gallery-tall{

    grid-column:auto;
    grid-row:auto;

}

.testimonial-slider{

    grid-template-columns:1fr;

}

.certification-logo-wrapper{

    grid-template-columns:repeat(3,1fr);

}

.footer-top{

    grid-template-columns:repeat(2,1fr);

}

.section-main-title{

    font-size:34px;

}

.hero-main-heading{

    font-size:46px;

}

}
/*==================================================
    Responsive CSS Part 2
==================================================*/


/*==================================================
    Tablet Portrait
==================================================*/

/* =========================
   Horizontal Scroll Fix
========================= */

html,
body{
    width:100%;
    overflow-x:hidden;
}

/* Sab elements box-sizing follow karein */
*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Images & Videos */
img,
svg,
video,
iframe{
    max-width:100%;
    height:auto;
    display:block;
}

/* Common Section Fix */
section,
.container{
    width:100%;
    max-width:100%;
}

/* Grid/Flex children overflow fix */
*{
    min-width:0;
}

@media (max-width:992px){

section{

    padding:90px 0;

}

.container{

    max-width:95%;

}

.hero-section{

    padding:160px 0 100px;

}

.hero-container{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content{

    order:1;

}

.hero-image-area{

    order:2;

    margin-top:40px;

}

.hero-main-heading{

    font-size:42px;

    line-height:1.2;

}

.hero-description{

    max-width:650px;

    margin:0 auto 35px;

}

.hero-button-group{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.statistics-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.statistics-card{

    padding:35px 20px;

}

.statistics-number{

    font-size:38px;

}

.about-company-wrapper{

    grid-template-columns:1fr;

    gap:50px;

}

.about-company-image{

    order:1;

}

.about-company-content{

    order:2;

}

.about-feature-list{

    grid-template-columns:1fr;

}

.company-timeline-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.product-showcase-grid{

    grid-template-columns:repeat(2,1fr);

}

.product-card-content{

    padding:25px;

}

.manufacturing-process-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.creative-gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-item{

    min-height:260px;

}

.industries-grid{

    grid-template-columns:repeat(2,1fr);

}

.global-presence-wrapper{

    grid-template-columns:1fr;

}

.testimonial-slider{

    grid-template-columns:1fr;

}

.certification-logo-wrapper{

    grid-template-columns:repeat(3,1fr);

}

.cta-wrapper h2{

    font-size:42px;

}

.footer-top{

    grid-template-columns:repeat(2,1fr);

}

.footer-bottom{

    flex-direction:column;

    gap:20px;

    text-align:center;

}

}


/*==================================================
    Mobile Landscape
==================================================*/

@media (max-width:768px){

section{

    padding:70px 0;

}

.header-logo{

    width:140px;

}

.hero-section{

    padding:140px 0 80px;

}

.hero-main-heading{

    font-size:36px;

}

.hero-description{

    font-size:16px;

}

.hero-button-group{

    flex-direction:column;

    align-items:center;

}

.primary-button,
.secondary-button{

    width:100%;

    max-width:280px;

    justify-content:center;

}

.section-main-title{

    font-size:32px;

}

.section-heading-center{

    margin-bottom:50px;

}

.statistics-wrapper{

    grid-template-columns:1fr;

}

.statistics-card{

    padding:30px;

}

.company-timeline-wrapper{

    grid-template-columns:1fr;

}

.timeline-item{

    padding-top:50px;

}

.product-category-tabs{

    justify-content:flex-start;

    overflow-x:auto;

    white-space:nowrap;

    padding-bottom:10px;

    scrollbar-width:none;

}

.product-category-tabs::-webkit-scrollbar{

    display:none;

}

.product-tab-button{

    flex:0 0 auto;

}

.product-showcase-grid{

    grid-template-columns:1fr;

}

.product-card-content h3{

    font-size:24px;

}

.manufacturing-process-wrapper{

    grid-template-columns:1fr;

}

.creative-gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item{

    min-height:300px;

}

.gallery-large,
.gallery-wide,
.gallery-tall{

    grid-column:auto;

    grid-row:auto;

}

.why-choose-wrapper{

    grid-template-columns:1fr;

}

.industries-grid{

    grid-template-columns:1fr;

}

.industry-card{

    padding:35px 25px;

}

.global-card{

    padding:25px;

}

.certification-logo-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.cta-wrapper h2{

    font-size:34px;

}

.cta-button-group{

    flex-direction:column;

    align-items:center;

}

.footer-top{

    grid-template-columns:1fr;

    gap:40px;

}

.newsletter-form{

    max-width:400px;

}

.footer-column{

    text-align:center;

}

.footer-social-links{

    justify-content:center;

}

.back-to-top-button{

    width:48px;

    height:48px;

    right:20px;

    bottom:20px;

}

}
/*==================================================
    Responsive CSS Part 3
==================================================*/


/*==================================================
    Mobile (576px)
==================================================*/

@media (max-width:576px){

section{

    padding:60px 0;

}

.container{

    width:100%;
    padding:0 20px;

}

.header-container{

    padding:15px 20px;

}

.header-logo{

    width:130px;

}

.hero-section{

    padding:120px 0 70px;

}

.hero-main-heading{

    font-size:32px;
    line-height:1.2;

}

.hero-description{

    font-size:15px;
    margin-bottom:25px;

}

.hero-image-area img{

    max-width:100%;

}

.primary-button,
.secondary-button{

    width:100%;
    max-width:100%;
    margin:0;

}

.hero-button-group{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.section-main-title{

    font-size:28px;

}

.section-sub-title{

    font-size:13px;

}

.statistics-card{

    padding:25px;

}

.statistics-number{

    font-size:34px;

}

.about-company-image{

    border-radius:12px;

}

.about-company-content{

    text-align:center;

}

/*.about-feature-item{*/

/*    justify-content:center;*/

/*}*/

.timeline-item h3{

    font-size:24px;

}

.timeline-item p{

    font-size:14px;

}

.product-card-content{

    padding:22px;

}

.product-card-content h3{

    font-size:22px;

}

.product-card-content p{

    font-size:15px;

}

.gallery-item{

    min-height:240px;

}

.manufacturing-process-item{

    padding:30px 20px;

}

.process-icon{

    width:70px;
    height:70px;

}

.process-icon img{

    width:35px;

}

.industry-card{

    padding:30px 20px;

}

.testimonial-card{

    padding:25px;

}

.testimonial-author{

    flex-direction:column;
    text-align:center;

}

.global-card{

    padding:20px;

}

.cta-wrapper h2{

    font-size:28px;

}

.footer-bottom{

    font-size:14px;

}

.footer-social-links{

    gap:15px;

}

}


/*==================================================
    Small Mobile (480px)
==================================================*/

@media (max-width:480px){

.hero-main-heading{

    font-size:28px;

}

.hero-description{

    font-size:14px;

}

.section-main-title{

    font-size:24px;

}

.statistics-number{

    font-size:30px;

}

.statistics-title{

    font-size:16px;

}

.product-tab-button{

    padding:12px 22px;
    font-size:14px;

}

.gallery-filter-button{

    padding:12px 22px;
    font-size:14px;

}

.gallery-item{

    min-height:220px;

}

.process-icon{

    width:60px;
    height:60px;

}

.process-icon img{

    width:30px;

}

.industry-card h3{

    font-size:20px;

}

.cta-wrapper h2{

    font-size:24px;

}

.newsletter-form input{

    height:52px;

}

.newsletter-form button{

    height:52px;

}

.back-to-top-button{

    width:45px;
    height:45px;

    font-size:18px;

}

}


/*==================================================
    Extra Small Mobile (360px)
==================================================*/

@media (max-width:360px){

.container{

    padding:0 15px;

}

.header-logo{

    width:115px;

}

.hero-main-heading{

    font-size:24px;

}

.hero-description{

    font-size:13px;

}

.primary-button,
.secondary-button{

    padding:14px 18px;
    font-size:14px;

}

.section-main-title{

    font-size:22px;

}

.statistics-card{

    padding:20px;

}

.statistics-number{

    font-size:26px;

}

.timeline-item{

    padding-top:40px;

}

.product-card-content{

    padding:18px;

}

.product-card-content h3{

    font-size:20px;

}

.product-card-content p{

    font-size:14px;

}

.gallery-item{

    min-height:200px;

}

.industry-card{

    padding:25px 18px;

}

.industry-card h3{

    font-size:18px;

}

.testimonial-card{

    padding:20px;

}

.testimonial-card p{

    font-size:14px;

}

.cta-wrapper h2{

    font-size:22px;

}

.footer-column h3{

    font-size:18px;

}

.footer-column p,
.footer-column li,
.footer-column a{

    font-size:14px;

}

.footer-social-links{

    gap:12px;

}

.back-to-top-button{

    width:42px;
    height:42px;

    right:15px;
    bottom:15px;

}

}


/*==================================================
    Responsive Utility Classes
==================================================*/

.hide-mobile{

    display:block;

}

.show-mobile{

    display:none;

}

@media (max-width:768px){

.hide-mobile{

    display:none !important;

}

.show-mobile{

    display:block !important;

}

.text-center-mobile{

    text-align:center !important;

}

.mt-mobile-20{

    margin-top:20px !important;

}

.mb-mobile-20{

    margin-bottom:20px !important;

}

.w-100-mobile{

    width:100% !important;

}

}











/*------------------*/


/* Hide Desktop */

@media(max-width:991px){

.desktop-navigation,
.header-right-area{
display:none;
}

.mobile-menu-toggle{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
width:50px;
height:50px;
border:none;
background:none;
cursor:pointer;
gap:6px;
z-index:1002;
}

.mobile-menu-toggle span{
width:28px;
height:2px;
background:#fff;
transition:.35s;
border-radius:20px;
}

.mobile-menu-toggle.active span:nth-child(1){
transform:translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2){
opacity:0;
}

.mobile-menu-toggle.active span:nth-child(3){
transform:translateY(-8px) rotate(-45deg);
}

.mobile-navigation{

position:fixed;
top:0;
right:-100%;
width:340px;
max-width:90%;
height:100vh;
background:#fff;
transition:.45s cubic-bezier(.77,0,.18,1);
z-index:9999;
overflow:auto;
box-shadow:-20px 0 60px rgba(0,0,0,.15);

}

.mobile-navigation.active{

right:0;

}

.mobile-menu-overlay{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
opacity:0;
visibility:hidden;
transition:.4s;
z-index:9998;

}

.mobile-menu-overlay.active{

opacity:1;
visibility:visible;

}

body.menu-open{

overflow:hidden;

}

.mobile-navigation-header{

display:flex;
justify-content:space-between;
align-items:center;
padding:25px;

}

.mobile-navigation-header img{

height:45px;

}

.mobile-close-button{

width:42px;
height:42px;
border:none;
background:#f5f5f5;
border-radius:50%;
font-size:20px;
cursor:pointer;

}

.mobile-navigation-menu{

padding:20px;
list-style:none;

}

.mobile-navigation-menu li{

border-bottom:1px solid #eee;

}

.mobile-navigation-menu li a{

display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
font-weight:600;
color:#222;
text-decoration:none;

}

.mobile-dropdown ul{

max-height:0;
overflow:hidden;
transition:.35s;

}

.mobile-dropdown.open ul{

max-height:500px;

}

.mobile-dropdown ul li{

border:none;

}

.mobile-dropdown ul a{

padding:12px 20px;
font-size:15px;
font-weight:500;

}

}


/*---------------------------*/
/*====================================
    Mobile Fixes (Max 767px)
=====================================*/
@media (max-width:767px){

/* Section Spacing */
section{
    padding:20px 0 !important;
}

.hero-section{
    padding:120px 0 70px !important;
}

.company-statistics-section{
    padding:35px 0 !important;
}

/* Heading */
.section-heading-center{
    margin-bottom:30px !important;
}

.section-heading-center h2,
.section-main-title{
    font-size:30px !important;
    line-height:1.3;
}

.section-heading-center p{
    font-size:15px;
}

/* Product Tabs */
.product-category-tabs,
.gallery-filter-wrapper{
    display:flex;
    gap:10px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:10px;
    justify-content:flex-start;
    -webkit-overflow-scrolling:touch;
}

.product-category-tabs::-webkit-scrollbar,
.gallery-filter-wrapper::-webkit-scrollbar{
    display:none;
}

.product-tab-button,
.gallery-filter-button{
    flex:0 0 auto;
    padding:10px 18px;
    font-size:14px;
}

/* Cards */
.product-showcase-grid,
.creative-gallery-grid{
    gap:20px;
}

/* Feature Points Alignment */
.about-feature-list,
.why-choose-list{
    gap:12px;
}

.why-choose-item{
    display:block;
    align-items:flex-start;
    gap:12px;
    justify-content: start;
}
.about-feature-item{

    display:flex;
    align-items:flex-start;
    gap:12px;
    justify-content: start;
}

.about-feature-item i{
    margin-top:4px;
    flex-shrink:0;
}

/* Timeline */
.company-timeline-wrapper{
    gap:20px;
}

/* Statistics */
.statistics-wrapper{
    gap:20px;
}

/* Manufacturing */
.manufacturing-process-wrapper{
    gap:20px;
}

/* CTA */
.cta-wrapper{
    padding:40px 20px;
}

/* Footer */
.footer-wrapper{
    gap:30px;
}
.about-feature-item span {
    text-align: left;
}
.product-showcase-section::before {display:none;}
.product-showcase-section::after {display:none;}   
    .primary-button {
        width: 85%;
        padding: 10px 32px;
    }
    .secondary-button{
        width: 85%;
        padding: 10px 32px;
    }
}



