/* ==========================
   COLOR VARIABLES
========================== */

:root{

    --primary:#D91E2E;
    --primary-dark:#8B0F1A;

    --bg:#2E313D;
    --bg-light:#393F4C;
    --bg-dark:#252A35;

    --white:#FFFFFF;
    --text:#D8D8D8;

}  

/* ==========================
   GLOBAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background-color:var(--bg);
    color:var(--white);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

section{
    background-color:var(--bg);
    padding:80px 0;
}

h1,h2,h3,h4,h5,h6{
    color:var(--white);
    font-weight:700;
}

p{
    color:var(--text);
    line-height:1.8;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    background: var(--bg);
    padding: 18px 0;
    transition: all .4s ease;
    z-index: 999;
}

/* Sticky Navbar */
.navbar.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(46,49,61,.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Logo */
.navbar-brand img{
    width: 80px;
    transition: .3s;
}

.navbar-brand img:hover{
    transform: scale(1.05);
}

/* Navigation Menu */
.navbar-nav{
    gap: 15px;
}

/* Links */
.navbar-nav .nav-link{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 10px 16px;
    position: relative;
    transition: .3s;
}

/* Hover */
.navbar-nav .nav-link:hover{
    color: #D91E2E;
}

/* Active Link */
.navbar-nav .nav-link.active{
    color: #D91E2E;
}

/* Underline Animation */
.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #D91E2E;
    transition: .35s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: 70%;
}

/* Dropdown */
.dropdown-menu{
    background: #3A3E4B;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item{
    color: #fff;
    padding: 10px 20px;
    transition: .3s;
}

.dropdown-item:hover{
    background: #D91E2E;
    color: #fff;
}

/* CTA Button */
.nav-btn{
    background: linear-gradient(135deg,#D91E2E,#8B0F1A);
    color: #fff;
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.nav-btn:hover{
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217,30,46,.35);
}

/* Mobile Toggler */
.navbar-toggler{
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon{
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width:991px){

    .navbar{
        padding: 15px 0;
    }

    .navbar-collapse{
        background: #2E313D;
        margin-top: 15px;
        border-radius: 10px;
        padding: 20px;
    }

    .navbar-nav{
        gap: 5px;
        text-align: center;
    }

    .nav-btn{
        display: block;
        margin-top: 15px;
        text-align: center;
    }
}

/* Dropdown Menu */

.dropdown-menu{
    background:#2E313D;
    border:2px solid #D91E2E;
    border-radius:12px;
    min-width:320px;
    padding:10px 0;
    margin-top:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.dropdown-item{
    color:#fff;
    padding:14px 22px;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:#D91E2E;
    color:#fff;
    padding-left:30px;
}

.dropdown-divider{
    border-color:#555;
}

/* ===============================
   FLOATING CONTACT
================================== */

.floating-contact{

    position:fixed;

    right:20px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:12px;

    z-index:9999;

}

/* Contact Button */

.contact-btn{

    background:#fff;

    color:#2E313D;

    padding:12px 22px;

    border-radius:30px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.contact-btn:hover{

    background:#D91E2E;

    color:#fff;

}

/* WhatsApp Button */

.whatsapp-btn{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    transition:.3s;

}

/* Hover */

.whatsapp-btn:hover{

    transform:scale(1.1);

    color:#fff;

}

/* Pulse Animation */

.whatsapp-btn::before{

    content:"";

    position:absolute;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    animation:pulse 2s infinite;

    z-index:-1;

}

@keyframes pulse{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    100%{

        transform:scale(1.8);

        opacity:0;

    }

}

/* Mobile */

@media(max-width:768px){

    .floating-contact{

        right:15px;

        bottom:15px;

    }

    .contact-btn{

        padding:10px 18px;

        font-size:14px;

    }

    .whatsapp-btn{

        width:55px;

        height:55px;

        font-size:30px;

    }

}

/*=========================
    Brands Section
==========================*/

.brands-section{

    background:var(--bg);
    padding:0 0 100px 0;

}

.brands-section h2{

    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;

}

.brand-logo{
    width:150px;
    height:80px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    border-radius:12px;
    transition:.3s;
}

.brand-logo:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/*=========================
    CONTACT FORM
==========================*/

.contact-section{

    background:#2E313D;
    padding:0 0 100px 0;

}

.contact-form{

    background:#393F4C;

    padding:60px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.30);

}

.contact-form h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

}

.form-control{

    background:transparent;

    border:none;

    border-bottom:2px solid rgba(255,255,255,.2);

    border-radius:0;

    color:#fff;

    font-size:18px;

    padding:18px 0;

    box-shadow:none !important;

}

.form-control::placeholder{

    color:#cfcfcf;

    font-size:18px;

}

.form-control:focus{

    background:transparent;

    color:#fff;

    border-bottom:2px solid #D91E2E;

}

textarea{

    resize:none;

}

.send-btn{

    background:#D91E2E;

    color:#fff;

    padding:15px 45px;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

    border:none;

    transition:.3s;

}

.send-btn:hover{

    background:#8B0F1A;

    color:#fff;

    transform:translateY(-3px);

}

/*=========================
        HERO
==========================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url("images/Services/washing-machine.png") center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

/* Dark Overlay */

.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(25,28,38,.72);

    z-index:1;

}

/* Hero Content */

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

/* Subtitle */

.hero-subtitle{

    display:inline-block;

    color:#D91E2E;

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

/* Heading */

.hero h1{

    font-size:72px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

    color:#fff;

}

.hero h1 span{

    color:#D91E2E;

}

/* Description */

.hero p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:20px;

    line-height:1.8;

    color:#e2e2e2;

}

/* Features */

.hero-list{

    list-style:none;

    padding:0;

    margin:0 0 45px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

}

.hero-list li{

    color:#fff;

    font-size:18px;

    font-weight:500;

}

.hero-list i{

    color:#D91E2E;

    margin-right:8px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-book{

    background:#D91E2E;

    color:#fff;

    padding:15px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.btn-book:hover{

    background:#8B0F1A;

    color:#fff;

    transform:translateY(-3px);

}

.btn-call{

    border:2px solid #fff;

    color:#fff;

    padding:15px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.btn-call:hover{

    background:#fff;

    color:#2E313D;

    transform:translateY(-3px);

}

/* Responsive */

@media(max-width:991px){

    .hero{

        min-height:85vh;

        padding:80px 0;

    }

    .hero h1{

        font-size:52px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-list{

        gap:18px;

    }

}

@media(max-width:576px){

    .hero{

        min-height:80vh;

        padding:70px 15px;

    }

    .hero h1{

        font-size:38px;

    }

    .hero-subtitle{

        font-size:16px;

    }

    .hero p{

        font-size:16px;

    }

    .hero-list{

        flex-direction:column;

        gap:12px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn-book,
    .btn-call{

        width:230px;

        text-align:center;

    }

}

/*====================================
            ABOUT
=====================================*/

.about{

    background:#2E313D;
    padding:100px 0;

}

/* Left Image */

.about-img{

    position:relative;

    overflow:hidden;

    border-top-right-radius:160px;
    border-bottom-right-radius:160px;
    border-top-left-radius:20px;
    border-bottom-left-radius:20px;

    border-right:12px solid #D91E2E;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.about-img img{

    width:100%;
    height:500px;

    object-fit:cover;

    transition:.5s;

}

.about-img:hover img{

    transform:scale(1.05);

}

/* Orange Curved Border */

.about-img::before{

    content:"";

    position:absolute;

    left:-15px;
    top:-15px;

    width:100%;
    height:530px;

    border-top-left-radius:180px;
    border-bottom-left-radius:180px;

    border-left:10px solid #D91E2E;

    z-index:1;

}

.about-img img{

    position:relative;
    z-index:2;

}

/* Right Content */

.about-content{

    padding-left:60px;
    text-align: justify;

}

/* Subtitle */

.about-subtitle{

    color:#D91E2E;

    font-size:18px;

    font-weight:600;

    text-transform:uppercase;

    position:relative;

    padding-left:90px;

    letter-spacing:1px;

}

.about-subtitle::before{

    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:70px;
    height:3px;

    background:#D91E2E;

    transform:translateY(-50%);

}

/* Heading */

.about-content h2{

    font-size:55px;

    font-weight:700;

    color:#fff;

    line-height:1.2;

    margin:25px 0;

}

/* Paragraph */

.about-content p{

    font-size:18px;

    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:20px;

}

/* Button */

.about-btn{

    display:inline-block;

    margin-top:20px;

    padding:15px 38px;

    background:#D91E2E;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#8B0F1A;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(217,30,46,.35);

}

/* Responsive */

@media(max-width:991px){

    .about{

        padding:70px 0;

    }

    .about-content{

        padding-left:0;

        margin-top:40px;

    }

    .about-content h2{

        font-size:38px;

    }

    .about-img{

        border-radius:20px;

    }

    .about-img::before{

        display:none;

    }

    .about-img img{

        height:350px;

    }

}

/*====================================
            SERVICES
=====================================*/

.services{
    background: var(--bg);
    padding:100px 0;
    overflow:hidden;
}

/* Heading */

.section-title{
    margin-bottom:70px;
}

.service-subtitle{
    color:var(--primary);
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    position:relative;
    display:inline-block;
    padding-left:80px;
}

.service-subtitle::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:60px;
    height:3px;
    background:var(--primary);
    transform:translateY(-50%);
}

.section-title h2{
    font-size:52px;
    color:#fff;
    font-weight:700;
    margin:20px 0;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;
}

/* Swiper */

.serviceSwiper{
    padding-bottom:70px;
}

/* Card */

.service-card{
    background:rgba(57,63,76,.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);;
    border-radius:25px;
    overflow:hidden;
    transition:.45s;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    height:100%;
}

.service-card:hover{
    transform:translateY(-15px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(217,30,46,.25);
}

/* Image */

.service-img{

    position:relative;

    height:260px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#4b4f5d;

    overflow:hidden;

}

.service-img img{

    width:90%;

    height:90%;

    object-fit:contain;

    transition:.6s;

}

.service-img::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

    z-index:1;

}

.service-img img{

    position:relative;

    z-index:0;

}

.service-icon{

    z-index:2;

}

.service-card:hover .service-img img{
    transform:scale(1.08);
}

/* Icon */

.service-icon{
    position:absolute;
    bottom:-28px;
    right:25px;
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#D91E2E,#8B0F1A);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    box-shadow:0 10px 25px rgba(217,30,46,.35);
    transition:.4s;
}

.service-card:hover .service-icon{
    transform:rotate(360deg);
}

/* Content */

.service-content{
    padding:45px 30px 30px;
}

.service-content h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.service-content p{
    color:#d6d6d6;
    line-height:1.8;
    margin-bottom:30px;
}

/* Button */

.service-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    background:var(--primary);
    padding:12px 24px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
}

.service-content a:hover{
    background:#fff;
    color:var(--primary);
}

.service-content a i{
    transition:.35s;
}

.service-content a:hover i{
    transform:translateX(6px);
}

/* Navigation */

.serviceSwiper .swiper-button-next,
.serviceSwiper .swiper-button-prev{

    width:55px;
    height:55px;
    border-radius:50%;
    background:#393F4C;
    border:2px solid var(--primary);
    color:#fff;
    transition:.35s;

}

.serviceSwiper .swiper-button-next:hover,
.serviceSwiper .swiper-button-prev:hover{

    background:var(--primary);

}

.serviceSwiper .swiper-button-next::after,
.serviceSwiper .swiper-button-prev::after{

    font-size:18px;
    font-weight:bold;

}

/* Pagination */

.serviceSwiper .swiper-pagination-bullet{

    width:12px;
    height:12px;
    background:#888;
    opacity:1;

}

.serviceSwiper .swiper-pagination-bullet-active{

    background:var(--primary);
    width:35px;
    border-radius:20px;

}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size:40px;
    }

    .service-content h3{
        font-size:24px;
    }

}

@media(max-width:768px){

    .services{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .service-img{
        height:220px;
    }

    .service-content{
        padding:40px 25px 25px;
    }

    .serviceSwiper .swiper-button-next,
    .serviceSwiper .swiper-button-prev{
        display:none;
    }

}

.service-card{

    position:relative;

}

.service-card::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.15),

        transparent

    );

    transition:.8s;

}

.service-card:hover::before{

    left:130%;

}

/*====================================
        CUSTOM SWIPER ARROWS
=====================================*/

.custom-arrow{

    width:48px !important;
    height:48px !important;

    border-radius:50%;

    background:#393F4C;

    border:2px solid #D91E2E;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.30);

}

/* Remove default Swiper arrow */

.custom-arrow::after{

    display:none;

}

/* Icon */

.custom-arrow i{

    color:#fff;

    font-size:15px;

    transition:.35s;

}

/* Hover */

.custom-arrow:hover{

    background:#D91E2E;

    transform:scale(1.1);

    box-shadow:0 12px 30px rgba(217,30,46,.40);

}

.custom-arrow:hover i{

    color:#fff;

}

/* Position */

.swiper-button-prev{

    left:-15px;

}

.swiper-button-next{

    right:-15px;

}

/* Mobile */

@media(max-width:768px){

    .custom-arrow{

        width:42px !important;
        height:42px !important;

    }

    .custom-arrow i{

        font-size:13px;

    }

}

/*====================================
        WHY CHOOSE US
=====================================*/

.why-us{

    padding: 0 0 100px 0;

    background:var(--bg);;

}

.why-card{

    background:#393F4C;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

    height:100%;

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

    transition:.8s;

}

.why-card:hover::before{

    left:100%;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#D91E2E;

    box-shadow:0 20px 40px rgba(217,30,46,.20);

}

.why-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;

    transition:.4s;

}

.why-card:hover .why-icon{

    transform:rotateY(180deg);

}

.why-card h4{

    color:#fff;

    font-size:26px;

    margin-bottom:15px;

    font-weight:700;

}

.why-card p{

    color:#d6d6d6;

    line-height:1.8;

}

@media(max-width:768px){

    .why-us{

        padding:70px 0;

    }

    .why-card{

        padding:35px 25px;

    }

}

/*====================================
        RECENT PROJECTS
=====================================*/

.projects{

    padding:0 0 100px 0;

    background:var(--bg);

}

/* Card */

.project-card{

    background:#393F4C;

    border-radius:20px;

    overflow:hidden;

    transition:.45s;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    height:100%;

}

.project-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(217,30,46,.25);

}

/* Image */

.project-img{

    position:relative;

    height:260px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#4b4f5d;

    overflow:hidden;

}

.project-img img{

    width:90%;

    height:90%;

    object-fit:contain;

    transition:.6s;

}

.project-card:hover .project-img img{

    transform:scale(1.1);

}

/* Dark Overlay */

.project-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

/* Button */

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    background:#D91E2E;

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.project-btn:hover{

    background:#fff;

    color:#D91E2E;

}

.project-btn i{

    transition:.35s;

}

.project-btn:hover i{

    transform:translateX(5px);

}

/* Badge */

.project-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    z-index:2;

}

/* Content */

.project-content{

    padding:28px;

}

.project-content h4{

    color:#fff;

    font-size:26px;

    margin-bottom:12px;

    font-weight:700;

}

.project-content p{

    color:#d7d7d7;

    margin:0;

    display:flex;

    align-items:center;

    gap:10px;

}

.project-content i{

    color:#D91E2E;

}

/* Shine Animation */

.project-card{

    position:relative;

}

.project-card::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.12),

        transparent

    );

    transition:.8s;

    z-index:5;

}

.project-card:hover::before{

    left:130%;

}

/* Image Gradient */

.project-img::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.35),

        transparent

    );

    z-index:1;

}

.project-img img{

    position:relative;

    z-index:0;

}

/* Responsive */

@media(max-width:991px){

    .project-img{

        height:240px;

    }

    .project-content h4{

        font-size:22px;

    }

}

@media(max-width:768px){

    .projects{

        padding:70px 0;

    }

    .project-img{

        height:220px;

    }

    .project-content{

        padding:22px;

    }

}

/*====================================
        HOW IT WORKS
=====================================*/

.how-it-works{

    padding:0;

    background:var(--bg);

}

/* Left Image */

.process-image{

    position:relative;

    overflow:hidden;

    border-top-left-radius:20px;
    border-bottom-left-radius:20px;

    border-top-right-radius:170px;
    border-bottom-right-radius:170px;

    border-right:10px solid #D91E2E;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.process-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    transition:.6s;

}

.process-image:hover img{

    transform:scale(1.06);

}

/* Red Border Effect */

.process-image::before{

    content:"";

    position:absolute;

    right:-15px;

    top:-15px;

    width:100%;

    height:650px;

    border-top-right-radius:180px;

    border-bottom-right-radius:180px;

    border-right:8px solid #D91E2E;

    z-index:1;

}

.process-image img{

    position:relative;

    z-index:2;

}

/* Timeline */

.process-list{

    position:relative;

    padding-left:40px;

}

/* Vertical Line */

.process-list::before{

    content:"";

    position:absolute;

    left:34px;

    top:30px;

    width:3px;

    height:85%;

    background:rgba(217,30,46,.35);

}

/* Each Step */

.process-item{

    position:relative;

    display:flex;

    gap:30px;

    margin-bottom:45px;

    align-items:flex-start;

}

/* Number Circle */

.process-number{

    min-width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    position:relative;

    z-index:2;

    box-shadow:0 10px 25px rgba(217,30,46,.30);

    transition:.4s;

}

/* Card */

.process-content{

    flex:1;

    background:#393F4C;

    padding:30px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.process-content i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#D91E2E;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    margin-bottom:18px;

    transition:.4s;

}

.process-content h4{

    color:#fff;

    font-size:26px;

    margin-bottom:12px;

    font-weight:700;

}

.process-content p{

    color:#d7d7d7;

    line-height:1.8;

    margin:0;

}

/* Hover */

.process-item:hover .process-content{

    transform:translateX(12px);

    border-color:#D91E2E;

    box-shadow:0 20px 45px rgba(217,30,46,.20);

}

.process-item:hover .process-number{

    transform:scale(1.1) rotate(360deg);

}

.process-item:hover .process-content i{

    transform:rotateY(180deg);

    background:#8B0F1A;

}

/* Responsive */

@media(max-width:991px){

    .process-image{

        border-radius:20px;

    }

    .process-image::before{

        display:none;

    }

    .process-image img{

        height:420px;

    }

    .process-list{

        margin-top:50px;

        padding-left:0;

    }

    .process-list::before{

        left:34px;

    }

}

@media(max-width:768px){

    .how-it-works{

        padding:70px 0;

    }

    .process-item{

        gap:20px;

    }

    .process-number{

        min-width:60px;

        height:60px;

        font-size:18px;

    }

    .process-content{

        padding:22px;

    }

    .process-content h4{

        font-size:22px;

    }

    .process-content i{

        width:55px;

        height:55px;

        font-size:20px;

    }

}

/*====================================
        SERVICE AREA
=====================================*/

.service-area{

    padding:100px 0;

    background:#2E313D;

}

/* Left Card */

.service-info{

    background:#393F4C;

    padding:45px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.30);

    height:100%;

}

.service-info h3{

    color:#fff;

    font-size:36px;

    margin-bottom:20px;

    font-weight:700;

}

.service-info p{

    color:#d6d6d6;

    line-height:1.8;

}

/* Cities */

.service-cities{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin:35px 0;

}

.service-cities span{

    background:#2E313D;

    color:#fff;

    padding:12px 20px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    font-weight:500;

}

.service-cities span i{

    color:#D91E2E;

    margin-right:8px;

}

.service-cities span:hover{

    background:#D91E2E;

    transform:translateY(-4px);

    cursor:pointer;

}

.service-cities span:hover i{

    color:#fff;

}

/* Contact Details */

.location-details{

    margin-top:40px;

}

.detail-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.detail-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    flex-shrink:0;

}

.detail-box h5{

    color:#fff;

    margin-bottom:8px;

    font-size:20px;

}

.detail-box p{

    margin:0;

    color:#d6d6d6;

}

/* Button */

.location-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:20px;

    background:#D91E2E;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.location-btn:hover{

    background:#8B0F1A;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(217,30,46,.35);

}

.location-btn i{

    transition:.35s;

}

.location-btn:hover i{

    transform:translateX(6px);

}

/* Google Map */

.map-box{

    border-radius:22px;

    overflow:hidden;

    border:5px solid #D91E2E;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    transition:.4s;

}

.map-box:hover{

    transform:translateY(-8px);

}

.map-box iframe{

    display:block;

    width:100%;

}

/* Responsive */

@media(max-width:991px){

    .service-info{

        margin-bottom:40px;

    }

}

@media(max-width:768px){

    .service-area{

        padding:70px 0;

    }

    .service-info{

        padding:30px;

    }

    .service-info h3{

        font-size:30px;

    }

    .service-cities{

        gap:10px;

    }

    .service-cities span{

        font-size:14px;

        padding:10px 16px;

    }

    .detail-icon{

        width:52px;

        height:52px;

        font-size:18px;

    }

}

/*====================================
            FOOTER
=====================================*/

.footer{

    background:#252A35;

    padding:100px 0 30px;

}

/*==========================
    Left Side
===========================*/

.footer-info h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-info>p{

    color:#d6d6d6;

    line-height:1.8;

    margin-bottom:40px;

}

.footer-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.footer-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    transition:.4s;

}

.footer-item:hover .footer-icon{

    transform:rotate(360deg);

}

.footer-item h5{

    color:#fff;

    font-size:20px;

    margin-bottom:6px;

}

.footer-item p{

    color:#d6d6d6;

    margin:0;

    line-height:1.7;

}

/*==========================
      Contact Form
===========================*/

.footer-form{

    background:#393F4C;

    padding:45px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.footer-form h3{

    color:#fff;

    font-size:38px;

    margin-bottom:15px;

}

.footer-form p{

    color:#d6d6d6;

    margin-bottom:35px;

}

/* Inputs */

.footer-form .form-control,
.footer-form .form-select{

    background:#2E313D;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    height:55px;

    border-radius:12px;

    padding:0 18px;

    box-shadow:none;

    transition:.35s;

}

.footer-form textarea{

    height:auto !important;

    padding:18px;

}

.footer-form .form-control::placeholder{

    color:#bdbdbd;

}

.footer-form .form-select{

    color:#bdbdbd;

}

.footer-form .form-control:focus,
.footer-form .form-select:focus{

    border-color:#D91E2E;

    background:#2E313D;

    color:#fff;

    box-shadow:0 0 0 .2rem rgba(217,30,46,.15);

}

/* Select options */

.footer-form option{

    background:#2E313D;

    color:#fff;

}

/* Button */

.footer-form .send-btn{

    background:linear-gradient(135deg,#D91E2E,#8B0F1A);

    color:#fff;

    padding:15px 38px;

    border:none;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.footer-form .send-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(217,30,46,.35);

}

/*==========================
      Divider
===========================*/

.footer hr{

    margin:70px 0 25px;

    border-color:rgba(255,255,255,.08);

}

/*==========================
      Copyright
===========================*/

.copyright{

    text-align:center;

}

.copyright p{

    color:#bdbdbd;

    margin:0;

    font-size:15px;

}

/*==========================
      Responsive
===========================*/

@media(max-width:991px){

    .footer{

        padding:80px 0 25px;

    }

    .footer-info{

        margin-bottom:40px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-info h2{

        font-size:38px;

    }

    .footer-form{

        padding:30px;

    }

    .footer-form h3{

        font-size:30px;

    }

    .footer-icon{

        width:52px;

        height:52px;

        min-width:52px;

        font-size:18px;

    }

    .footer-social{

        justify-content:center;

    }

}

.map-box{
    overflow:hidden;
    border-radius:20px;
    border:3px solid #ff5722;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

#map{
    width:100%;
    height:520px;
}

.location-list span{
    cursor: pointer;
    transition: .3s;
}

.location-list span:hover{
    background: #ff5722;
    color: #fff;
}

.location-list span:hover i{
    color: #fff;
}