/* =========================
   PREMIUM HEADER
========================= */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    box-shadow:
    0 5px 25px rgba(0,0,0,.08);

    transition:.4s;
}

/* Navigation */

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;
}

/* Logo */

.logo{

    font-size:30px;

    font-weight:700;

    text-decoration:none;

    color:#0d1b2a;
}

.logo span{

    color:#ff6b00;
}

/* Menu */

.navbar{

    display:flex;

    align-items:center;

    gap:35px;
}

.navbar a{

    text-decoration:none;

    color:#0d1b2a;

    font-weight:600;

    position:relative;

    transition:.3s;
}

/* Hover Underline */

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#ff6b00;

    transition:.4s;
}

.navbar a:hover{

    color:#ff6b00;
}

.navbar a:hover::after{

    width:100%;
}

/* CTA Button */

.nav-btn{

    text-decoration:none;

    background:
    linear-gradient(
    135deg,
    #ff6b00,
    #ff8533);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(255,107,0,.3);
}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(255,107,0,.45);
}

/* Mobile Toggle */

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:#ff6b00;
}

/* Sticky Scroll Effect */

.header.scrolled{

    background:#fff;

    padding:0;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;
    }

    .nav-btn{

        display:none;
    }

    .navbar{

        position:absolute;

        top:100%;

        left:-100%;

        width:100%;

        background:#fff;

        flex-direction:column;

        gap:25px;

        padding:30px;

        transition:.4s;

        box-shadow:
        0 15px 30px rgba(0,0,0,.08);
    }

    .navbar.active{

        left:0;
    }

}

/* ==========================
   HERO SECTION
========================== */

.hero{

    position:relative;

    min-height:130vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background-image:url('https://images.pexels.com/photos/4246120/pexels-photo-4246120.jpeg');

    background-size:cover;

    background-position:center;
}

/* Overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.70));
}

/* Layout */

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

    width:100%;
}

/* Content */

.hero-content{

    color:#fff;
}

.hero-tag{

    display:inline-block;

    background:
    rgba(255,255,255,.15);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);
}

.hero-content h1{

    font-size:65px;

    line-height:1.2;

    margin-bottom:25px;
}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#ddd;

    max-width:650px;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;
}

.hero-btn{

    background:#ff6b00;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;
}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#ff7d1a;
}

.hero-btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.4s;
}

.hero-btn-outline:hover{

    background:#fff;

    color:#000;
}

/* Stats */

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:50px;
}

.hero-stats h3{

    color:#ff6b00;

    font-size:34px;
}

.hero-stats span{

    color:#ddd;
}

/* Form */

.form-box{

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    padding:35px;

    border-radius:25px;

    border:
    1px solid rgba(255,255,255,.2);

    box-shadow:
    0 15px 40px rgba(0,0,0,.25);
}

.form-box h2{

    color:#fff;

    margin-bottom:10px;
}

.form-box p{

    color:#ddd;

    margin-bottom:25px;
}

.form-box input,
.form-box textarea{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:none;

    border-radius:10px;

    outline:none;
}

.form-box button{

    width:100%;

    border:none;

    background:#ff6b00;

    color:#fff;

    padding:16px;

    border-radius:10px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;
}

.form-box button:hover{

    background:#ff7d1a;
}

/* Mobile */

@media(max-width:992px){

    .hero-grid{

        grid-template-columns:1fr;
    }

    .hero-content{

        text-align:center;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;
    }

}


/* =========================
   OUR FEATURES SECTION
========================= */

.features-section{

    padding:20px 0;

    background:#f5f5f5;
}

/* Heading */

.section-heading{

    text-align:center;

    margin-bottom:50px;
}

.section-heading h2{

    font-size:28px;

    font-weight:700;

    color:#6f9fa8;

    text-transform:uppercase;

    letter-spacing:2px;
}

/* Grid */

.features-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;
}

/* Card */

.feature-card{

    background:#fff;

    padding:35px 20px;

    text-align:center;

    border-radius:12px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

    transition:.4s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;
}

/* Top Border Animation */

.feature-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#ff6b00;

    transition:.4s;
}

.feature-card:hover::before{

    width:100%;
}

/* Hover */

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

/* Icon */

.feature-icon{

    font-size:55px;

    margin-bottom:20px;

    color:#6f9fa8;

    transition:.4s;
}

.feature-card:hover .feature-icon{

    transform:scale(1.2) rotate(10deg);

    color:#ff6b00;
}

/* Title */

.feature-card h3{

    font-size:22px;

    color:#333;

    line-height:1.4;

    transition:.3s;
}

.feature-card:hover h3{

    color:#ff6b00;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .features-grid{

        grid-template-columns:repeat(3,1fr);
    }

}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{

    padding:10px 0;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );
}

/* Layout */

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

/* Image */

.about-image{

    position:relative;

    overflow:hidden;

    border-radius:25px;
}

.about-image img{

    width:100%;

    display:block;

    border-radius:25px;

    transition:.6s;
}

.about-image:hover img{

    transform:scale(1.08);
}

/* Experience Badge */

.experience-badge{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#ff6b00;

    color:#fff;

    padding:20px 25px;

    border-radius:15px;

    text-align:center;

    box-shadow:
    0 15px 35px rgba(255,107,0,.35);
}

.experience-badge h3{

    font-size:36px;

    margin-bottom:5px;
}

/* Content */

.about-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#fff3ea;

    color:#ff6b00;

    font-weight:600;

    margin-bottom:20px;
}

.about-content h2{

    font-size:48px;

    color:#0d1b2a;

    margin-bottom:25px;

    line-height:1.3;
}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;
}

/* Features */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;
}

.feature-item{

    background:#fff;

    padding:15px;

    border-radius:12px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.06);

    transition:.3s;
}

.feature-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);
}

.feature-item span{

    color:#ff6b00;

    font-weight:bold;

    margin-right:8px;
}

/* Button */

.about-btn{

    display:inline-block;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #ff6b00,
        #ff8533
    );

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(255,107,0,.3);
}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(255,107,0,.45);
}

/* ====================================
   SERVICES SECTION
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* SECTION */

.services-section{

    padding:100px 0;

    background:
    linear-gradient(
    135deg,
    #f8fafc,
    #eef4ff);

    overflow:hidden;
}

/* HEADING */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    color:#ff6b00;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;
}

.section-title h2{

    font-size:42px;

    color:#0d1b2a;

    margin-top:10px;
}

.section-title p{

    color:#666;

    max-width:700px;

    margin:15px auto 0;
}

/* SLIDER */

.services-slider{

    width:100%;

    overflow:hidden;
	
}

/* TRACK */

.services-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:scrollLeft 40s linear infinite;
}

/* PAUSE */

.services-slider:hover .services-track{

    animation-play-state:paused;
}

/* CARD */

.service-card{

    width:350px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    flex-shrink:0;

    position:relative;

    transition:.5s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

/* HOVER */

.service-card:hover{

    transform:translateY(-12px);

    border:2px solid #ff6b00;

    box-shadow:
    0 25px 50px rgba(0,0,0,.15);
}

/* IMAGE */

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.6s;
}

.service-card:hover img{

    transform:scale(1.12);
}

/* CONTENT */

.service-content{

    padding:25px;
}

.service-content h3{

    color:#ff6b00;

    margin-bottom:12px;

    transition:.4s;
}

.service-card:hover h3{

    color:#0d1b2a;
}

.service-content p{

    color:#666;

    line-height:1.8;
}

/* SHINE EFFECT */

.service-card::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:200%;

    height:200%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent);

    transform:rotate(25deg);

    transition:.8s;
}

.service-card:hover::before{

    top:100%;

    left:100%;
}

/* AUTO SCROLL */

@keyframes scrollLeft{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .service-card{

        width:280px;
    }

    .section-title h2{

        font-size:30px;
    }

}

/* =========================
   HOW IT WORKS SECTION
========================= */

.work-process{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fafc,#eef4ff);
}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
    position:relative;
}

/* Connecting Line */

.process-wrapper::before{
    content:'';
    position:absolute;
    top:60px;
    left:10%;
    width:80%;
    height:4px;
    background:linear-gradient(to right,#ff6b00,#ff9f43);
    z-index:1;
}

/* Card */

.process-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    z-index:2;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

/* Hover Effect */

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

/* Step Number */

.step-number{
    position:absolute;
    top:-18px;
    right:20px;

    background:#ff6b00;
    color:#fff;

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;
}

/* Icon */

.step-icon{
    width:90px;
    height:90px;

    margin:auto;

    background:#fff4ec;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:40px;

    color:#ff6b00;

    transition:.4s;
}

.process-card:hover .step-icon{
    transform:rotateY(180deg);
    background:#ff6b00;
    color:#fff;
}

/* Heading */

.process-card h3{
    margin:20px 0 10px;
    color:#0d1b2a;
}

/* Text */

.process-card p{
    color:#666;
    line-height:1.7;
}

/* Mobile */

@media(max-width:992px){

    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .process-wrapper::before{
        display:none;
    }
}

@media(max-width:768px){

    .process-wrapper{
        grid-template-columns:1fr;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fafc,#eef4ff);
    overflow:hidden;
}

/* Slider */

.testimonial-slider{
    overflow:hidden;
    width:100%;
    margin-top:60px;
}

/* Track */

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:testimonialScroll 45s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

/* Card */

.testimonial-card{

    width:380px;

    background:#fff;

    padding:35px;

    border-radius:25px;

    flex-shrink:0;

    position:relative;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

/* Hover */

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);

    border:2px solid #ff6b00;
}

/* Quote Icon */

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:10px;
    right:25px;

    font-size:70px;

    color:#ff6b00;

    opacity:.15;
}

/* Stars */

.stars{

    color:#ffb400;

    font-size:22px;

    margin-bottom:20px;
}

/* Text */

.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;
}

/* Name */

.testimonial-card h4{

    color:#0d1b2a;

    margin-bottom:5px;
}

/* City */

.testimonial-card span{

    color:#ff6b00;

    font-size:14px;

    font-weight:600;
}

/* Shine Effect */

.testimonial-card::after{

    content:'';

    position:absolute;

    top:-100%;
    left:-100%;

    width:200%;
    height:200%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform:rotate(25deg);

    transition:.8s;
}

.testimonial-card:hover::after{

    top:100%;
    left:100%;
}

/* Auto Scroll */

@keyframes testimonialScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{

        width:300px;
    }

}
/* ===================================
   GALLERY SECTION
=================================== */

.gallery-section{

    padding:100px 0;

    background:#ffffff;
}

/* Grid Layout */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:60px;
}

/* Gallery Item */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    height:300px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

/* Hover Lift */

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

/* Image */

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;
}

/* Zoom Effect */

.gallery-item:hover img{

    transform:scale(1.15);
}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.2)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;

    opacity:0;

    transition:.4s;
}

.gallery-item:hover .gallery-overlay{

    opacity:1;
}

/* Text */

.gallery-overlay h3{

    color:#fff;

    margin-bottom:8px;

    font-size:24px;
}

.gallery-overlay p{

    color:#ddd;
}

/* Orange Border */

.gallery-item::before{

    content:'';

    position:absolute;

    inset:0;

    border:3px solid #ff6b00;

    opacity:0;

    transition:.4s;

    z-index:2;
}

.gallery-item:hover::before{

    opacity:1;
}

/* Mobile */

@media(max-width:768px){

    .gallery-item{

        height:250px;
    }

}
/* ===================================
   FAQ SECTION
=================================== */

.faq-section{

    padding:100px 0;

    background:
    linear-gradient(
    135deg,
    #f8fafc,
    #eef4ff);
}

/* Layout */

.faq-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:60px;
}

/* FAQ Item */

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

    transition:.3s;
}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

/* Question */

.faq-question{

    width:100%;

    padding:20px 25px;

    border:none;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    color:#0d1b2a;
}

.faq-question span{

    color:#ff6b00;

    font-size:24px;

    font-weight:bold;
}

/* Answer */

.faq-answer{

    display:none;

    padding:0 25px 25px;

    color:#666;

    line-height:1.8;
}

/* Active */

.faq-item.active .faq-answer{

    display:block;
}

.faq-item.active .faq-question{

    color:#ff6b00;
}

/* Right Side */

.faq-right{

    position:relative;
}

.faq-right img{

    width:100%;

    border-radius:25px;

    display:block;

    transition:.5s;
}

.faq-right:hover img{

    transform:scale(1.03);
}

/* Experience Box */

.experience-box{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#ff6b00;

    color:#fff;

    padding:20px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(255,107,0,.35);
}

.experience-box h3{

    font-size:36px;

    margin-bottom:5px;
}

/* Mobile */

@media(max-width:992px){

    .faq-wrapper{

        grid-template-columns:1fr;
    }

    .faq-right{

        order:-1;
    }
}
/* ===================================
   CTA SECTION
=================================== */

.cta-section{

    position:relative;

    padding:120px 20px;

    background-image:url('https://images.pexels.com/photos/4246120/pexels-photo-4246120.jpeg');

    background-size:cover;

    background-position:center;

    text-align:center;

    overflow:hidden;
}

/* Dark Overlay */

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(13,27,42,.85),
        rgba(13,27,42,.85)
    );
}

/* Content */

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;
}

/* Small Heading */

.cta-content span{

    color:#ff6b00;

    font-size:18px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* Main Heading */

.cta-content h2{

    color:#fff;

    font-size:52px;

    line-height:1.3;

    margin:20px 0;
}

/* Paragraph */

.cta-content p{

    color:#d7d7d7;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

/* Button Area */

.cta-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* Main Button */

.cta-btn{

    text-decoration:none;

    background:#ff6b00;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(255,107,0,.35);
}

.cta-btn:hover{

    transform:translateY(-5px);

    background:#ff7f22;

    box-shadow:
    0 15px 35px rgba(255,107,0,.45);
}

/* WhatsApp Button */

.whatsapp-btn{

    text-decoration:none;

    background:#25d366;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(37,211,102,.35);
}

.whatsapp-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(37,211,102,.45);
}

/* Floating Animation */

@keyframes floatCTA{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

.cta-content{

    animation:floatCTA 4s ease-in-out infinite;
}

/* Mobile */

@media(max-width:768px){

    .cta-content h2{

        font-size:34px;
    }

    .cta-content p{

        font-size:16px;
    }

    .cta-btn,
    .whatsapp-btn{

        width:100%;
        max-width:300px;
    }

}

/* ===================================
   FOOTER SECTION
=================================== */

.footer{

    background:
    linear-gradient(
        135deg,
        #0d1b2a,
        #1b263b
    );

    color:#fff;

    padding:80px 0 0;
}

/* Grid */

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;
}

/* Logo */

.footer-logo{

    color:#ff6b00;

    margin-bottom:20px;

    font-size:30px;
}

/* Paragraph */

.footer-col p{

    color:#d6d6d6;

    line-height:1.8;
}

/* Heading */

.footer-col h3{

    margin-bottom:25px;

    color:#fff;

    position:relative;
}

.footer-col h3::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-10px;

    width:50px;

    height:3px;

    background:#ff6b00;
}

/* List */

.footer-col ul{

    list-style:none;
}

.footer-col ul li{

    margin-bottom:12px;
}

/* Links */

.footer-col ul li a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.3s;
}

.footer-col ul li a:hover{

    color:#ff6b00;

    padding-left:8px;
}

/* Social */

.social-icons{

    margin-top:25px;
}

.social-icons a{

    display:inline-flex;

    width:45px;

    height:45px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    margin-right:10px;

    transition:.4s;
}

.social-icons a:hover{

    background:#ff6b00;

    transform:translateY(-5px);
}

/* Bottom */

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.1);
}

.footer-bottom p{

    color:#bdbdbd;
}

/* Mobile */

@media(max-width:768px){

    .footer{

        text-align:center;
    }

    .footer-col h3::after{

        left:50%;

        transform:translateX(-50%);
    }

}
/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #25d366,
        #128c7e
    );

    color:#fff;

    font-size:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(37,211,102,.45);

    transition:.4s ease;
}

/* Hover */

.whatsapp:hover{

    transform:
    translateY(-8px)
    scale(1.1);

    box-shadow:
    0 15px 40px rgba(37,211,102,.6);
}

/* Pulse Animation */

.whatsapp::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    background:rgba(37,211,102,.4);

    animation:pulse 2s infinite;

    z-index:-1;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

/* Mobile */

@media(max-width:768px){

    .whatsapp{

        width:58px;

        height:58px;

        font-size:30px;

        right:15px;

        bottom:15px;
    }

}