/* ====================================
   PREMIUM CORPORATE HEADER 2026
==================================== */

:root{
    --primary:#cc2038;
    --secondary:#101828;
    --dark:#0b1220;
    --light:#ffffff;
    --text:#475467;
    --border:#e4e7ec;
    --radius:18px;
    --transition:.4s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    overflow-x:hidden;
}


/* =========================
   HEADER WRAPPER
========================= */

header{
    position:relative;
    width:100%;
    background:#fff;
    z-index:999;
}

/* =========================
   TOP BAR (CLEAN PREMIUM)
========================= */

.top-bar{
    background:linear-gradient(135deg,#0b1220,#111827);
    padding:8px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.top-left{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.top-left a{
    color:rgba(255,255,255,.75);
    font-size:12px;
    letter-spacing:.5px;
    text-decoration:none;
    transition:var(--transition);
    position:relative;
}

.top-left a:hover{
    color:var(--primary);
}

/* =========================
   MIDDLE HEADER
========================= */

.middle-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 6%;
    background:linear-gradient(180deg,#fff,#fafafa);
    border-bottom:1px solid var(--border);
    position:relative;
    flex-wrap:wrap;
}

/* soft glow */
.middle-header::before{
    content:'';
    position:absolute;
    /* right:-150px; */
    top:0;
    width:94%;
    height:100%;
    /* background:radial-gradient(circle at right, rgb(255 0 0 / 12%), #ff000000 60%); */
}

/* =========================
   LOGO SECTION
========================= */

.logo-section{
    display:flex;
    align-items:center;
    gap:14px;
    z-index:2;
}

.logo-content h2{
    font-size:48px;
    font-family:'Oswald',sans-serif;
    letter-spacing:2px;
    color:#0b1220;
    line-height:1;
}

.logo-content h2 span{
    color:var(--primary);
}

.logo-content p{
    font-size:11px;
    margin-top:6px;
    letter-spacing:3px;
    color:var(--muted);
    text-transform:uppercase;
}
.logo-content img{
    width:320px;
}

.premium-badge{
    display:inline-block;
    margin-top:10px;
    padding:6px 14px;
    background:#cc2038;
    border-radius:25px;
    font-size:11px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(255,204,0,.25);
}

/* =========================
   INFO BOXES (MODERN CARDS)
========================= */

.header-boxes{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.info-box{
    min-width:210px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px 16px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.info-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#cc2038;
}

.info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.info-box h4{
    font-size:14px;
    color:#111827;
    margin-bottom:4px;
}

.info-box p{
    font-size:13px;
    color:var(--muted);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width:1024px){

    .middle-header{
        flex-direction:column;
        text-align:center;
        gap:18px;
    }

    .header-boxes{
        justify-content:center;
    }

    .logo-content h2{
        font-size:40px;
    }
}

/* Mobile */
@media (max-width:768px){

    .top-bar{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .top-left{
        justify-content:center;
    }

    .middle-header{
        padding:18px 5%;
    }

    .logo-content h2{
        font-size:32px;
    }

    .header-boxes{
        flex-direction:column;
        width:100%;
    }

    .info-box{
        width:100%;
    }
}

/* Small mobile */
@media (max-width:480px){

    .logo-content h2{
        font-size:28px;
    }

    .top-left a{
        font-size:11px;
    }
}
/* ====================================
   PREMIUM NAVBAR
==================================== */
a{
    text-decoration: none !important;
}
.navbar{
    background:rgba(16,24,40,.97);
    backdrop-filter:blur(20px);
    position:sticky;
    top:0;
    padding:0 5% !important;
    transition:all .4s ease;
    z-index:99999;
    display: flex !important;
    justify-content: center !important;
    height: 70px !important;
}

.navbar ul{
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
}

.navbar > ul > li{
    position:relative;
}

.navbar > ul > li > a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:24px 22px;
    font-size:14px;
    font-weight:600;
    transition:var(--transition);
    position:relative;
}

.navbar > ul > li > a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:8px;
    width:0;
    height:3px;
    background:var(--primary);
    transform:translateX(-50%);
    transition:var(--transition);
    border-radius:10px;
}

.navbar > ul > li > a:hover,
.navbar > ul > li > a.active{
    color:var(--primary);
}

.navbar > ul > li > a:hover::after,
.navbar > ul > li > a.active::after{
    width:60%;
}

/* ====================================
   PREMIUM MEGA MENU
==================================== */

.mega-dropdown{
    position:static !important;
}

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#fff;
    padding:45px 0;
    border-top:4px solid var(--primary);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.35s ease;

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);
}

.mega-dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.mega-menu{
    width:80%;
    /* background:#f4f1e4; */
    padding:45px;
    border-radius:10px;
    margin-left:10%;
}

.jk-style-products h3{
    font-size:28px;
    margin-bottom:35px;
    color:#111;
    font-weight:700;
}

.jk-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px 25px;
}

.jk-product-item{
    text-align:center;
    color:#111;
    transition:.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jk-product-item img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:15px;
    transition:.3s;
}

.jk-product-item span{
    display:block;
    font-size:17px;
    line-height:1.5;
}

.jk-product-item:hover img{
    transform:translateY(-6px);
}

.jk-product-item:hover{
    color:#cc2038;
}
.mega-wrapper{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:280px 1fr 1fr;
    gap:35px;
}

/* LEFT MENU */

.mega-links{
    background:#fafafa;
    padding:25px;
    border-radius:20px;
}

.mega-links h3{
    margin-bottom:20px;
    color:#101828;
    font-size:24px;
}

.mega-links a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    text-decoration:none;
    color:#475467;
    border-bottom:1px solid #eee;
    transition:var(--transition);
}

.mega-links a:hover{
    color:var(--primary);
    padding-left:10px;
}

/* CONTENT BOX */

.mega-box{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:var(--transition);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.mega-box:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.img-wrap{
    overflow:hidden;
}

.mega-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.6s;
}

.mega-box:hover img{
    transform:scale(1.08);
}

.mega-box h4{
    padding:20px 20px 10px;
    font-size:22px;
    color:#101828;
}

.mega-box p{
    padding:0 20px;
    color:#667085;
    line-height:1.8;
    font-size:14px;
}

.read-more{
    display:inline-block;
    margin:20px;
    text-decoration:none;
    color:#111;
    font-weight:700;
    position:relative;
}

.read-more::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.4s;
}

.read-more:hover{
    color:var(--primary);
}

.read-more:hover::after{
    width:100%;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:991px){

.top-bar,
.middle-header{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.logo-content h2{
    font-size:42px;
}

.header-boxes{
    flex-direction:column;
    width:100%;
}

.info-box{
    width:100%;
    min-width:100%;
}
.navbar{
    display: none !important;
}
.navbar ul{
    flex-wrap:wrap;
}

.navbar > ul > li > a{
    padding:15px;
}

.mega-wrapper{
    grid-template-columns:1fr;
}

.mega-menu{
    position:relative;
}
.middle-header::before{
    width:100%;
}

.logo-content img{
    width:220px;
}
}


.navbar.fixed{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    animation:slideDown .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

@keyframes slideDown{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}



/*====================================================
HAMBURGER
====================================================*/

.menu-toggle{

    display:none;

    width:52px;
    height:52px;

    border:none;

    background:#cc2038;

    border-radius:12px;

    cursor:pointer;

    position:relative;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:6px;

    transition:.35s;
}

.menu-toggle span{

    width:24px;
    height:2px;

    background:#fff;

    transition:.35s;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}


.mobile-menu{

    display:none;

}

.mobile-overlay{

    display:none;

}


/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

    .menu-toggle{

        display:flex;

    }

    .mobile-menu{

        display:block;

    }

    .mobile-overlay{

        display:block;

    }

    .navbar{

        display:none;

    }

    .header-boxes{

        display:none;

    }

    .middle-header{

        justify-content:space-between;

        padding:18px;

    }

}


/*==================================================
PHONE
==================================================*/

@media(max-width:768px){

    .logo-content h2{

        font-size:30px;

    }

    .premium-badge{

        font-size:10px;

        padding:5px 12px;

    }

}


/*==================================================
SMALL PHONE
==================================================*/

@media(max-width:480px){

    .logo-content h2{

        font-size:26px;

    }

    .menu-close{

        width:40px;

        height:40px;

    }

}


/*==================================================
ANIMATION
==================================================*/

@keyframes slideIn{

    from{

        transform:translateX(100%);

        opacity:0;

    }

    to{

        transform:translateX(0);

        opacity:1;

    }

}



/* ==========================================
   LARGE LAPTOP
========================================== */

@media (max-width:1400px){

    .middle-header,
    .navbar{
        padding-left:4%;
        padding-right:4%;
    }

    .mega-menu{
        width:96%;
        margin:auto;
        left:2%;
    }

}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width:1200px){

    .logo-content h2{
        font-size:42px;
    }

    .header-boxes{
        gap:12px;
    }

    .info-box{
        min-width:180px;
    }

    .mega-wrapper{
        grid-template-columns:240px 1fr 1fr;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .top-bar{
        padding:12px 20px;
    }

    .top-left{
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    .middle-header{

        display:flex;
        justify-content:space-between;
        align-items:center;

        padding:18px 20px;

    }

    .header-boxes{
        display:none;
    }

    .navbar{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .logo-section{
        width:auto;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .top-bar{

        flex-direction:column;

        text-align:center;

        gap:10px;

        padding:12px;

    }

    .top-left{

        justify-content:center;

        gap:10px;

    }

    .top-left a{

        font-size:12px;

    }

    .middle-header{

        padding:15px;

    }

    .logo-content h2{

        font-size:30px;

    }

    .logo-content p{

        font-size:10px;

        letter-spacing:2px;

    }

    .premium-badge{

        margin-top:8px;

        padding:5px 10px;

        font-size:10px;

    }

}


/* ==========================================
   SMALL PHONE
========================================== */

@media (max-width:480px){

    .middle-header{

        padding:14px;

    }

    .logo-content h2{

        font-size:24px;

    }

    .logo-content p{

        font-size:9px;

    }

    .menu-toggle{

        width:46px;

        height:46px;

    }

    .menu-toggle span{

        width:22px;

    }

}




/*=============================
MOBILE NAVIGATION
=============================*/

.mobile-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:10px;

    background:#cc2038;

    color:#fff;

    font-size:22px;

    cursor:pointer;

}


/* Mobile */

@media(max-width:991px){

.mobile-toggle{

    display:flex;

    justify-content:center;

    align-items:center;

    position:fixed;

    top:70px;

    right:18px;

    z-index:99999;
    position: absolute;

}

.navbar{

    position:fixed;

    top:0;

    left:-320px;

    width:300px;

    height:100vh;

    background:#fff;

    overflow-y:auto;

    transition:.35s;

    padding-top:90px;

    z-index:99998;

    box-shadow:0 0 30px rgba(0,0,0,.15);

}

.navbar.active{

    left:0;

}

.navbar ul{

    display:block;

}

.navbar ul li{

    width:100%;

}

.navbar ul li a{

    display:block;

    color:#111;

    padding:16px 22px;

    border-bottom:1px solid #eee;

}

.mega-menu{

    display:none !important;

}


}

/* Overlay */

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(6px);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:99998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}


/* Sidebar */

.mobile-menu-content{
    position:absolute;
    top:0;
    left:-100%;
    width:340px;
    max-width:90%;
    height:100vh;
    background:#fff;
    overflow-y:auto;
    transition:.4s ease;
    box-shadow:10px 0 40px rgba(0,0,0,.18);
}

.mobile-overlay.active .mobile-menu-content{
    left:0;
}


/* Scroll */

.mobile-menu-content::-webkit-scrollbar{
    width:6px;
}

.mobile-menu-content::-webkit-scrollbar-thumb{
    background:#cc2038;
    border-radius:20px;
}


/* Logo */

.mobile-logo-area{
    position:sticky;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    background:#111827;
    color:#fff;
    z-index:10;
}

.mobile-logo-area h2{
    font-family:'Oswald',sans-serif;
    font-size:28px;
    margin:0;
}

.mobile-logo-area span{
    color:#cc2038;
}

.close-menu{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#cc2038;
    color:#fff;
    cursor:pointer;
}


/* Menu */

.mobile-nav{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-nav>li{
    border-bottom:1px solid #ececec;
}

.mobile-nav>li>a,
.mobile-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    cursor:pointer;
}

.mobile-nav>li>a:hover,
.mobile-title:hover{
    background:#fff6ef;
    color:#cc2038;
}


/* Submenu */

.mobile-submenu{
    display:none;
    background:#fafafa;
}

.mobile-submenu a{
    display:block;
    padding:14px 42px;
    text-decoration:none;
    color:#555;
    border-top:1px solid #eee;
}

.mobile-submenu a:hover{
    background:#fff;
    color:#cc2038;
    padding-left:52px;
}


/* Service Group */

.mobile-service-group h4{
    background:#cc2038;
    color:#fff;
    padding:12px 20px;
    margin:0;
    font-size:15px;
}


/* Bottom */

.mobile-bottom{
    padding:20px;
}

.call-btn,
.quote-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    margin-bottom:12px;
    font-weight:600;
}

.call-btn{
    background:#cc2038;
    color:#fff;
}

.quote-btn{
    border:2px solid #cc2038;
    color:#cc2038;
}

.quote-btn:hover{
    background:#cc2038;
    color:#fff;
}


/* ==========================================
   SMOOTH SCROLL
========================================== */

html{

    scroll-behavior:smooth;

}

.simple-services{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px;
}

/* reuse your existing mega-links but improve spacing */
.simple-services .mega-links h3{
    font-size:18px;
    margin-bottom:15px;
    color:#111;
    position:relative;
}

.simple-services .mega-links h3::after{
    content:'';
    width:40px;
    height:3px;
    background:#cc2038;
    position:absolute;
    left:0;
    bottom:-6px;
    border-radius:10px;
}

.simple-services .mega-links a{
    padding:8px 0;
    font-size:14px;
    color:#555;
    border-bottom:1px dashed #eee;
    transition:0.3s;
}

.simple-services .mega-links a:hover{
    color:#cc2038;
    padding-left:10px;
}



.hero-video-section{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
}

.hero-video iframe{
    width:100vw;
    height:56.25vw;
    min-height:100vh;
    min-width:177.77vh;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.55));
}


.sub-title{
    display:inline-block;
    width:max-content;
    background:#cc2038;
    color:#111;
    padding:12px 25px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}


.hero-content p{
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    color:#e6e6e6;
}


@media(max-width:768px){

.hero-content{
    text-align:center;
    align-items:center;
    padding:20px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:15px;
}

}



.hero-content{
    position:relative;
    z-index:10;
    padding-left:8%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-top-text{
    display:inline-block;
    color:#ffffff;
    font-size:55px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:8px;
    font-weight:300;
    margin-bottom:15px;

    text-shadow:
    0 2px 10px rgba(0,0,0,.4);
}

.hero-outline-title{
    margin:0;
    font-family:'Oswald',sans-serif;
    font-size:200px;
    line-height:.85;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:6px;

    color:transparent;
    -webkit-text-stroke:5px #cc2038;

    text-shadow:
    0 0 15px rgba(255,235,0,.25),
    0 0 30px rgba(255,235,0,.15);

    animation: glowText 3s infinite alternate;
}

@keyframes glowText{
    from{
        text-shadow:
        0 0 15px #cc20385c;
    }
    to{
        text-shadow:
        0 0 30px #e61a355c;
    }
}

@media(max-width:991px){

.hero-top-text{
    font-size:24px;
    letter-spacing:3px;
}

.hero-outline-title{
    font-size:90px;
    -webkit-text-stroke:2px #cc2038;
}

}



.about-modern{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    background:#fff;
}

/* LEFT SIDE */

.about-image-box{
    position:relative;
}

.about-image-box img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:35px;
    display:block;
}

/* EXPERIENCE BADGE */

.experience-circle{
    position:absolute;
    right:-50px;
    top:50%;
    transform:translateY(-50%);

    width:190px;
    height:190px;

    background:#cc2038;
    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 20px 60px rgb(255 0 0 / 45%);

    z-index:5;
}

.experience-circle h2{
    margin:0;
    font-size:55px;
    line-height:1;
    color:white;
    font-family:'Oswald',sans-serif;
}

.experience-circle span{
    font-size:14px;
    font-weight:600;
    text-align:center;
    color:#fff;
}

/* VERTICAL TEXT */

.vertical-text{
    position:absolute;
    left:-95px;
    top:50%;

    transform:
    translateY(-50%)
    rotate(-90deg);

    font-size:24px;
    font-weight:700;
    letter-spacing:12px;
    color:#e5e5e5;
}

/* RIGHT SIDE */

.about-tag{
    display:inline-block;
    background:#cc203845;
    color:#111;
    padding:12px 25px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.about-right h2{
    font-size:55px;
    line-height:1;
    margin:25px 0;
    color:#111;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
}

.about-right p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

/* STATS */

.about-highlight{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.highlight-box{
    flex:1;
    background:#f8f8f8;
    padding:25px 15px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.highlight-box:hover{
    /* background:#cc2038; */
    transform:translateY(-8px);
}

.highlight-box strong{
    display:block;
    font-size:42px;
    color:#111;
    font-family:'Oswald',sans-serif;
}

.highlight-box span{
    color:#666;
    font-size:14px;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    margin-top:40px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#cc2038;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-modern{
    grid-template-columns:1fr;
    gap:40px;
}

.about-image-box img{
    height:450px;
}

.experience-circle{
    width:130px;
    height:130px;
    right:15px;
}

.experience-circle h2{
    font-size:45px;
}

.vertical-text{
    display:none;
}

.about-right h2{
    font-size:42px;
}

.about-highlight{
    flex-direction:column;
}

}



/* ==========================
   PREMIUM PRODUCTS SHOWCASE
========================== */

.products-showcase{
    padding:120px 7%;
    background:linear-gradient(to bottom,#ffffff,#f8f8f8);
    position:relative;
    overflow:hidden;
}

.products-showcase::before{
    content:"PRODUCTS";
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    font-family:'Oswald',sans-serif;
    color:rgba(0,0,0,.03);
    pointer-events:none;
}

/* HEADING */

.product-heading{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.product-heading span{
    display:inline-block;
    color:#cc2038;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.product-heading h2{
    font-size:60px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:15px;
    color:#111;
}

.product-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* MAIN BOX */

.product-wrapper{
    display:grid;
    grid-template-columns:52% 48%;
    align-items:center;
    gap:60px;
    background:#fff;
    padding:35px;
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    position:relative;
    z-index:2;
}

/* IMAGE SIDE */

.mainProductSlider{
    width:100%;
    overflow:hidden;
    border-radius:25px;
}

.mainProductSlider .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
}

.mainProductSlider img{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
    border-radius:25px;
}

.mainProductSlider:hover img{
    transform:scale(1.06);
}

/* CONTENT SIDE */

.product-content{
    padding:20px;
}

.product-content span{
    font-size:90px;
    font-family:'Oswald',sans-serif;
    color:#f2f2f2;
    display:block;
    line-height:1;
    margin-bottom:-20px;
}

.product-content h3{
    font-size:52px;
    color:#111;
    font-family:'Oswald',sans-serif;
    margin-bottom:20px;
    line-height:1.1;
}

.product-content p{
    color:#666;
    line-height:2;
    font-size:16px;
    margin-bottom:35px;
}

.product-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:16px 38px;
    background:#111;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.product-content a:hover{
    background:#cc2038;
    transform:translateY(-5px);
}

/* THUMBNAILS */

.thumbSlider{
    margin-top:25px;
}

.thumbSlider .swiper-slide{
    opacity:.45;
    transition:.4s;
    cursor:pointer;
}

.thumbSlider .swiper-slide-thumb-active{
    opacity:1;
}

.thumbSlider img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
    border:3px solid transparent;
}

.thumbSlider .swiper-slide-thumb-active img{
    border-color:#cc2038;
}

/* NAVIGATION */

.product-prev,
.product-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:26px;
    box-shadow:0 10px 35px rgba(0,0,0,.15);
    z-index:50;
    transition:.4s;
}

.product-prev:hover,
.product-next:hover{
    background:#cc2038;
    color:#fff;
}

.product-prev{
    left:20px;
}

.product-next{
    right:20px;
}

/* MOBILE */

@media(max-width:991px){

.products-showcase{
    padding:80px 5%;
}

.products-showcase::before{
    font-size:90px;
}

.product-wrapper{
    grid-template-columns:1fr;
    gap:30px;
    padding:20px;
}

.product-heading h2{
    font-size:40px;
}

.mainProductSlider img{
    height:280px;
}

.product-content{
    padding:0;
}

.product-content span{
    font-size:55px;
}

.product-content h3{
    font-size:32px;
}

.thumbSlider img{
    height:75px;
}

.product-prev,
.product-next{
    width:50px;
    height:50px;
    font-size:20px;
}

}



.strength-section{
    padding:120px 8%;
    background:#111827cf;
    position:relative;
    overflow:hidden;
}

.strength-section::before{
    content:'PATEL';
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:220px;
    font-weight:800;
    color:rgba(255,255,255,.03);
    pointer-events:none;
}

.strength-heading{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.strength-heading span{
    color:#cc2038;
    font-weight:600;
    letter-spacing:3px;
}

.strength-heading h2{
    color:#fff;
    font-size:55px;
    line-height:1.1;
    margin-top:15px;
    font-family:'Oswald',sans-serif;
}

.strength-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.strength-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px 30px;
    transition:.4s;
}

.strength-card:hover{
    transform:translateY(-12px);
    border-color:#cc2038;
}

.strength-card.active{
    background:#cc2038;
}

.strength-card.active h3,
.strength-card.active p,
.strength-card.active .number{
    color:#111;
}

.number{
    font-size:60px;
    font-family:'Oswald',sans-serif;
    color:#cc2038;
    margin-bottom:20px;
}

.strength-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.strength-card p{
    color:#c7c7c7;
    line-height:1.8;
}

/* ===============================
   Responsive - Strength Section
================================*/

/* Large Tablet */
@media (max-width:1200px){

    .strength-section{
        padding:100px 6%;
    }

    .strength-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .strength-heading h2{
        font-size:46px;
    }

    .strength-section::before{
        font-size:170px;
    }

}

/* Tablet */
@media (max-width:768px){

    .strength-section{
        padding:80px 20px;
    }

    .strength-section::before{
        font-size:110px;
        top:30px;
    }

    .strength-heading{
        margin-bottom:45px;
    }

    .strength-heading span{
        font-size:14px;
        letter-spacing:2px;
    }

    .strength-heading h2{
        font-size:34px;
        line-height:1.3;
    }

    .strength-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .strength-card{
        padding:30px 25px;
        border-radius:22px;
        width: 95%;
    }

    .number{
        font-size:48px;
        margin-bottom:15px;
    }

    .strength-card h3{
        font-size:22px;
    }

    .strength-card p{
        font-size:15px;
        line-height:1.7;
    }

}

/* Mobile */
@media (max-width:480px){

    .strength-section{
        padding:70px 15px;
    }

    .strength-section::before{
        font-size:70px;
        top:20px;
    }

    .strength-heading{
        margin-bottom:35px;
    }

    .strength-heading span{
        font-size:13px;
        letter-spacing:1px;
    }

    .strength-heading h2{
        font-size:28px;
        line-height:1.35;
    }

    .strength-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .number{
        font-size:40px;
    }

    .strength-card h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .strength-card p{
        font-size:14px;
        line-height:1.6;
    }

}




.brands-section{
    padding:120px 8%;
    background:#fff;
    text-align:center;
}

.section-subtitle{
    color:#cc2038;
    font-weight:700;
    letter-spacing:3px;
}

.brands-section h2{
    font-size:55px;
    font-family:'Oswald',sans-serif;
    margin:15px 0 60px;
}

.brand-slider{
    overflow:hidden;
}

.brand-track{
    display:flex;
    width:max-content;
    animation:scrollBrand 30s linear infinite;
}

.brand-item{
    min-width:250px;
    height:120px;
    margin:0 15px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f7f7f7;
    border-radius:20px;

    font-size:28px;
    font-weight:700;
    transition:.4s;
}

.brand-item:hover{
    background:#cc2038;
}

@keyframes scrollBrand{

from{
transform:translateX(0);
}

to{
transform:translateX(-50%);
}

}



.services-premium{
    padding:120px 8%;
    background:#111827cf;
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:80px;
    align-items:start;
}

.services-left span{
    color:#cc2038;
    font-weight:700;
    letter-spacing:3px;
}

.services-left h2{
    color:#fff;
    font-size:55px;
    line-height:1;
    margin:20px 0;
    font-family:'Oswald',sans-serif;
}

.services-left p{
    color:#cfcfcf;
    line-height:1.9;
}

.services-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.service-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-10px);
    background:#cc2038;
}

.service-box:hover h3,
.service-box:hover p{
    color:#111;
}

.service-box h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.service-box p{
    color:#cfcfcf;
    line-height:1.8;
}


/*==============================
 Responsive - Services Premium
===============================*/

/* Laptop */
@media (max-width:1200px){

    .services-premium{
        padding:100px 6%;
        gap:50px;
        grid-template-columns:1fr;
    }

    .services-left{
        text-align:center;
        max-width:800px;
        margin:auto;
    }

    .services-left h2{
        font-size:46px;
    }

    .services-right{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Tablet */
@media (max-width:768px){

    .services-premium{
        padding:80px 20px;
        gap:40px;
    }

    .services-left span{
        font-size:14px;
        letter-spacing:2px;
    }

    .services-left h2{
        font-size:36px;
        line-height:1.2;
        margin:15px 0;
    }

    .services-left p{
        font-size:15px;
        line-height:1.8;
    }

    .services-right{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-box{
        padding:30px 25px;
        border-radius:20px;
    }

    .service-box h3{
        font-size:22px;
        margin-bottom:12px;
    }

    .service-box p{
        font-size:15px;
        line-height:1.7;
    }

}

/* Mobile */
@media (max-width:480px){

    .services-premium{
        padding:70px 15px;
        gap:35px;
    }

    .services-left h2{
        font-size:28px;
    }

    .services-left p{
        font-size:14px;
    }

    .service-box{
        padding:25px 20px;
        border-radius:18px;
    }

    .service-box h3{
        font-size:20px;
    }

    .service-box p{
        font-size:14px;
        line-height:1.6;
    }

}



.why-patel{
    position:relative;
    padding:140px 8%;
    background:
    linear-gradient(
    180deg,
    #ffffff,
    #fafafa);
    overflow:hidden;
}

.why-patel::before{
    content:'PATEL TYRES';
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    color:rgba(0,0,0,.025);
    white-space:nowrap;
    pointer-events:none;
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title h2{
    font-size:55px;
    line-height:.95;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    color:#111;
    margin-top:25px;
}

.section-title span{
    display:inline-block;
    padding:12px 28px;
    background:#cc2038;
    border-radius:50px;
    font-weight:700;
    letter-spacing:2px;
}

.why-wrapper{
    display:grid;
    grid-template-columns:1fr 450px 1fr;
    align-items:center;
    gap:40px;
}

.feature-box{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:30px;
    overflow:hidden;
    transition:.5s;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:
    0 15px 40px rgba(0,0,0,.04),
    0 5px 15px rgba(0,0,0,.03);
}

.feature-box::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#cc2038;
}

.feature-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#cc20380f;
    border-radius:50%;
    top:-90px;
    right:-90px;
    transition:.5s;
}

.feature-box:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.10),
    0 10px 25px rgba(255,235,0,.15);
}

.feature-box:hover::after{
    transform:scale(1.4);
}

.feature-box h3{
    font-size:26px;
    color:#111;
    margin-bottom:12px;
    font-weight:700;
}

.feature-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.tyre-center{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.tyre-center img{
    max-width:380px;
    position:relative;
    z-index:5;
    filter:
    drop-shadow(0 20px 40px rgba(0,0,0,.18));
}


.ring{
    width:420px;
    height:420px;
    border:2px dashed #cc2038;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    animation:rotateRing 20s linear infinite;
}
.stats-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:100px;
}

.stat{
    background:#fff;
    padding:40px 25px;
    border-radius:30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.stat::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#cc2038;
}

.stat:hover{
    transform:translateY(-10px);
}

.stat h2{
    font-size:50px;
    line-height:1;
    margin:0;
    font-family:'Oswald',sans-serif;
    color:#111;
}

.stat span{
    color:#666;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

@keyframes spinTyre{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes rotateRing{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(-360deg);
    }
}
/*==================================
 Responsive - Why Patel Section
===================================*/

/* Laptop */
@media (max-width:1200px){

    .why-patel{
        padding:100px 6%;
    }

    .why-patel::before{
        font-size:120px;
        top:25px;
    }

    .section-title{
        margin-bottom:60px;
    }

    .section-title h2{
        font-size:46px;
        line-height:1.1;
    }

    .why-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .left-features,
    .right-features{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .tyre-center{
        order:-1;
        margin-bottom:10px;
    }

    .tyre-center img{
        max-width:320px;
    }

    .ring{
        width:360px;
        height:360px;
    }

    .stats-row{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:70px;
    }

}

/* Tablet */
@media (max-width:768px){

    .why-patel{
        padding:80px 20px;
    }

    .why-patel::before{
        font-size:70px;
        white-space:normal;
        text-align:center;
        width:100%;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title span{
        padding:10px 22px;
        font-size:13px;
        letter-spacing:1px;
    }

    .section-title h2{
        font-size:34px;
        line-height:1.2;
        margin-top:18px;
    }

    .left-features,
    .right-features{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feature-box{
        padding:28px 22px;
        border-radius:22px;
    }

    .feature-box h3{
        font-size:22px;
    }

    .feature-box p{
        font-size:15px;
        line-height:1.7;
    }

    .tyre-center img{
        max-width:260px;
    }

    .ring{
        width:290px;
        height:290px;
    }

    .stats-row{
        grid-template-columns:repeat(2,1fr);
        margin-top:50px;
        gap:18px;
    }

    .stat{
        padding:30px 20px;
        border-radius:22px;
    }

    .stat h2{
        font-size:38px;
    }

    .stat span{
        font-size:13px;
    }

}

/* Mobile */
@media (max-width:480px){

    .why-patel{
        padding:70px 15px;
    }

    .why-patel::before{
        display:none;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title span{
        font-size:12px;
        padding:8px 18px;
    }

    .feature-box{
        padding:22px 18px;
        border-radius:18px;
    }

    .feature-box h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .feature-box p{
        font-size:14px;
        line-height:1.6;
    }

    .tyre-center img{
        max-width:210px;
    }

    .ring{
        width:240px;
        height:240px;
    }

    .stats-row{
        grid-template-columns:1fr;
        gap:15px;
        margin-top:40px;
    }

    .stat{
        padding:25px 15px;
        border-radius:18px;
    }

    .stat h2{
        font-size:34px;
    }

    .stat span{
        font-size:12px;
    }

}


.process-section{
    padding:140px 8%;
    background:#111827cf;
    position:relative;
    overflow:hidden;
}

.process-section::before{
    content:'PROCESS';
    position:absolute;
    top:50px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    color:rgba(255,255,255,.03);
    pointer-events:none;
    white-space:nowrap;
}

.process-heading{
    text-align:center;
    margin-bottom:100px;
}

.process-heading span{
    display:inline-block;
    background:#cc2038;
    border:1px solid rgba(255,235,0,.25);
    color:white;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:2px;
}

.process-heading h2{
    font-size:55px;
    margin:25px 0 15px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    line-height:1;
    color:#fff;
}

.process-heading p{
    max-width:700px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
}



.timeline{
    position:relative;
    max-width:1300px;
    margin:auto;
}

.timeline-line{
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:rgba(255,255,255,.12);
    transform:translateX(-50%);
}

.timeline-item1{
    display:grid;
    grid-template-columns:1fr 80px 1fr;
    align-items:center;
    margin-bottom:100px;
    position:relative;
}

.timeline-image{
    text-align:center;
}

.timeline-image img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:50%;
    border:10px solid rgba(255,255,255,.08);

    box-shadow:
    0 25px 70px rgba(0,0,0,.4),
    0 0 50px rgba(255,235,0,.08);

    transition:.5s;
}

.timeline-image img:hover{
    transform:scale(1.08);
}

.timeline-dot{
    width:15px;
    height:15px;
    background:#cc2038;
    border-radius:50%;
    margin:auto;
    z-index:2;
    box-shadow:0 0 0 12px #cc203869;
}

.timeline-content1{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    padding:35px;
    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

    transition:.4s;
}

.timeline-content1:hover{
    transform:translateY(-10px);
    border-color:rgba(255,235,0,.25);
}


.step-number{
    display:inline-block;
    color:#cc2038;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.timeline-content1 h3{
    font-size:34px;
    margin-bottom:15px;
    font-family:'Oswald',sans-serif;
    color:#fff;
}

.timeline-content1 p{
    color:#cbd5e1;
    line-height:1.8;
}
.process-section::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(255,235,0,.05);

    top:-250px;
    right:-250px;

    filter:blur(120px);
}

.left .timeline-content1{
    text-align:left;
}

.right .timeline-content1{
    text-align:left;
}

@media(max-width:991px){

.timeline-line{
    display:none;
}

.timeline-item1{
    grid-template-columns:1fr;
    gap:30px;
}

.timeline-dot{
    display:none;
}

.timeline-image img{
    width:220px;
    height:220px;
}

.process-heading h2{
    font-size:50px;
}

}
/*==================================
 Responsive - Process Section
===================================*/

/* Laptop */
@media (max-width:1200px){

    .process-section{
        padding:100px 6%;
    }

    .process-section::before{
        font-size:130px;
        top:30px;
    }

    .process-heading{
        margin-bottom:70px;
    }

    .process-heading h2{
        font-size:46px;
    }

    .timeline-image img{
        width:240px;
        height:240px;
    }

    .timeline-content1{
        padding:30px;
    }

    .timeline-content1 h3{
        font-size:28px;
    }

}

/* Tablet */
@media (max-width:991px){

    .process-section{
        padding:80px 20px;
    }

    .process-section::before{
        font-size:80px;
        top:20px;
    }

    .process-section::after{
        width:350px;
        height:350px;
        top:-100px;
        right:-120px;
    }

    .process-heading{
        margin-bottom:50px;
    }

    .process-heading span{
        padding:10px 22px;
        font-size:13px;
        letter-spacing:1px;
    }

    .process-heading h2{
        font-size:36px;
        line-height:1.2;
    }

    .process-heading p{
        font-size:15px;
        line-height:1.7;
    }

    .timeline-line{
        display:none;
    }

    .timeline-item1{
        grid-template-columns:1fr;
        gap:25px;
        margin-bottom:60px;
    }

    .timeline-dot{
        display:none;
    }

    .timeline-image{
        order:1;
    }

    .timeline-content1{
        order:2;
        padding:28px 22px;
        border-radius:22px;
    }

    .timeline-image img{
        width:220px;
        height:220px;
    }

    .timeline-content1 h3{
        font-size:26px;
    }

    .timeline-content1 p{
        font-size:15px;
        line-height:1.7;
    }

}

/* Mobile */
@media (max-width:480px){

    .process-section{
        padding:70px 15px;
    }

    .process-section::before{
        display:none;
    }

    .process-heading{
        margin-bottom:40px;
    }

    .process-heading span{
        padding:8px 18px;
        font-size:12px;
    }

    .process-heading h2{
        font-size:28px;
        margin:18px 0 10px;
    }

    .process-heading p{
        font-size:14px;
        line-height:1.6;
    }

    .timeline-item1{
        margin-bottom:45px;
        gap:20px;
    }

    .timeline-image img{
        width:180px;
        height:180px;
        border-width:6px;
    }

    .timeline-content1{
        padding:22px 18px;
        border-radius:18px;
    }

    .step-number{
        font-size:16px;
    }

    .timeline-content1 h3{
        font-size:22px;
        margin-bottom:10px;
    }

    .timeline-content1 p{
        font-size:14px;
        line-height:1.6;
    }

}





.testimonial-section{
    padding:140px 8%;
    background:linear-gradient(to bottom,#fff,#f8f8f8);
    position:relative;
    overflow:hidden;
}

.testimonial-section::before{
    content:'REVIEWS';
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:220px;
    font-weight:800;
    color:rgba(0,0,0,.03);
    white-space:nowrap;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:80px;
    position:relative;
    z-index:2;
}

.testimonial-card{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    border-radius:35px;
    padding:45px;
    text-align:center;
    transition:.5s;
    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,235,0,.2);

    box-shadow:
    0 20px 60px rgba(0,0,0,.06);
}

.testimonial-card::before{
    content:'❝';
    position:absolute;
    top:-20px;
    right:20px;
    font-size:120px;
    color:#cc203824;
    font-family:serif;
}

.testimonial-card:hover{
    transform:translateY(-15px);
    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

.testimonial-card img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #cc2038;
    margin-bottom:20px;
}

.testimonial-card h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
}

.stars{
    color:#cc2038;
    font-size:20px;
    margin-bottom:20px;
}


.premium-cta{
    padding:120px 8%;
    background:#111827cf;
    border-radius:50px;
    margin:100px 5%;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    position:relative;
    overflow:hidden;
}

.premium-cta::before{
    content:'PATEL';
    position:absolute;
    right:-50px;
    top:-40px;
    font-size:220px;
    font-weight:800;
    color:rgba(255,255,255,.03);
}

.cta-left span{
    display:inline-block;
    padding:12px 25px;
    background:#cc2038;
    color:white;
    border-radius:50px;
    font-weight:700;
}

.cta-left h2{
    font-size:55px;
    line-height:.95;
    color:#fff;
    margin:25px 0;
    font-family:'Oswald',sans-serif;
}

.cta-left p{
    color:#cfcfcf;
    line-height:1.8;
    max-width:500px;
}

.cta-btn{
    display:inline-block;
    margin-top:30px;
    background:#cc2038;
    color:white;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.cta-right{
    position:relative;
    text-align:center;
}

.cta-right img{
    width:420px;
    max-width:100%;
    animation:spinTyre 18s linear infinite;
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:20px 25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.card-1{
    top:50px;
    left:0;
}

.card-2{
    bottom:50px;
    right:0;
}

.floating-card h3{
    margin:0;
    font-size:36px;
    font-family:'Oswald';
}

@keyframes spinTyre{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/*==================================
 Responsive - Testimonials & CTA
===================================*/

/* Laptop */
@media (max-width:1200px){

    .testimonial-section{
        padding:100px 6%;
    }

    .testimonial-section::before{
        font-size:140px;
    }

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .premium-cta{
        padding:90px 6%;
        margin:80px 4%;
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .premium-cta::before{
        font-size:150px;
        right:-20px;
    }

    .cta-left{
        margin:auto;
    }

    .cta-left p{
        margin:auto;
    }

    .cta-right img{
        width:340px;
    }

}

/* Tablet */
@media (max-width:768px){

    .testimonial-section{
        padding:80px 20px;
    }

    .testimonial-section::before{
        font-size:80px;
        top:20px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:50px;
    }

    .testimonial-card{
        padding:30px 25px;
        border-radius:22px;
    }

    .testimonial-card img{
        width:90px;
        height:90px;
    }

    .testimonial-card h3{
        font-size:22px;
    }

    .testimonial-card p{
        font-size:15px;
        line-height:1.7;
    }

    .stars{
        font-size:18px;
    }

    .premium-cta{
        padding:70px 20px;
        margin:60px 20px;
        border-radius:30px;
    }

    .premium-cta::before{
        font-size:90px;
        top:10px;
        right:0;
    }

    .cta-left span{
        padding:10px 20px;
        font-size:13px;
    }

    .cta-left h2{
        font-size:36px;
        line-height:1.2;
        margin:18px 0;
    }

    .cta-left p{
        font-size:15px;
    }

    .cta-btn{
        padding:15px 32px;
        font-size:15px;
    }

    .cta-right img{
        width:260px;
    }

    .floating-card{
        position:static;
        display:inline-block;
        margin:12px;
        padding:15px 20px;
    }

    .floating-card h3{
        font-size:28px;
    }

}

/* Mobile */
@media (max-width:480px){

    .testimonial-section{
        padding:70px 15px;
    }

    .testimonial-section::before{
        display:none;
    }

    .testimonial-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .testimonial-card img{
        width:75px;
        height:75px;
        border-width:4px;
    }

    .testimonial-card h3{
        font-size:20px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.6;
    }

    .stars{
        font-size:16px;
        margin-bottom:15px;
    }

    .premium-cta{
        padding:60px 15px;
        margin:50px 15px;
        border-radius:22px;
    }

    .premium-cta::before{
        display:none;
    }

    .cta-left h2{
        font-size:28px;
    }

    .cta-left p{
        font-size:14px;
        line-height:1.6;
    }

    .cta-btn{
        width:100%;
        text-align:center;
        padding:15px;
    }

    .cta-right img{
        width:200px;
    }

    .floating-card{
        width:100%;
        margin:10px 0;
        padding:15px;
        border-radius:16px;
    }

    .floating-card h3{
        font-size:24px;
    }

}


/*=========================================
        PREMIUM LUXURY FOOTER
=========================================*/

.premium-footer{
    position:relative;
    overflow:hidden;
    color:#fff;
    background:
    radial-gradient(circle at top left,#c32033 0%,transparent 28%),
    radial-gradient(circle at bottom right,#161d2e 0%,transparent 30%),
    linear-gradient(135deg,#06080d,#0d1420,#111827);
}

/* Background Glow */

.premium-footer::before{
    content:"PATEL TYRES";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:190px;
    font-weight:900;
    font-family:'Oswald',sans-serif;
    color:rgba(255,255,255,.025);
    white-space:nowrap;
    letter-spacing:10px;
    z-index:0;
    user-select:none;
}

.premium-footer::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#cc2038;
    filter:blur(170px);
    opacity:.08;
    right:-250px;
    bottom:-300px;
}


/*========================*/

.footer-top{

    position:relative;
    z-index:5;

    display:grid;

    grid-template-columns:2.2fr 1fr 1fr 1.3fr;

    gap:60px;

    padding:110px 7% 70px;

}


/*========================*/

.footer-brand h2{

    font-size:58px;

    font-family:'Oswald',sans-serif;

    margin-bottom:20px;

    line-height:1;

    letter-spacing:1px;

}

.footer-brand span{

    color:#cc2038;

}

.footer-brand p{

    color:#c5cbd8;

    line-height:1.9;

    font-size:15px;

    max-width:430px;

}


/*========================*/

.footer-links h3,
.footer-contact h3{

    font-size:22px;

    margin-bottom:30px;

    position:relative;

    padding-bottom:15px;

}

.footer-links h3::after,
.footer-contact h3::after{

    content:'';

    width:45px;

    height:3px;

    background:#cc2038;

    position:absolute;

    left:0;

    bottom:0;

    border-radius:20px;

}


/*========================*/

.footer-links a{

    display:flex;

    align-items:center;

    gap:12px;

    color:#c8ced9;

    text-decoration:none;

    margin-bottom:15px;

    transition:.35s;

}

.footer-links a i{

    color:#cc2038;

    font-size:13px;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(10px);

}


/*========================*/

.footer-contact p{

    display:flex;

    gap:12px;

    color:#c8ced9;

    line-height:1.9;

    margin-bottom:16px;

}

.footer-contact i{

    color:#cc2038;

    margin-top:6px;

}


/*========================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s;

}

.footer-social a:hover{

    background:#cc2038;

    border-color:#cc2038;

    transform:translateY(-8px) rotate(360deg);

    box-shadow:0 15px 35px rgba(204,32,56,.4);

}


/*========================*/

.footer-divider{

    height:1px;

    background:linear-gradient(to right,
    transparent,
    rgba(255,255,255,.15),
    transparent);

    margin:0 7%;

}


/*========================*/

.footer-bottom{

    position:relative;

    z-index:5;

    padding:28px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#bfc6d4;

    font-size:15px;

}

.footer-policy{

    display:flex;

    gap:28px;

}

.footer-policy a{

    color:#bfc6d4;

    text-decoration:none;

    transition:.3s;

}

.footer-policy a:hover{

    color:#cc2038;

}


/*========================*/

.footer-wave{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    opacity:.12;

}

.footer-wave svg{

    display:block;

    width:100%;

}


/*====================================
      HOVER BOX EFFECT
====================================*/

.footer-brand,
.footer-links,
.footer-contact{

    padding:25px;

    border-radius:18px;

    transition:.4s;

}

.footer-brand:hover,
.footer-links:hover,
.footer-contact:hover{

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(18px);

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}


/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1200px){

.footer-top{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.footer-brand{

grid-column:1/-1;

}

}


@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

padding:80px 30px 50px;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

.footer-policy{

justify-content:center;

flex-wrap:wrap;

}

.premium-footer::before{

font-size:85px;

}

.footer-brand h2{

font-size:42px;

}

}


@media(max-width:480px){

.footer-top{

padding:60px 18px;

}

.footer-brand h2{

font-size:34px;

}

.footer-social{

justify-content:center;

}

.footer-social a{

width:45px;

height:45px;

}

.footer-policy{

flex-direction:column;

gap:10px;

}

.footer-divider{

margin:0 18px;

}

.premium-footer::before{

display:none;

}

}


/*=========================
   PREMIUM ABOUT SECTION
=========================*/

.about-company{
    padding:120px 8%;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.about-company::before{
    content:"ABOUT";
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    color:rgba(0,0,0,.03);
    font-family:'Oswald',sans-serif;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

.about-images{
    position:relative;
}

.main-image{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.main-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    transition:.7s;
}

.main-image:hover img{
    transform:scale(1.08);
}

.experience-box{
    position:absolute;
    bottom:40px;
    right:-30px;
    background:#cc2038;
    padding:30px;
    border-radius:25px;
    min-width:220px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    animation:float 3s ease-in-out infinite;
}

.experience-box h2{
    font-size:55px;
    margin:0;
    color:#fff;
    font-family:'Oswald',sans-serif;
}

.experience-box p{
    margin-top:5px;
    font-weight:600;
    color: white;
}

.about-content .sub-title{
    color:white;
    font-weight:700;
    letter-spacing:3px;
}

.about-content h2{
    font-size:55px;
    line-height:1.2;
    margin:20px 0;
    font-family:'Oswald',sans-serif;
    color:#111;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:40px 0;
}

.feature-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
    padding:20px;
    background:#fafafa;
    border-radius:20px;
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-box i{
    width:55px;
    height:55px;
    background:#cc2038;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
}

.feature-box h4{
    margin:0 0 5px;
    font-size:18px;
}

.feature-box p{
    margin:0;
    font-size:14px;
}

.about-btn{
    display:inline-block;
    padding:16px 35px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#cc2038;
    transform:translateY(-5px);
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:991px){

.about-container{
    grid-template-columns:1fr;
    gap:40px;
}

.about-company{
    padding:80px 5%;
}

.about-company::before{
    font-size:90px;
}

.main-image img{
    height:350px;
}

.about-content h2{
    font-size:35px;
}

.about-features{
    grid-template-columns:1fr;
}

.experience-box{
    right:10px;
    bottom:10px;
    min-width:170px;
    padding:20px;
}

.experience-box h2{
    font-size:35px;
}


}

.counter-section{
    padding:100px 8%;
    background:#111;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.counter-box h2{
    font-size:60px;
    color:#cc2038;
}

/*==================================
 Responsive - About Company
===================================*/

/* Laptop */
@media (max-width:1200px){

    .about-company{
        padding:100px 6%;
    }

    .about-company::before{
        font-size:130px;
    }

    .about-container{
        gap:50px;
    }

    .main-image img{
        height:520px;
    }

    .about-content h2{
        font-size:46px;
    }

}

/* Tablet */
@media (max-width:991px){

    .about-company{
        padding:80px 20px;
    }

    .about-company::before{
        font-size:80px;
        top:20px;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .main-image img{
        height:420px;
    }

    .experience-box{
        right:15px;
        bottom:15px;
        min-width:180px;
        padding:22px;
    }

    .experience-box h2{
        font-size:40px;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:18px;
    }

    .feature-box{
        text-align:left;
    }

}

/* Mobile */
@media (max-width:480px){

    .about-company{
        padding:70px 15px;
    }

    .about-company::before{
        display:none;
    }

    .main-image{
        border-radius:20px;
    }

    .main-image img{
        height:300px;
    }

    .experience-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin:20px auto 0;
        min-width:170px;
    }

    .experience-box h2{
        font-size:34px;
    }

    .about-content h2{
        font-size:28px;
        margin:15px 0;
    }

    .about-content p{
        font-size:14px;
        line-height:1.7;
    }

    .feature-box{
        padding:18px;
        border-radius:16px;
    }

    .feature-box i{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .feature-box h4{
        font-size:16px;
    }

    .feature-box p{
        font-size:13px;
    }

    .about-btn{
        width:100%;
        text-align:center;
        padding:15px;
    }

}


/*==================================
 Responsive - Counter Section
===================================*/

@media (max-width:991px){

    .counter-section{
        padding:70px 20px;
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .counter-box h2{
        font-size:46px;
    }

}

@media (max-width:480px){

    .counter-section{
        padding:60px 15px;
        grid-template-columns:1fr;
        gap:25px;
    }

    .counter-box h2{
        font-size:38px;
    }

    .counter-box p{
        font-size:14px;
    }

}


.journey-section{

    padding:120px 8%;
    background:#fafafa;
    position:relative;

}

.section-heading{

    text-align:center;
    margin-bottom:80px;

}

.section-heading span{

    color:#cc2038;
    font-weight:700;
    letter-spacing:3px;

}

.section-heading h2{

    font-size:52px;
    margin:20px 0;
    font-family:Oswald,sans-serif;

}

.section-heading p{

    width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.journey-wrapper{

    position:relative;
    max-width:1200px;
    margin:auto;

}

.journey-line{

    position:absolute;
    left:50%;
    top:360px;
    width:4px;
    background:#cc2038;
    height:80%;
    transform:translateX(-50%);

}

.journey-item{

    width:50%;
    position:relative;
    margin-bottom:70px;

}

.journey-item.left{

    padding-right:70px;

}

.journey-item.right{

    margin-left:50%;
    padding-left:70px;

}

.journey-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.4s;

}

.journey-card:hover{

    transform:translateY(-10px);

}

.journey-card h3{

    font-size:28px;
    margin-bottom:15px;
    font-family:Oswald,sans-serif;

}

.journey-card p{

    color:#666;
    line-height:1.8;

}

.journey-year{

    position:absolute;
    top:30px;
    width:85px;
    height:85px;
    background:white;
    color:black;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    z-index:10;
    border:6px solid #cc2038;

}

.left .journey-year{

    right:-42px;

}

.right .journey-year{

    left:-42px;

}

@media(max-width:991px){

.journey-line{

display:none;

}

.journey-item,
.journey-item.right{

width:100%;
margin-left:0;
padding:0;

}

.journey-year{

position:relative;
left:0!important;
right:0!important;
margin-bottom:20px;

}

.section-heading h2{

font-size:36px;

}

.section-heading p{

width:100%;

}

}
/*=========================
    PROCESS SECTION
=========================*/

.process-section1{
    padding:120px 8%;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.process-section1::before{
    content:"PROCESS";
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    color:rgba(0,0,0,.03);
    font-family:'Oswald',sans-serif;
    pointer-events:none;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
    position:relative;
    z-index:2;
}

.process-box{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
    overflow:hidden;
}

.process-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#cc2038;
}

.process-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.process-box span{
    display:inline-flex;
    width:80px;
    height:80px;
    border-radius:50%;
    background:#cc2038;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.process-box h3{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
    font-family:'Oswald',sans-serif;
}

.process-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

.process-section{
    padding:80px 5%;
}

.process-section::before{
    font-size:90px;
}

.process-grid{
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.journey-item.left {
    padding-right: 0px;
}
}

@media(max-width:576px){

.process-grid{
    grid-template-columns:1fr;
}

.process-box{
    padding:30px 20px;
}

.process-box span{
    width:65px;
    height:65px;
    font-size:22px;
}

.process-box h3{
    font-size:24px;
}

}



/*==========================
Technology
==========================*/
/*==========================
Technology Section
==========================*/

.technology-section{
    padding:120px 0;
    background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

/* Background Effects */

.tech-overlay{
    position:absolute;
    width:450px;
    height:450px;
    background:#cc2038;
    opacity:.05;
    filter:blur(140px);
    right:-180px;
    top:-120px;
}

.technology-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#0d6efd;
    opacity:.03;
    filter:blur(120px);
    left:-150px;
    bottom:-100px;
}

.technology-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* IMAGE */

.technology-image{
    position:relative;
}

.technology-image img{

    width:100%;
    height:650px;
    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 25px 70px rgba(0,0,0,.12);

}

/* BADGE */

.tech-badge{

    position:absolute;

    left:35px;

    bottom:35px;

    background:#fff;

    border-radius:20px;

    padding:25px 30px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    border-left:5px solid #cc2038;

}

.tech-badge h2{

    margin:0;

    color:#cc2038;

    font-size:52px;

    font-family:Oswald;

}

.tech-badge span{

    color:#555;

    font-weight:600;

}

/* CONTENT */

.section-subtitle{

    display:inline-block;

    background:rgba(204,32,56,.08);

    color:#cc2038;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.technology-content h2{

    color:#111;

    font-size:56px;

    line-height:1.2;

    margin:28px 0;

    font-family:Oswald;

}

.technology-content p{

    color:#666;

    font-size:16px;

    line-height:2;

    margin-bottom:20px;

}

/* FEATURES */

.technology-list{

    display:grid;

    gap:20px;

    margin-top:40px;

}

.tech-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    padding:24px;

    border-radius:18px;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.tech-item:hover{

    transform:translateY(-8px);

    border-color:#cc2038;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.tech-item i{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#cc2038;

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

.tech-item h4{

    color:#111;

    margin-bottom:6px;

    font-size:20px;

    font-weight:700;

}

.tech-item p{

    margin:0;

    color:#666;

    line-height:1.8;

}


/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.technology-content h2{

font-size:46px;

}

.technology-image img{

height:550px;

}

}

@media(max-width:991px){

.technology-container{

grid-template-columns:1fr;

}

.technology-content{

text-align:center;

}

.tech-item{

text-align:left;

}

.technology-image img{

height:450px;

}

}

@media(max-width:768px){

.technology-section{

padding:80px 20px;

}

.technology-content h2{

font-size:36px;

}

.tech-badge{

left:15px;

bottom:15px;

padding:20px;

}

.tech-badge h2{

font-size:40px;

}

}

@media(max-width:480px){

.technology-image img{

height:300px;

}

.technology-content h2{

font-size:30px;

}

.tech-item{

padding:18px;

gap:15px;

}

.tech-item h4{

font-size:16px;

}

.tech-item p{

font-size:13px;

}

.tech-badge{

position:relative;

left:auto;

bottom:auto;

margin:20px auto 0;

width:180px;

}

}

/*========================

NETWORK

=========================*/

.network-section{

padding:120px 8%;

background:#f8f8f8;

position:relative;

overflow:hidden;

}

.network-bg-text{

position:absolute;

font-size:170px;

font-weight:800;

font-family:Oswald;

left:50%;

top:20px;

transform:translateX(-50%);

color:rgba(0,0,0,.03);

white-space:nowrap;

}

.network-heading{

text-align:center;

margin-bottom:70px;

position:relative;

z-index:2;

}

.network-heading span{

color:#cc2038;

font-weight:700;

letter-spacing:3px;

}

.network-heading h2{

font-size:55px;

margin:20px 0;

font-family:Oswald;

}

.network-heading p{

width:720px;

margin:auto;

line-height:1.9;

color:#666;

}

.network-wrapper{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

position:relative;

z-index:2;

}

.location-card1{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.45s;

}

.location-card1:hover{

transform:translateY(-15px);

}

.location-image{

position:relative;

overflow:hidden;

}

.location-image img{

width:100%;

height:280px;

object-fit:cover;

transition:.6s;

}

.location-card1:hover img{

transform:scale(1.1);

}

.location-tag{

position:absolute;

left:20px;

top:20px;

background:#cc2038;

padding:10px 18px;

border-radius:40px;

font-size:13px;

font-weight:700;

}

.location-content{

padding:35px;

}

.location-content h3{

font-size:28px;

margin-bottom:15px;

font-family:Oswald;

}

.location-content p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.location-buttons{

display:flex;

gap:15px;

}

.map-btn{

/* flex: 1; */  
    padding: 4px 20px;
    text-align: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.map-btn:hover{

background:#cc2038;

color:#111;

}

.call-btn1{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

background:#cc2038;

border-radius:50%;

color:#111;

text-decoration:none;

transition:.4s;

}

.call-btn1:hover{

background:#111;

color:#fff;

}


@media(max-width:1200px){

.network-wrapper{

grid-template-columns:repeat(2,1fr);

}

.network-heading h2{

font-size:45px;

}

}

@media(max-width:991px){

.network-section{

padding:90px 25px;

}

.network-wrapper{

grid-template-columns:1fr;

}

.network-heading p{

width:100%;

}

.network-bg-text{

font-size:90px;

}

}

@media(max-width:768px){

.network-heading h2{

font-size:35px;

}

.location-content{

padding:25px;

}

.location-image img{

height:240px;

}

}

@media(max-width:480px){

.network-section{

padding:70px 15px;

}

.network-bg-text{

display:none;

}

.network-heading h2{

font-size:28px;

}

.location-image img{

height:210px;

}

.location-content h3{

font-size:22px;

}

.location-buttons{

flex-direction:column;

}

.call-btn1{

width:100%;

height:50px;

border-radius:50px;

}

.map-btn{

padding:13px;

}

}

/*==============================

PREMIUM COUNTER

===============================*/

.premium-counter{

padding:110px 8%;

background:#111;

position:relative;

overflow:hidden;

}

.counter-overlay{

position:absolute;

width:500px;

height:500px;

background:#cc2038;

filter:blur(180px);

opacity:.08;

left:-150px;

top:-150px;

}

.counter-wrapper{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

.counter-box1{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

padding:45px 30px;

border-radius:25px;

text-align:center;

transition:.4s;

border:1px solid rgba(255,255,255,.08);

}

.counter-box1:hover{

transform:translateY(-10px);

background:#cc2038;

}

.counter-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

background:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#cc2038;

}



.counter-box1 h2{

font-size:58px;

font-family:Oswald;

color:white;

margin-bottom:10px;

}


.counter-box1 p{

color:#ddd;

font-size:18px;

}


/*==============================

CTA

===============================*/

.cta-section{

padding:120px 8%;

background:#f8f8f8;

position:relative;

overflow:hidden;

text-align:center;

}

.cta-bg{

position:absolute;

width:700px;

height:700px;

background:#cc2038;

filter:blur(250px);

opacity:.08;

right:-250px;

bottom:-250px;

}

.cta-content{

max-width:900px;

margin:auto;

position:relative;

z-index:2;

}

.cta-content span{

display:inline-block;

padding:10px 24px;

background:#cc2038;

border-radius:50px;

font-size:13px;

font-weight:700;

letter-spacing:2px;
color: white;

}

.cta-content h2{

font-size:60px;

font-family:Oswald;

margin:30px 0;

line-height:1.2;

}

.cta-content p{

font-size:18px;

line-height:2;

color:#666;

margin-bottom:45px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

}

.btn-primary{

background:#111;

color:#fff;

padding:18px 45px;

border-radius:50px;

text-decoration:none;

transition:.4s;

font-weight:600;

}

.btn-primary:hover{

background:#cc2038;

color:#fff;

}

.btn-secondary{

background:#cc2038;

color:#fff;

padding:18px 45px;

border-radius:50px;

text-decoration:none;

transition:.4s;

font-weight:600;

}

.btn-secondary:hover{

background:#111;

color:#fff;

}


@media(max-width:1200px){

.counter-wrapper{

grid-template-columns:repeat(2,1fr);

}

.cta-content h2{

font-size:48px;

}

}

@media(max-width:991px){

.premium-counter{

padding:90px 25px;

}

.cta-section{

padding:90px 25px;

}

}

@media(max-width:768px){

.counter-wrapper{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

.cta-content h2{

font-size:36px;

}

.cta-content p{

font-size:16px;

}

}

@media(max-width:480px){

.counter-box{

padding:35px 20px;

}

.counter-box h2{

font-size:42px;

}

.counter-icon{

width:65px;

height:65px;

font-size:24px;

}

.cta-content h2{

font-size:28px;

}

.cta-content p{

font-size:14px;

line-height:1.8;

}

}


.leadership-section{

padding:120px 8%;

background:#fafafa;

}

.leadership-heading{

text-align:center;

margin-bottom:70px;

}

.leadership-heading span{

color:#f4c400;

font-weight:700;

letter-spacing:3px;

}

.leadership-heading h2{

font-size:55px;

font-family:Oswald;

margin:20px 0;

}

.leadership-heading p{

max-width:750px;

margin:auto;

line-height:1.9;

color:#666;

}

.founder-box{

display:grid;

grid-template-columns:45% 55%;

gap:60px;

align-items:center;

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.08);

margin-bottom:70px;

}

.founder-image img{

width:100%;

height:650px;

object-fit:cover;

display:block;

}

.founder-content{

padding:60px;

}

.founder-content span{

background:#cc2038;

padding:8px 20px;

border-radius:40px;

font-weight:600;

}

.founder-content h2{

font-size:48px;

margin:25px 0 10px;

font-family:Oswald;

}

.founder-content h4{

color:#777;

margin-bottom:25px;

}

.founder-content p{

line-height:2;

color:#666;

margin-bottom:20px;

}

.leader-tags{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-top:25px;

}

.leader-tags span{

background:#111;

color:#fff;

padding:12px 22px;

border-radius:30px;

font-size:14px;

}

.leaders-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.leader-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 40px rgba(0,0,0,.08);

transition:.4s;

}

.leader-card:hover{

transform:translateY(-10px);

}

.leader-card img{

width:100%;

height:420px;

object-fit:cover;

}

.leader-info{

padding:35px;

}

.leader-info span{

color:#cc2038;

font-weight:700;

}

.leader-info h3{

font-size:32px;

font-family:Oswald;

margin:15px 0;

}

.leader-info p{

line-height:1.9;

color:#666;

}
/*===============================
LEADERSHIP SECTION
================================*/

.leadership-section{
    padding:120px 8%;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.leadership-section::before{
    content:"LEADERSHIP";
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:170px;
    font-weight:800;
    color:rgba(0,0,0,.03);
    font-family:'Oswald',sans-serif;
    white-space:nowrap;
}

/* Heading */

.leadership-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 90px;
    position:relative;
    z-index:2;
}

.leadership-header span{
    display:inline-block;
    background:#cc2038;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
}

.leadership-header h2{
    font-size:58px;
    margin:25px 0;
    font-family:'Oswald',sans-serif;
    color:#111;
}

.leadership-header p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* Founder */

.leader-founder{

    display:grid;
    grid-template-columns:42% 58%;
    gap:60px;
    align-items:center;

    background:#fff;
    border-radius:30px;
    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    position:relative;

    z-index:2;

    margin-bottom:100px;

}

.leader-image{

    overflow:hidden;

}

.leader-image img{

    width:100%;
    height:700px;
    object-fit:cover;

    transition:.7s;

}

.leader-founder:hover img{

    transform:scale(1.06);

}

.leader-content{

    padding:60px;

}

.leader-label{

    display:inline-block;

    background:#111;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:2px;

}

.leader-content h2{

    font-size:52px;

    margin:25px 0 10px;

    font-family:'Oswald';

}

.leader-content h4{

    color:#cc2038;

    font-size:22px;

    margin-bottom:25px;

}

.leader-content p{

    color:#666;

    line-height:2;

    margin-bottom:18px;

}

.leader-content blockquote{

    margin-top:35px;

    padding-left:25px;

    border-left:5px solid #cc2038;

    font-size:22px;

    font-style:italic;

    color:#222;

    line-height:1.8;

}

/* Next Title */

.next-generation-title{

    text-align:center;

    margin-bottom:60px;

}

.next-generation-title span{

    color:#cc2038;

    font-weight:700;

    letter-spacing:3px;

}

.next-generation-title h2{

    font-size:48px;

    margin-top:15px;

    font-family:'Oswald';

}

/* Cards */

.leaders-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-bottom:80px;

}

.leader-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

}

.leader-card:hover{

    transform:translateY(-12px);

}

.leader-card img{

    width:100%;
    height:420px;
    object-fit:cover;

    transition:.6s;

}

.leader-card:hover img{

    transform:scale(1.08);

}

.leader-card-content{

    padding:35px;

}

.leader-card-content span{

    color:#cc2038;

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

}

.leader-card-content h3{

    font-size:34px;

    margin:15px 0;

    font-family:'Oswald';

}

.leader-card-content p{

    color:#666;

    line-height:1.9;

}


/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.leader-founder{

grid-template-columns:1fr;

}

.leader-image img{

height:500px;

}

}

@media(max-width:991px){

.leadership-section{

padding:90px 25px;

}

.leadership-section::before{

font-size:90px;

}

.leadership-header h2{

font-size:42px;

}

.leaders-grid{

grid-template-columns:1fr;

}

.leader-content{

padding:40px;

}


}

@media(max-width:768px){

.leader-image img{

height:380px;

}

.leader-content h2{

font-size:36px;

}

.next-generation-title h2{

font-size:34px;

}

.leader-card img{

height:320px;

}

}

@media(max-width:480px){

.leadership-section{

padding:70px 15px;

}

.leadership-section::before{

display:none;

}

.leadership-header h2{

font-size:30px;

}

.leader-content{

padding:25px;

}

.leader-content h2{

font-size:28px;

}

.leader-content h4{

font-size:18px;

}

.leader-content blockquote{

font-size:18px;

}

.leader-card img{

height:250px;

}

.leader-card-content{

padding:25px;

}

.leader-card-content h3{

font-size:24px;

}


}

/*===============================
NEXT GENERATION VISION
================================*/

.vision-box{
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 80px 70px;
    background: linear-gradient(135deg,#111,#1d1d1d,#111);
    border-radius: 35px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    z-index: 1;
}

/* Golden Glow */

.vision-box::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#cc2038;
    border-radius:50%;
    filter:blur(180px);
    opacity:.08;
    top:-150px;
    right:-120px;
}

.vision-box::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#cc2038;
    border-radius:50%;
    filter:blur(150px);
    opacity:.05;
    left:-100px;
    bottom:-120px;
}

/* Small Heading */

.vision-box span{
    display:inline-block;
    background:#cc2038;
    color:#111;
    padding:10px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

/* Main Heading */

.vision-box h2{
    font-size:52px;
    font-family:'Oswald',sans-serif;
    line-height:1.2;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.vision-box h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#cc2038;
    display:block;
    margin:20px auto 0;
    border-radius:20px;
}

/* Paragraph */

.vision-box p{
    max-width:900px;
    margin:0 auto 25px;
    color:#d8d8d8;
    font-size:16px;
    line-height:2;
    position:relative;
    z-index:2;
}

/* Highlight */

.vision-box strong{
    color:#cc2038;
    font-weight:700;
}

/* Hover */

.vision-box:hover{
    transform:translateY(-8px);
    transition:.5s;
}

/*===============================
Responsive
================================*/

@media(max-width:991px){

.vision-box{

padding:60px 35px;

border-radius:25px;

}

.vision-box h2{

font-size:38px;

}

.vision-box p{

font-size:15px;

line-height:1.9;

}

}

@media(max-width:576px){

.vision-box{

padding:45px 20px;

margin-top:50px;

}

.vision-box span{

font-size:11px;

padding:8px 18px;

}

.vision-box h2{

font-size:28px;

}

.vision-box p{

font-size:14px;

line-height:1.8;

}

}
.vision-icons{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin:40px 0;
    position:relative;
    z-index:2;
}

.vision-icons div{
    width:150px;
    padding:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,212,0,.15);
    border-radius:18px;
    backdrop-filter:blur(10px);
    transition:.4s;
}

.vision-icons div:hover{
    transform:translateY(-8px);
    background:rgba(255,212,0,.08);
}

.vision-icons i{
    font-size:28px;
    color:#cc2038;
    margin-bottom:12px;
}

.vision-icons span{
    display:block;
    background:none;
    color:#fff;
    padding:0;
    margin:0;
    letter-spacing:0;
    font-size:15px;
}



/*=========================
LEGACY
==========================*/

.legacy-section{

padding:120px 8%;

background:#f8f8f8;

}

.legacy-section .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.section-tag{

display:inline-block;

padding:10px 20px;

background:#cc2038;

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:2px;
color: white;
}

.legacy-left h2{

font-size:55px;

margin:25px 0;

font-family:Oswald,sans-serif;

line-height:1.2;

}

.legacy-left h2 span{

color:#cc2038;

}

.legacy-left p{

color:#666;

line-height:2;

margin-bottom:20px;

}

.legacy-right{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.legacy-card{

background:#fff;

padding:35px;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.4s;

}

.legacy-card:hover{

transform:translateY(-10px);

}

.legacy-card i{

width:70px;

height:70px;

background:#cc2038;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

margin-bottom:20px;
color: white;
}

.legacy-card h3{

font-size:24px;

margin-bottom:10px;

font-family:Oswald;

}

.legacy-card p{

color:#666;

line-height:1.8;

}


/*=========================
WHY
==========================*/

.why-section{

padding:120px 8%;

background:#111;

color:#fff;

}

.section-title{

text-align:center;

max-width:760px;

margin:auto;

margin-bottom:70px;

}

.section-title span{

color:white;

font-weight:700;

letter-spacing:3px;

}

.section-title h2{

font-size:52px;

margin:20px 0;

font-family:Oswald;

}

.section-title p{

color:#bbb;

line-height:1.8;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.why-box{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:25px;

transition:.4s;

backdrop-filter:blur(15px);

}

.why-box:hover{

background:#cc2038;

color:#111;

transform:translateY(-10px);

}

.why-box:hover p{

color:#222;

}

.why-box i{

font-size:38px;

margin-bottom:25px;

color:#cc2038;

}

.why-box:hover i{

color:#111;

}

.why-box h3{

font-size:24px;

margin-bottom:15px;

font-family:Oswald;

}

.why-box p{

color:#ccc;

line-height:1.8;

}


/*=========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.legacy-left h2{

font-size:45px;

}

.section-title h2{

font-size:44px;

}

}

@media(max-width:991px){

.legacy-section .container{

grid-template-columns:1fr;

}

.legacy-right{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.legacy-left{

text-align:center;

}

.section-title h2{

font-size:36px;

}

}

@media(max-width:768px){

.legacy-section{

padding:80px 20px;

}

.why-section{

padding:80px 20px;

}

.legacy-right{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.legacy-left h2{

font-size:34px;

}

.section-title h2{

font-size:32px;

}

}

@media(max-width:480px){

.legacy-card{

padding:25px;

}

.why-box{

padding:25px;

}

.legacy-left h2{

font-size:28px;

}

.section-title h2{

font-size:28px;

}

.legacy-left p,

.section-title p,

.legacy-card p,

.why-box p{

font-size:14px;

line-height:1.8;

}

}


/*============================

OUR JOURNEY

=============================*/

.journey-section{

padding:120px 8%;

background:#fafafa;

position:relative;

overflow:hidden;

}

.journey-heading{

text-align:center;

margin-bottom:90px;

}

.journey-heading span{

color:#cc2038;

font-weight:700;

letter-spacing:3px;

}

.journey-heading h2{

font-size:55px;

margin:20px 0;

font-family:Oswald;

}

.journey-heading p{

width:700px;

margin:auto;

line-height:1.8;

color:#666;

}

.timeline{

position:relative;

max-width:1200px;

margin:auto;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

width:4px;

height:100%;

background:#cc2038;

transform:translateX(-50%);

}

.timeline-item{

position:relative;

width:50%;

padding:20px 50px;

margin-bottom:70px;

}

.timeline-item.left{

left:0;

}

.timeline-item.right{

left:50%;

}

.timeline-content{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

position:relative;

transition:.4s;

}

.timeline-content:hover{

transform:translateY(-10px);

}

.timeline-year{

position:absolute;

top:30px;

width:80px;

height:80px;

background:#111;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

font-weight:700;

border:5px solid #cc2038;

}

.timeline-item.left .timeline-year{

right:-90px;

}

.timeline-item.right .timeline-year{

left:-90px;

}

.timeline-content h3{

margin-bottom:20px;

font-size:30px;

font-family:Oswald;

}

.timeline-content p{

line-height:1.9;

color:#666;

}

.timeline-item::after{

content:"";

position:absolute;

top:55px;

width:18px;

height:18px;

background:#cc2038;

border-radius:50%;

box-shadow:0 0 20px #cc2038;

z-index:5;

}

.timeline-item.left::after{

right:-9px;

}

.timeline-item.right::after{

left:-9px;

}

/*======================

Responsive

======================*/

@media(max-width:1200px){

.timeline-content{

padding:30px;

}

.journey-heading h2{

font-size:45px;

}

}

@media(max-width:991px){

.timeline::before{

left:25px;

}

.timeline-item{

width:100%;

left:0!important;

padding-left:80px;

padding-right:20px;

}

.timeline-item::after{

left:16px!important;

}

.timeline-year{

left:-40px!important;

right:auto!important;

}

.journey-heading p{

width:100%;

}

}

@media(max-width:768px){

.journey-section{

padding:80px 20px;

}

.journey-heading h2{

font-size:36px;

}

.timeline-content{

padding:25px;

}

.timeline-content h3{

font-size:24px;

}

.timeline-year{

width:65px;

height:65px;

font-size:18px;

}

}

@media(max-width:480px){

.journey-heading h2{

font-size:30px;

}

.journey-heading p{

font-size:14px;

}

.timeline-content{

padding:20px;

}

.timeline-content h3{

font-size:21px;

}

.timeline-content p{

font-size:14px;

}

.timeline-item{

padding-left:65px;

}

.timeline-year{

width:55px;

height:55px;

font-size:15px;

}

}


/*=========================
    LEGACY SECTION
=========================*/

.legacy-section{
    padding:120px 8%;
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
}

/* Topography Pattern */

.legacy-section::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.03) 2px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,.03) 2px, transparent 2px);
    background-size:80px 80px;
    pointer-events:none;
}

.legacy-image img{
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

.fade-up{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

.legacy-item::before{
    animation:pulseDot 2s infinite;
}

@keyframes pulseDot{

    0%{
        box-shadow:0 0 0 0 rgba(255,184,0,.6);
    }

    100%{
        box-shadow:0 0 0 18px rgba(255,184,0,0);
    }

}

.legacy-section::before{
    content:"LEGACY";
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-weight:800;
    color:rgba(0,0,0,.03);
    font-family:'Oswald',sans-serif;
}

.legacy-heading{
    text-align:center;
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.legacy-heading span{
    color:#cc2038;
    font-weight:700;
    letter-spacing:4px;
}

.legacy-heading h2{
    font-size:60px;
    margin:15px 0;
    font-family:'Oswald',sans-serif;
}

.legacy-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.legacy-timeline{
    position:relative;
    z-index:2;
}

.legacy-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#cc2038;
    transform:translateX(-50%);
}

.legacy-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:80px;
    position:relative;
}

.legacy-item::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    background:#cc2038;
    border:6px solid #fff;
    box-shadow:0 0 0 5px rgba(255,184,0,.2);
}

.legacy-image{
    text-align:center;
}

.legacy-image img{
    width:320px;
    height:320px;
    border-radius:50%;
    object-fit:cover;
    border:10px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.5s;
}

.legacy-image img:hover{
    transform:scale(1.05);
}

.legacy-content{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.legacy-content h3{
    font-size:34px;
    margin-bottom:20px;
    font-family:'Oswald',sans-serif;
}

.legacy-content p{
    color:#666;
    line-height:1.9;
}

.reverse .legacy-image{
    order:2;
}

.reverse .legacy-content{
    order:1;
}

@media(max-width:991px){

.legacy-timeline::before{
    display:none;
}

.legacy-item{
    grid-template-columns:1fr;
    gap:30px;
}

.legacy-item::before{
    display:none;
}

.reverse .legacy-image,
.reverse .legacy-content{
    order:unset;
}

.legacy-heading h2{
    font-size:40px;
}

.legacy-image img{
    width:250px;
    height:250px;
}

.legacy-content{
    padding:25px;
}

}


/*==================================
 Responsive - Legacy Section
===================================*/

/* Laptop */
@media (max-width:1200px){

    .legacy-section{
        padding:100px 6%;
    }

    .legacy-section::before{
        font-size:130px;
        top:25px;
    }

    .legacy-heading{
        margin-bottom:60px;
    }

    .legacy-heading h2{
        font-size:48px;
    }

    .legacy-item{
        gap:50px;
    }

    .legacy-image img{
        width:280px;
        height:280px;
    }

    .legacy-content{
        padding:35px;
    }

    .legacy-content h3{
        font-size:30px;
    }

}

/* Tablet */
@media (max-width:991px){

    .legacy-section{
        padding:80px 20px;
    }

    .legacy-section::before{
        font-size:80px;
        top:20px;
    }

    .legacy-heading{
        margin-bottom:45px;
    }

    .legacy-heading span{
        font-size:14px;
        letter-spacing:2px;
    }

    .legacy-heading h2{
        font-size:36px;
        line-height:1.2;
    }

    .legacy-heading p{
        font-size:15px;
        line-height:1.7;
    }

    .legacy-timeline::before{
        display:none;
    }

    .legacy-item{
        grid-template-columns:1fr;
        gap:25px;
        margin-bottom:60px;
    }

    .legacy-item::before{
        display:none;
    }

    .reverse .legacy-image,
    .reverse .legacy-content{
        order:unset;
    }

    .legacy-image img{
        width:240px;
        height:240px;
    }

    .legacy-content{
        padding:28px 22px;
        border-radius:22px;
        text-align:center;
    }

    .legacy-content h3{
        font-size:26px;
    }

    .legacy-content p{
        font-size:15px;
        line-height:1.7;
    }

}

/* Mobile */
@media (max-width:480px){

    .legacy-section{
        padding:70px 15px;
    }

    .legacy-section::before{
        display:none;
    }

    .legacy-heading{
        margin-bottom:35px;
    }

    .legacy-heading span{
        font-size:13px;
        letter-spacing:1px;
    }

    .legacy-heading h2{
        font-size:28px;
    }

    .legacy-heading p{
        font-size:14px;
        line-height:1.6;
    }

    .legacy-item{
        gap:20px;
        margin-bottom:45px;
    }

    .legacy-image img{
        width:180px;
        height:180px;
        border-width:6px;
    }

    .legacy-content{
        padding:22px 18px;
        border-radius:18px;
    }

    .legacy-content h3{
        font-size:22px;
        margin-bottom:12px;
    }

    .legacy-content p{
        font-size:14px;
        line-height:1.6;
    }

}




/*=========================
    WHY CHOOSE US PREMIUM
=========================*/

.why-premium{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.why-premium::before{
    content:"WHY US";
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(0,0,0,.03);
    pointer-events:none;
}

.why-left{
    position:relative;
    z-index:2;
}

.why-tag{
    color:#cc2038;
    font-weight:700;
    letter-spacing:4px;
}

.why-left h2{
    font-size:65px;
    line-height:1.1;
    margin:20px 0;
    font-family:'Oswald',sans-serif;
    color:#111;
}

.why-left p{
    color:#666;
    line-height:2;
    margin-bottom:40px;
}

.why-stats{
    display:flex;
    gap:30px;
}

.stat-item h3{
    font-size:50px;
    color:#cc2038;
    margin:0;
    font-family:'Oswald',sans-serif;
}

.stat-item span{
    color:#666;
    font-size:14px;
}

/* RIGHT SIDE */

.why-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    position:relative;
    z-index:2;
}

.why-card{
    background:#fafafa;
    padding:35px;
    border-radius:30px;
    transition:.5s;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#cc2038;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.why-card.active{
    background:#111;
}

.why-card.active span,
.why-card.active h4,
.why-card.active p{
    color:#fff;
}

.why-card span{
    font-size:70px;
    font-family:'Oswald',sans-serif;
    color:#cc2038;
    display:block;
    line-height:1;
    margin-bottom:15px;
}

.why-card h4{
    font-size:26px;
    margin-bottom:15px;
    font-family:'Oswald',sans-serif;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.why-premium{
    grid-template-columns:1fr;
    gap:40px;
    padding:80px 5%;
}

.why-premium::before{
    font-size:90px;
}

.why-left h2{
    font-size:40px;
}

.why-right{
    grid-template-columns:1fr;
}

.why-stats{
    flex-wrap:wrap;
    gap:20px;
}

}
.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}


.core-values{
    padding:120px 8%;
    background:#fff;
    position:relative;
}

.core-values::before{
    content:"VALUES";
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(0,0,0,.03);
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.value-card{
    background:#fff;
    border:1px solid #eee;
    padding:40px;
    border-radius:30px;
    transition:.5s;
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:#cc2038;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.value-card span{
    font-size:70px;
    color:#f2f2f2;
    font-family:'Oswald',sans-serif;
    display:block;
}

.value-card h3{
    font-size:30px;
    margin:10px 0;
    font-family:'Oswald',sans-serif;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){
.values-grid{
grid-template-columns:1fr;
}
}


/*=========================
   INDUSTRIES PREMIUM
=========================*/

.industries-premium{
    padding:120px 8%;
    background:#fff;
    position:relative;
}

.industries-premium::before{
    content:"INDUSTRIES";
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(0,0,0,.03);
}

.industry-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
    position:relative;
    z-index:2;
}

.industry-card{
    position:relative;
    height:520px;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;
}

.industry-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.industry-card:hover img{
    transform:scale(1.15);
}

.industry-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.2)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
}

.industry-overlay h3{
    color:#fff;
    font-size:32px;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
    transition:.4s;
}

.industry-card:hover h3{
    color:#cc2038;
}

.industry-overlay p{
    color:#ddd;
    line-height:1.8;
    transform:translateY(40px);
    opacity:0;
    transition:.5s;
}

.industry-card:hover p{
    transform:translateY(0);
    opacity:1;
}

@media(max-width:991px){

.industry-wrapper{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:576px){

.industry-wrapper{
    grid-template-columns:1fr;
}

.industry-card{
    height:400px;
}

}


/*==================================
        PURPOSE SECTION
==================================*/

.purpose-section{
    padding:160px 8% 120px;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:#fff;
}

.purpose-section::before{
    content:"PURPOSE";
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    font-size:220px;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(0,0,0,.03);
    pointer-events:none;
}

.purpose-section span{
    color:#cc2038;
    font-weight:700;
    letter-spacing:4px;
    position:relative;
    z-index:2;
}

.purpose-section h1{
    font-size:clamp(36px,6vw,85px);
    line-height:1.08;
    margin:25px auto;
    max-width:1200px;
    font-family:'Oswald',sans-serif;
    position:relative;
    z-index:2;
}

.purpose-section p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:2;
    font-size:18px;
    position:relative;
    z-index:2;
}

/* Fix Legacy Section */

@media (max-width:991px){

    .legacy-item,
    .reverse{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .legacy-image,
    .legacy-content{
        width:100%;
        order:unset !important;
    }

    .legacy-image{
        margin-bottom:10px;
    }

    .legacy-image img{
        max-width:240px;
        width:100%;
        height:auto;
    }

    .legacy-content{
        max-width:700px;
        margin:auto;
    }

    .industries-premium::before{
font-size: 90px;
    }
   .core-values::before{
font-size: 90px;
    }

}

@media (max-width:480px){

    .legacy-image img{
        max-width:180px;
    }

    .legacy-content{
        width:100%;
    }

}




/*==================================
       VISION MISSION
==================================*/

.vision-mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.vm-box{
    padding:100px 80px;
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
}

.vm-box.dark{
    background:#111;
}

.vm-no{
    font-size:180px;
    line-height:1;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(0,0,0,.05);
    margin-bottom:20px;
}

.dark .vm-no{
    color:rgba(255,255,255,.08);
}

.vm-box span{
    color:#cc2038;
    font-weight:700;
    letter-spacing:4px;
}

.vm-box h2{
    font-size:clamp(30px,4vw,55px);
    line-height:1.15;
    margin:25px 0;
    font-family:'Oswald',sans-serif;
}

.vm-box p{
    color:#666;
    line-height:2;
    font-size:17px;
}

.dark h2,
.dark p{
    color:#fff;
}


/*==================================
        VALUES SECTION
==================================*/

.values-strip{
    display:grid;
    grid-template-columns:repeat(6,minmax(150px,1fr));
}
.values-strip div{
    padding:60px 25px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    border-right:1px solid #eee;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.values-strip div:last-child{
    border-right:none;
}

.values-strip div::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:4px;
    background:#cc2038;
    transition:.5s;
}

.values-strip div:hover::before{
    width:100%;
}

.values-strip div:hover{
    background:#fafafa;
}


/*==================================
      COMMITMENT SECTION
==================================*/

.commitment-section{
    padding:140px 8%;
    text-align:center;
    background:#111;
    position:relative;
    overflow:hidden;
}

.commitment-section::before{
    content:"COMMITMENT";
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:180px;
    font-family:'Oswald',sans-serif;
    font-weight:800;
    color:rgba(255,255,255,.03);
}

.commitment-section span{
    color:#cc2038;
    font-weight:700;
    letter-spacing:4px;
    position:relative;
    z-index:2;
}

.commitment-section h2{
    max-width:1100px;
    margin:30px auto 0;
    color:#fff;
    font-size:clamp(30px,4vw,55px);
    line-height:1.2;
    font-family:'Oswald',sans-serif;
    position:relative;
    z-index:2;
}


/*==================================
       HOVER EFFECTS
==================================*/

.vm-box{
    transition:.5s;
}
.vm-box{
    word-wrap:break-word;
}
.vm-box:hover{
    transform:translateY(-10px);
}

.dark:hover{
    background:#1b1b1b;
}
/*==================================
 Responsive - Vision Mission
===================================*/

/* Laptop */
@media (max-width:1200px){

    .vm-box{
        padding:80px 50px;
    }

    .vm-no{
        font-size:130px;
    }

    .vm-box h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .vision-mission-grid{
        grid-template-columns:1fr;
    }

    .vm-box{
        padding:70px 35px;
        text-align:center;
    }

    .vm-no{
        font-size:100px;
        margin-bottom:15px;
    }

    .vm-box span{
        font-size:14px;
        letter-spacing:2px;
    }

    .vm-box h2{
        font-size:34px;
        margin:18px 0;
    }

    .vm-box p{
        font-size:15px;
        line-height:1.8;
    }

}

/* Mobile */
@media (max-width:480px){

    .vm-box{
        padding:60px 20px;
    }

    .vm-no{
        font-size:70px;
    }

    .vm-box span{
        font-size:12px;
        letter-spacing:1px;
    }

    .vm-box h2{
        font-size:28px;
    }

    .vm-box p{
        font-size:14px;
        line-height:1.7;
    }

}


/*==================================
 Responsive - Values Strip
===================================*/

@media (max-width:991px){

    .values-strip{
        grid-template-columns:repeat(3,1fr);
    }

    .values-strip div{
        padding:40px 20px;
        font-size:17px;
        border-bottom:1px solid #eee;
    }

    .values-strip div:nth-child(3){
        border-right:none;
    }

}

@media (max-width:480px){

    .values-strip{
        grid-template-columns:1fr;
    }

    .values-strip div{
        padding:22px 15px;
        font-size:15px;
        border-right:none;
        border-bottom:1px solid #eee;
    }

    .values-strip div:last-child{
        border-bottom:none;
    }

}


/*==================================
 Responsive - Commitment Section
===================================*/

@media (max-width:991px){

    .commitment-section{
        padding:90px 20px;
    }

    .commitment-section::before{
        font-size:90px;
        top:20px;
    }

    .commitment-section span{
        font-size:14px;
        letter-spacing:2px;
    }

    .commitment-section h2{
        font-size:36px;
        line-height:1.3;
        margin-top:20px;
    }

}

@media (max-width:480px){

    .commitment-section{
        padding:70px 15px;
    }

    .commitment-section::before{
        display:none;
    }

    .commitment-section span{
        font-size:12px;
        letter-spacing:1px;
    }

    .commitment-section h2{
        font-size:28px;
        line-height:1.4;
    }

}

@media (max-width:415px){
   .mobile-toggle {
        top: 95px;
        right: 0px;
        font-size: 18px;
        width: 44px;
        height: 44px;
    }
        .about-right h2 {
        font-size: 26px;
        line-height:35px;
    }
        .product-heading h2 {
        font-size: 30px;
    }
    .brands-section h2 {
    font-size: 35px;

}
.section-title h2
 {
    font-size: 30px;
 }
 p{
     text-align :justify;
 }
}

/*==================================
      SCROLL ANIMATION
==================================*/

.fade-up{
    opacity:0;
    transform:translateY(80px);
    transition:1s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}





/* =========================
   SERVICES SECTION
========================= */

.services-section{
    padding:120px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.section-title span{
    color:white;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:48px;
    margin:15px 0;
    color:#111;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:white;
}

.service-card .icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#cc2038;
    color:#fff;
    font-size:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
    color:#111;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
    padding:120px 8%;
    background:#f8f9fc;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:380px;
}

.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.9),
    rgba(0,0,0,.1));
}

.product-card .content{
    position:absolute;
    bottom:30px;
    left:30px;
    z-index:2;
}

.product-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.product-card a{
    display:inline-block;
    padding:12px 28px;
    background:#cc2038;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.product-card a:hover{
    background:#fff;
    color:#111;
}



.oty-service-banner{
    padding:180px 8% 120px;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url(images/service-banner.jpg);
    background-size:cover;
    background-position:center;
    text-align:center;
}

.oty-service-banner-content{
    max-width:850px;
    margin:auto;
}

.oty-service-tag{
    display:inline-block;
    padding:8px 18px;
    background:#cc2038;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

.oty-service-banner h1{
    color:#fff;
    font-size:72px;
    margin-bottom:20px;
}

.oty-service-banner p{
    color:#ddd;
    font-size:18px;
    line-height:1.9;
}

.oty-service-overview{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.oty-service-left img{
    width:100%;
    border-radius:25px;
}

.oty-service-right span{
    color:#cc2038;
    font-weight:600;
    letter-spacing:2px;
}

.oty-service-right h2{
    font-size:48px;
    margin:15px 0 25px;
}

.oty-service-right p{
    color:#666;
    line-height:1.9;
}

.oty-feature-list{
    margin-top:35px;
}

.oty-feature-item{
    padding:15px 0;
    border-bottom:1px solid #eee;
    font-weight:500;
}

.oty-service-benefits{
    padding:120px 8%;
    background:#fafafa;
}

.oty-heading-center{
    text-align:center;
    margin-bottom:60px;
}

.oty-heading-center span{
    color:#cc2038;
    font-weight:600;
}

.oty-heading-center h2{
    font-size:48px;
    margin-top:15px;
}

.oty-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.oty-benefit-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    transition:.4s;
    border-top:4px solid transparent;
}

.oty-benefit-box:hover{
    transform:translateY(-8px);
    border-color:#cc2038;
}

.oty-benefit-box h3{
    margin-bottom:15px;
}

.oty-process-section{
    padding:120px 8%;
}

.oty-process-row{
    display:flex;
    justify-content:space-between;
    margin-top:60px;
    gap:20px;
}

.oty-process-step{
    flex:1;
    text-align:center;
}

.oty-process-step div{
    width:90px;
    height:90px;
    background:#cc2038;
    color:#fff;
    margin:auto;
    border-radius:50%;
    font-size:28px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.oty-service-cta{
    padding:100px 8%;
    text-align:center;
    background:#111;
}

.oty-service-cta h2{
    color:#fff;
    font-size:48px;
}

.oty-service-cta p{
    color:#bbb;
    margin:20px 0 35px;
}

.oty-service-cta a{
    display:inline-block;
    padding:14px 35px;
    background:#cc2038;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

/* =========================
   GALLERY BANNER
========================= */

.oty-gallery-banner{
    padding:140px 8% 100px;
    text-align:center;
    background:#f8f9fb;
}

.oty-gallery-banner span{
    color:#cc2038;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.oty-gallery-banner h1{
    font-size:65px;
    color:#111;
    margin:15px 0 20px;
    font-weight:700;
}

.oty-gallery-banner p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

/* =========================
   GALLERY SECTION
========================= */

.oty-gallery-section{
    padding:100px 8%;
}

.oty-gallery-grid{
    column-count:4;
    column-gap:20px;
}

.oty-gallery-item{
    margin-bottom:20px;
    break-inside:avoid;
    overflow:hidden;
    border-radius:18px;
}

.oty-gallery-item img{
    width:100%;
    display:block;
    border-radius:18px;
    transition:.5s;
}

.oty-gallery-item:hover img{
    transform:scale(1.05);
}

.oty-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:25px;
}

.oty-gallery-item img{
    height:280px;
    object-fit:cover;
}

.oty-gallery-item:hover img{
    transform:scale(1.12);
}

.oty-gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.35),
    transparent);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.oty-gallery-item:hover::before{
    opacity:1;
}

/* SPECIAL SIZES */

.oty-gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.oty-gallery-item.tall{
    grid-row:span 2;
}

.oty-gallery-item.wide{
    grid-column:span 2;
}

/* RESPONSIVE */

@media(max-width:991px){

    .oty-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .oty-gallery-banner h1{
        font-size:45px;
    }
}

@media(max-width:600px){

    .oty-gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:280px;
    }

    .oty-gallery-item.large,
    .oty-gallery-item.tall,
    .oty-gallery-item.wide{
        grid-column:span 1;
        grid-row:span 1;
    }

    .oty-gallery-banner h1{
        font-size:34px;
    }
}

@media(max-width:991px){
    .oty-gallery-grid{
        column-count:3;
    }
}

@media(max-width:768px){
    .oty-gallery-grid{
        column-count:2;
    }
}

@media(max-width:576px){
    .oty-gallery-grid{
        column-count:1;
    }
}


/* HERO */

.oty-video-hero{
    padding:140px 8% 100px;
    text-align:center;
    background:#f8f8f8;
}

.oty-video-hero span{
    color:#cc2038;
    font-weight:600;
    letter-spacing:3px;
}

.oty-video-hero h1{
    font-size:70px;
    margin:15px 0;
    color:#111;
}

.oty-video-hero p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

/* FEATURED VIDEO */

.oty-featured-video{
    padding:100px 8%;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
}

.oty-featured-content span{
    color:#cc2038;
    font-weight:600;
}

.oty-featured-content h2{
    font-size:48px;
    margin:20px 0;
}

.oty-featured-content p{
    color:#666;
    line-height:1.9;
}

.oty-featured-player iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:20px;
}

/* GALLERY */

.oty-video-gallery{
    padding:100px 8%;
    background:#fafafa;
}

.oty-video-heading{
    text-align:center;
    margin-bottom:60px;
}

.oty-video-heading span{
    color:#cc2038;
    font-weight:600;
}

.oty-video-heading h2{
    font-size:48px;
    margin-top:10px;
}

.oty-video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.oty-video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.oty-video-card:hover{
    transform:translateY(-8px);
}

.oty-video-thumb{
    position:relative;
}

.oty-video-thumb img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75px;
    height:75px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.oty-video-content{
    padding:25px;
}

.oty-video-content h3{
    margin-bottom:12px;
}

.oty-video-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .oty-featured-video{
        grid-template-columns:1fr;
    }

    .oty-video-grid{
        grid-template-columns:1fr;
    }

    .oty-video-hero h1{
        font-size:45px;
    }
    .oty-featured-content h2

 {
    font-size: 35px;
    margin: 0px 0;
}

.oty-video-heading h2 {
    font-size: 35px;
    margin-top: 10px;
}
}




.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
    padding:45px 50px;
    background:#fff;
}

.service-category{
    position:relative;
    padding-left:18px;
}

.service-category::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:35px;
    border-radius:10px;
    background:#cc2038;
}

.service-category h3{
    font-size:21px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.3;
}

.service-category a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#555;
    font-size:15px;
    padding:10px 0;
    transition:.35s;
}

.service-category a span{
    opacity:0;
    transform:translateX(-8px);
    color:#cc2038;
    transition:.35s;
}

.service-category a:hover{
    color:#cc2038;
    padding-left:10px;
}

.service-category a:hover span{
    opacity:1;
    transform:translateX(0);
}

@media(max-width:991px){

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.services-grid{
    grid-template-columns:1fr;
    padding:25px;
}

}


.jk-style-products{
    padding:40px;
    background:#f9f8f3;
}

.jk-style-products h3{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:30px;
    letter-spacing:1px;
}

.jk-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.jk-product-item{
    text-decoration:none;
    text-align:center;
    color:#222;
    transition:.35s;
}

.jk-product-item img{
    width:95px;
    height:95px;
    object-fit:contain;
    margin-bottom:15px;
    transition:.35s;
}

.jk-product-item span{
    display:block;
    font-size:16px;
    font-weight:500;
    line-height:1.4;
}

.jk-product-item:hover img{
    transform:scale(1.12) rotate(-5deg);
}

.jk-product-item:hover span{
    color:#cc2038;
}

@media(max-width:992px){

.jk-products-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.jk-products-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.jk-products-grid{
    grid-template-columns:1fr;
}

}



.pt-testimonial{

padding:100px 8%;

display:grid;

grid-template-columns:42% 58%;

gap:60px;

background:#fafafa;

/* align-items:center; */

}

.pt-tag{

display:inline-block;

padding:8px 18px;

background:#fff3e8;

color:#cc2038;

font-weight:600;

border-radius:30px;

margin-bottom:20px;

}

.pt-left h2{

font-size:58px;

line-height:1.1;

font-weight:800;

color:#111;

margin-bottom:20px;

}

.pt-left p{

font-size:17px;

line-height:30px;

color:#666;

margin-bottom:40px;

}

.pt-users{

display:flex;

}

.pt-avatar{

width:50px;

height:50px;

background:#cc2038;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-right:-10px;

font-weight:700;

border:3px solid #fff;

}

.pt-rating{

display:flex;

align-items:center;

gap:20px;

font-weight:600;

}


.pt-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    align-items:start;
}

.pt-card{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border:1px solid rgba(244,124,32,.15);

    border-radius:22px;

    padding:28px;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.pt-card:nth-child(even){

    margin-top:20px;

}

.pt-card:hover{

     transform:scale(1.06);


}

.pt-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#cc2038,#ffb347);

}

.pt-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#fff5eb;

    color:#cc2038;

    padding:7px 15px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

}

.pt-quote{

    position:absolute;

    right:22px;

    top:18px;

    font-size:38px;

    color:#ececec;

}

.pt-review{

    margin:28px 0 22px;

    color:#555;

    font-size:15px;

    line-height:28px;

}

.pt-stars{

    color:#ffb400;

    margin-bottom:22px;

}

.pt-stars i{

    margin-right:2px;

}

.pt-user{

    display:flex;

    align-items:center;

    gap:14px;

    border-top:1px solid #eee;

    padding-top:18px;

}

.pt-avatar2{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#cc2038;

    color:#fff;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    box-shadow:0 10px 20px rgba(244,124,32,.25);

}

.pt-user h4{

    margin:0;

    font-size:17px;

    color:#111;

}

.pt-user span{

    font-size:13px;

    color:#888;

}

@media(max-width:992px){

.pt-right{

grid-template-columns:1fr;

}

.pt-card:nth-child(even){

margin-top:0;

}

}

@media(max-width:991px){

.pt-testimonial{

grid-template-columns:1fr;

}

.pt-right{

grid-template-columns:1fr;

}

.pt-card:nth-child(even){

margin-top:0;

}

.pt-left h2{

font-size:42px;

}

}


.pt-left,
.pt-card{
    opacity:1 !important;
    visibility:visible !important;
}


.pt-contact-section{
    padding:120px 8%;
    background:linear-gradient(180deg,#fff,#f6f8fb);
    position:relative;
    overflow:hidden;
}

.pt-contact-section:before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#cc2038;
    opacity:.08;
    border-radius:50%;
    top:-220px;
    left:-220px;
}



.pt-contact-container{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.pt-tag{
    display:inline-block;
    background:#cc2038;
    color:white;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
}

.pt-contact-left h2{

    font-size:58px;
    line-height:1.15;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.pt-contact-left h2 span{

    color:#cc2038;
}

.pt-contact-left p{
    font-size:17px;
    color:#666;
    line-height:32px;
    max-width:620px;
    margin-bottom:45px;
}

.pt-contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.pt-info-box{

    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-radius:22px;
    padding:25px;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    border:1px solid #eee;
}

.pt-info-box:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.pt-icon{

    width:70px;
    height:70px;
    border-radius:20px;
    background:#cc2038;
    color:white;
    font-size:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.pt-info-box:hover .pt-icon{

    transform:rotate(-10deg) scale(1.1);
}
.pt-info-box h4{
    margin:0;
    color:#111;
    font-size:18px;
}

.pt-info-box span{
    color:#777;
    font-size:15px;
}

.pt-form-card{

    background:#fff;
    border-radius:30px;
    padding:50px;
    border:1px solid #ececec;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.pt-form-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:2px;
    background:#cc2038;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;      /* IMPORTANT */
}
.pt-contact-section::before,
.pt-contact-section::after{
    pointer-events:none;
}

.pt-form-card h3{
    margin-bottom:35px;
    color:#111;
    font-size:30px;
}

.pt-input-group{

    margin-bottom:22px;
}

.pt-input-group input,
.pt-input-group textarea{

    width:100%;
    background:#fafafa;
    border:2px solid transparent;
    height:60px;
    border-radius:15px;
    padding:0 20px;
    font-size:15px;
    transition:.35s;
}

.pt-input-group textarea{

    height:160px;
    padding-top:18px;
    resize:none;
}

.pt-input-group input:focus,
.pt-input-group textarea:focus{

    border-color:#ffc400;
    background:#fff;
    box-shadow:0 0 0 5px rgba(255,204,0,.15);
}

.pt-form-card button{

    width:100%;
    height:60px;
    border:none;
    border-radius:50px;
    background:#111;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.pt-form-card button:hover{

    background:#cc2038;
    transform:translateY(-4px);
}
@media(max-width:991px){

.pt-contact-container{
    grid-template-columns:1fr;
}

.pt-contact-left{
    text-align:center;
}

.pt-contact-left p{
    margin:auto;
    margin-bottom:40px;
}

.pt-contact-left h2{
    font-size:42px;
}

.pt-contact-info{
    margin-top:40px;
}

}

@media(max-width:576px){

.pt-contact-section{
    padding:80px 20px;
}

.pt-form-card{
    padding:30px;
}

.pt-contact-left h2{
    font-size:32px;
}

.pt-info-box{
    flex-direction:column;
    text-align:center;
}

}


/*==============================
        GOOGLE MAP SECTION
===============================*/

.pt-map-section{
    padding:120px 8%;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    position:relative;
    overflow:hidden;
    margin-top:10px;
}

/* Background Shapes */

.pt-map-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#cc2038;
    opacity:.08;
    border-radius:50%;
    top:-180px;
    left:-150px;
}

.pt-map-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#111;
    opacity:.03;
    border-radius:50%;
    bottom:-220px;
    right:-180px;
}

.pt-map-heading{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.pt-map-heading span{
    display:inline-block;
    padding:8px 22px;
    background:#cc2038;
    color:#111;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    border-radius:50px;
    text-transform:uppercase;
}

.pt-map-heading h2{
    margin-top:20px;
    font-size:48px;
    font-weight:700;
    color:#111;
    position:relative;
    display:inline-block;
}

.pt-map-heading h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-15px;
    transform:translateX(-50%);
    width:90px;
    height:4px;
    background:#cc2038;
    border-radius:20px;
}

.pt-map-box{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 25px 80px rgba(0,0,0,.12);
    border:8px solid #fff;
    transition:.5s;
    z-index:2;
}

.pt-map-box:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 90px rgba(0,0,0,.18);
}

/* Yellow Border Glow */

.pt-map-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    padding:2px;
   
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.pt-map-box iframe{
    width:100%;
    height:560px;
    border:0;
    display:block;
    transition:transform .8s ease;
}

.pt-map-box:hover iframe{
    transform:scale(1.03);
}

/* Floating Location Card */

.pt-map-box .location-card{
    position:absolute;
    left:40px;
    bottom:40px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    gap:15px;
    z-index:5;
}

.location-card i{
    width:55px;
    height:55px;
    background:#cc2038;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.location-card h4{
    margin:0;
    font-size:18px;
    color:#111;
}

.location-card p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
    line-height:22px;
}

/* Responsive */

@media(max-width:991px){

.pt-map-section{
    padding:90px 6%;
}

.pt-map-heading h2{
    font-size:38px;
}

.pt-map-box iframe{
    height:450px;
}

.location-card{
    left:25px !important;
    bottom:25px !important;
    padding:18px;
}
 p{
     text-align :justify;
 }
 .counter-box1 p{
     text-align:center;
 }
}

@media(max-width:576px){

.pt-map-section{
    padding:70px 20px;
}

.pt-map-heading h2{
    font-size:30px;
}

.pt-map-heading span{
    font-size:12px;
}

.pt-map-box{
    border-radius:20px;
}

.pt-map-box iframe{
    height:350px;
}

.location-card{
    position:relative !important;
    left:0 !important;
    bottom:0 !important;
    margin:20px;
    width:calc(100% - 40px);
}

.location-card i{
    width:45px;
    height:45px;
    font-size:18px;
}

}



.mega-menu .service-category a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.mega-menu .service-category a:hover {
    color: #cc2038;
    padding-left: 6px;
}

a{
    text-decoration: none;
}
/* BRANCHES MEGA MENU */
.branches-elite {
    padding: 25px;
    background: #fff;
}

/* FLEX */
.branches-elite-wrapper {
    display: flex;
    gap: 30px;
}

/* LEFT */
.branches-left {
    flex: 1;
}

.branches-left h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #111;
}

.sub-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

/* CARD */
.branch-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #cc2038;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.branch-card .icon1 {
    font-size: 20px;
    color: #cc2038;
}

.branch-card h4 {
    margin: 0;
    font-size: 15px;
    color: #222;
}

.branch-card span {
    font-size: 12px;
    color: #777;
}

/* RIGHT */
.branches-right {
    width: 320px;
}

.image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8);
}

.overlay {
    /* position: absolute; */
    bottom: 0;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.overlay h4 {
    margin: 0;
    font-size: 16px;
}

.overlay p {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

/* CTA BUTTON */
.cta-btn1 {
    display: block;
    margin-top: 12px;
    text-align: center;
    padding: 10px;
    background:  #cc2038;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn1:hover {
    transform: scale(1.03);
}



.floating-buttons{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-buttons a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    transition:0.3s;
    animation:floatUp 2s infinite ease-in-out;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#cc2038;
    color:#fff;
}

.floating-buttons a:hover{
    transform:scale(1.1);
}

@keyframes floatUp{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
}


@media (max-width:415px)
{
    .section-title h2{
        font-size:30px;
    }
    .logo-section{
        gap:0px;
    }
    .logo-content p{
        margin-top:-4px;
    }
        .hero-left h1 {
        font-size: 30px;
    }
    .section-heading span{
        letter-spacing:1px;
    }

.oty-gallery-banner {
    padding: 70px 8% 0px;
}

.oty-video-hero {
    padding: 70px 8% 0px;
}

.oty-video-hero h1 {
        font-size: 35px;
    }
        .oty-featured-content h2 {
        font-size: 23px;
        margin: 0px 0;
    }
    .oty-video-gallery{
        padding:40px 8%;
    }
}


/* Left Social Icons */
.social-fixed{
    position:fixed;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.social-fixed a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:8px 0;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    border-radius:50%;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.social-fixed a:hover{
    transform:scale(1.12);
}

/* Brand Colors */
.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.linkedin{
    background:#0077B5;
}

.youtube{
    background:#FF0000;
}

/* Right WhatsApp */
.whatsapp-fixed{
    position:fixed;
    right:20px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    animation:whatsappPulse 1.8s infinite;
}

.whatsapp-fixed:hover{
    color:#fff;
    transform:scale(1.1);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){
    .social-fixed{
        left:10px;
    }

    .social-fixed a{
        width:42px;
        height:42px;
        font-size:18px;
    }

    .whatsapp-fixed{
        width:50px;
        height:50px;
        font-size:26px;
        right:15px;
        bottom:20px;
    }
}