html,
body{
    width:100%;
    overflow-x:hidden;
}

img,
svg,
video{
    max-width:100%;
    height:auto;
    display:block;
}

*{
    min-width:0;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

body.menu-open{
    overflow: hidden;

    overflow-x:hidden;
}





/* ================= HEADER ================= */

.header{
    width:100%;
    min-height:110px;
    background:#fff;
    padding:0 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    z-index:99999;
}

/* TEXT LOGO */

/* .logo a{
    text-decoration: none;
    font-size: 34px;
    font-weight: 800;
    color: #111;

    font-family: 'Poppins', sans-serif;

    letter-spacing: -1px;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: .3s ease;
}

.logo a span{
    color: #0f8f6f;
    position: relative;
} */

/* Underline Effect */

/* .logo a span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 3px;

    background: #c4f226;

    border-radius: 20px;
}

.logo a:hover{
    transform: scale(1.02);
} */


/* ================= IMAGE LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    height:100%;
}

.logo a{
    display:flex;
    align-items:center;
    height:100%;
}

.logo img{
    max-height:70px;   /* Desktop */
    width:auto;
    max-width:220px;
    object-fit:contain;
    display:block;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.03);
}










/* NAVIGATION */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    flex-wrap:wrap;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active{
    color:#0f8f6f;
}

/* DROPDOWN */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;

    width:240px;
    background:#fff;

    border-radius:15px;
    padding:15px 0;

    list-style:none;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.3s;

    z-index:99999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:14px 25px;
    font-size:16px;
}

.dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#0f8f6f;
}

/* CONTACT BUTTON */

.contact-btn{
    text-decoration:none;
    background:#c4f226;
    color:#111;

    padding:12px 14px 12px 28px;

    border-radius:60px;

    display:flex;
    align-items:center;
    gap:18px;

    font-size:18px;
    font-weight:600;
}

.contact-btn span{
    width:48px;
    height:48px;
    background:#fff;

    border-radius:50%;

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

/* HAMBURGER */

.hamburger{
    display:none;
    font-size:30px;
    cursor:pointer;
    z-index:1000000;
}

/* ================= TABLET ================= */

@media(max-width:1200px){

    .header{
        min-height:100px;
        padding:0 25px;
    }

    /* .logo a{
        font-size:28px;
    } */

    .logo img{
        max-height:60px;
        max-width:190px;
    }


    .nav-menu{
        gap:20px;
    }

    .nav-menu li a{
        font-size:15px;
    }

    .contact-btn{
        font-size:15px;
        padding:10px 12px 10px 18px;
    }

    .contact-btn span{
        width:42px;
        height:42px;
    }
}


/* ================= MOBILE ================= */

@media(max-width:768px){

    .header{
        height:85px;
        padding:0 15px;
    }

    /* .logo a{
        font-size:24px;
    } */

    .logo img{
        max-height:50px;
        max-width:160px;
    }

    .contact-btn{
        display:none;
    }

    .hamburger{
        display:block;
        font-size:28px;
    }

    .navbar{
        position:fixed;
        top:85px;
        left:-100%;
       width:100vw;
        height:calc(100vh - 85px);
        background:#fff;
        padding:20px;
        overflow-y:auto;
        transition:.4s ease;
        z-index:999999;
    }

    .navbar.active{
        left:0;
    }

    .nav-menu{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .nav-menu li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-menu li a{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:18px 0;
        font-size:16px;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        margin:0;
        padding:0;
        border-radius:0;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        background:transparent;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li{
        border:none;
    }

    .dropdown-menu li a{
        padding:12px 20px;
        font-size:15px;
        color:#666;
    }

}


/* ================= SMALL PHONES ================= */

@media(max-width:480px){

    .header{
        height:80px;
        padding:0 12px;
    }

    /* .logo a{
        font-size:20px;
    } */

       .logo img{
        max-height:42px;
        max-width:140px;
    }

    .hamburger{
        font-size:24px;
    }

    .navbar{
        top:80px;
        height:calc(100vh - 80px);
    }

}


/* hero */

/* hero */

/* ================= SERVICES HERO ================= */

.services-hero{
    width:100%;
    min-height:100vh;
    padding:120px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    background:#f8faf9;
    overflow:hidden;
}

/* LEFT */

.services-left{
    width:50%;
    animation:fadeLeft 1s ease;
}

.services-tag{
    display:inline-block;
    padding:12px 22px;
    background:#e8fff0;
    color:#0f8f6f;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:30px;
}

.services-title{
    font-size:78px;
    line-height:1.05;
    color:#111;
    margin-bottom:30px;
}

.services-title span{
    color:#0f8f6f;
    display:block;
}

.services-description{
    font-size:20px;
    line-height:1.9;
    color:#666;
    max-width:650px;
    margin-bottom:40px;
}

/* BUTTONS */

.services-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.primary-service-btn{
    text-decoration:none;
    background:#c4f226;
    color:#111;

    padding:16px 18px 16px 35px;

    border-radius:60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    min-height:60px;

    font-size:18px;
    font-weight:700;

    transition:.4s ease;
}

.primary-service-btn span{
    width:52px;
    height:52px;

    background:#111;
    color:#fff;

    border-radius:50%;

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

    transition:.4s ease;
}

.primary-service-btn:hover{
    transform:translateY(-5px);
}

.primary-service-btn:hover span{
    transform:rotate(-45deg);
}

/* SECONDARY BUTTON */

.secondary-service-btn{
    text-decoration:none;
    background:#fff;
    color:#111;

    border:2px solid #ddd;

    padding:16px 35px;

    border-radius:60px;

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

    min-height:60px;

    font-size:18px;
    font-weight:600;

    transition:.4s ease;
}

.secondary-service-btn:hover{
    background:#0f8f6f;
    color:#fff;
    border-color:#0f8f6f;
    transform:translateY(-5px);
}

/* RIGHT */

.services-right{
    width:50%;
    position:relative;
    animation:fadeRight 1s ease;
}

.services-image{
    width:100%;
    display:block;
    border-radius:35px;
    object-fit:cover;
}

.service-card{
    position:absolute;
    background:#fff;
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    animation:floatCard 4s infinite ease-in-out;
}

.service-card h3{
    font-size:42px;
    color:#0f8f6f;
    margin-bottom:5px;
}

.service-card p{
    color:#666;
    font-size:16px;
}

/* CARD POSITIONS */

.card1{
    top:30px;
    left:-40px;
}

.card2{
    right:-30px;
    top:45%;
}

.card3{
    bottom:30px;
    left:-20px;
}

/* ANIMATION */

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* ================= 1200px ================= */

@media(max-width:1200px){

    .services-title{
        font-size:62px;
    }

    .services-description{
        font-size:18px;
    }

    .card1{
        left:-20px;
    }

    .card2{
        right:-15px;
    }

}

/* ================= 992px ================= */

@media(max-width:992px){

    .services-hero{
        flex-direction:column-reverse;
        padding:100px 30px;
        gap:50px;
    }

    .services-left,
    .services-right{
        width:100%;
    }

    .services-title{
        font-size:54px;
    }

    .service-card{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        margin-top:20px;
    }

}

/* ================= 768px ================= */

@media(max-width:768px){

    .services-hero{
        padding:80px 20px;
    }

    .services-title{
        font-size:42px;
    }

    .services-description{
        font-size:16px;
    }

    .services-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-service-btn,
    .secondary-service-btn{
        width:100%;
    }

}

/* ================= 480px ================= */

@media(max-width:480px){

    .services-title{
        font-size:34px;
    }

    .services-tag{
        font-size:12px;
        padding:10px 18px;
    }

    .primary-service-btn,
    .secondary-service-btn{
        font-size:16px;
        min-height:56px;
    }

    .primary-service-btn span{
        width:46px;
        height:46px;
    }

    .service-card{
        padding:20px;
    }

    .service-card h3{
        font-size:32px;
    }

}

/* 2nd section  */

/* ================= RESUME CHECK ================= */

.resume-section{
    width:100%;
    padding:120px 7%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;

    overflow:hidden;
}

/* LEFT */

.resume-left{
    width:50%;
}

.resume-image-wrapper{
    position:relative;
}

.resume-image{
    width:100%;
    display:block;
    border-radius:35px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

/* RIGHT */

.resume-right{
    width:50%;
}

.resume-tag{
    display:inline-block;
    padding:10px 22px;
    background:#e8fff0;
    color:#0f8f6f;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:25px;
}

.resume-title{
    font-size:64px;
    line-height:1.1;
    color:#111;
    margin-bottom:30px;
}

.resume-title span{
    display:block;
    color:#0f8f6f;
}

.resume-description{
    font-size:19px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.resume-features{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.resume-feature{
    display:flex;
    align-items:center;
    gap:15px;

    font-size:18px;
    color:#333;
}

.resume-feature i{
    color:#0f8f6f;
    font-size:20px;
}

.resume-btn{
    text-decoration:none;
    background:#c4f226;
    color:#111;

    padding:16px 18px 16px 35px;
    border-radius:60px;

    display:inline-flex;
    align-items:center;
    gap:18px;

    font-size:18px;
    font-weight:700;

    transition:.4s;
}

.resume-btn span{
    width:52px;
    height:52px;

    background:#111;
    color:#fff;

    border-radius:50%;

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

.resume-btn:hover{
    transform:translateY(-5px);
}

/* SCROLL ANIMATION */

.reveal-left,
.reveal-right{
    opacity:0;
    transition:1s ease;
}

.reveal-left{
    transform:translateX(-100px);
}

.reveal-right{
    transform:translateX(100px);
}

.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

/* RESPONSIVE */

@media(max-width:992px){

    .resume-section{
        flex-direction:column;
        gap:50px;
        padding:100px 30px;
    }

    .resume-left,
    .resume-right{
        width:100%;
    }

    .resume-title{
        font-size:52px;
    }

}

@media(max-width:768px){

    .resume-section{
        padding:80px 20px;
    }

    .resume-title{
        font-size:40px;
    }

    .resume-description{
        font-size:16px;
    }

}

@media(max-width:480px){

    .resume-title{
        font-size:32px;
    }

    .resume-feature{
        font-size:16px;
    }

}

/* 3rd section */

/* ================= APPLICATION TRACKING ================= */

.tracking-section{
    width:100%;
    padding:120px 7%;
    background:#f8faf9;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;

    overflow:hidden;
}

/* LEFT */

.tracking-left{
    width:50%;
}

.tracking-tag{
    display:inline-block;
    padding:10px 22px;
    background:#e8fff0;
    color:#0f8f6f;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:25px;
}

.tracking-title{
    font-size:64px;
    line-height:1.1;
    color:#111;
    margin-bottom:30px;
}

.tracking-title span{
    display:block;
    color:#0f8f6f;
}

.tracking-description{
    font-size:19px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.tracking-features{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:40px;
}

.tracking-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    color:#333;
}

.tracking-item i{
    color:#0f8f6f;
    font-size:20px;
}

/* BUTTON */

.tracking-btn{
    text-decoration:none;
    background:#c4f226;
    color:#111;

    padding:16px 18px 16px 35px;
    border-radius:60px;

    display:inline-flex;
    align-items:center;
    gap:18px;

    font-size:18px;
    font-weight:700;

    transition:.4s;
}

.tracking-btn span{
    width:52px;
    height:52px;

    background:#111;
    color:#fff;

    border-radius:50%;

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

.tracking-btn:hover{
    transform:translateY(-5px);
}

/* RIGHT */

.tracking-right{
    width:50%;
    position:relative;
}

.tracking-image{
    width:100%;
    display:block;
    border-radius:35px;
    object-fit:cover;
}

.tracking-card{
    position:absolute;
    background:#fff;
    padding:22px 28px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

    animation:floatTracking 4s infinite ease-in-out;
}

.tracking-card h3{
    font-size:40px;
    color:#0f8f6f;
}

.tracking-card p{
    color:#666;
}

/* CARD POSITIONS */

.card-track-1{
    top:30px;
    left:-40px;
}

.card-track-2{
    top:45%;
    right:-30px;
}

.card-track-3{
    bottom:30px;
    left:-20px;
}

/* ANIMATION */

.tracking-left-animation{
    opacity:0;
    transform:translateX(-100px);
    transition:1s ease;
}

.tracking-right-animation{
    opacity:0;
    transform:translateX(100px);
    transition:1s ease;
}

.tracking-left-animation.show,
.tracking-right-animation.show{
    opacity:1;
    transform:translateX(0);
}

@keyframes floatTracking{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .tracking-section{
        flex-direction:column;
        padding:100px 30px;
    }

    .tracking-left,
    .tracking-right{
        width:100%;
    }

    .tracking-title{
        font-size:50px;
    }

    .tracking-card{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        margin-top:20px;
    }

}

@media(max-width:768px){

    .tracking-section{
        padding:80px 20px;
    }

    .tracking-title{
        font-size:38px;
    }

    .tracking-description{
        font-size:16px;
    }

}

@media(max-width:480px){

    .tracking-title{
        font-size:30px;
    }

    .tracking-item{
        font-size:16px;
    }

}

/* 4th section */

/* ================= INCLUDED PACKAGE ================= */

.package-section{
    width:100%;
    padding:120px 7%;
    background:#fff;
    overflow:hidden;
}

.package-header{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.package-tag{
    display:inline-block;
    padding:12px 24px;
    background:#e8fff0;
    color:#0f8f6f;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
}

.package-title{
    font-size:64px;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
}

.package-title span{
    display:block;
    color:#0f8f6f;
}

.package-description{
    font-size:19px;
    line-height:1.9;
    color:#666;
}

/* GRID */

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    background:#fff;
    padding:40px 35px;
    border-radius:30px;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-icon{
    width:70px;
    height:70px;
    background:#e8fff0;
    color:#0f8f6f;

    border-radius:20px;

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

    font-size:28px;

    margin-bottom:25px;
}

.package-card h3{
    font-size:24px;
    color:#111;
    margin-bottom:15px;
}

.package-card p{
    color:#666;
    line-height:1.8;
}

/* BOTTOM */

.package-bottom{
    margin-top:70px;
    text-align:center;
}

.package-bottom p{
    font-size:22px;
    color:#555;
    margin-bottom:35px;
}

.package-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;

    padding:18px 18px 18px 35px;

    background:#c4f226;
    color:#111;

    text-decoration:none;

    border-radius:60px;

    font-size:18px;
    font-weight:700;

    transition:.4s;
}

.package-btn span{
    width:52px;
    height:52px;

    background:#111;
    color:#fff;

    border-radius:50%;

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

.package-btn:hover{
    transform:translateY(-5px);
}

/* ANIMATIONS */

.package-top-animation,
.package-animation,
.package-bottom-animation{
    opacity:0;
    transform:translateY(80px);
    transition:1s ease;
}

.package-top-animation.show,
.package-animation.show,
.package-bottom-animation.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .package-section{
        padding:90px 20px;
    }

    .package-title{
        font-size:42px;
    }

    .package-description{
        font-size:16px;
    }

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

    .package-bottom p{
        font-size:18px;
    }

}

@media(max-width:480px){

    .package-title{
        font-size:32px;
    }

    .package-card{
        padding:30px 25px;
    }

    .package-card h3{
        font-size:22px;
    }

}



/* ===== BASE ===== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* ↑ z-index bada kiya */
}

/* BUTTON */
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CHAT BOX ===== */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  color: #fff;
}

.chat-header span {
  cursor: pointer;
  font-size: 18px;
  color: #ef4444;
  transition: 0.3s;
}

.chat-header span:hover {
  color: #dc2626;
  transform: scale(1.2);
}

/* TEXT */
.chat-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin: 10px 0 15px;
}

/* OPTIONS */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chat-item:hover {
  transform: translateX(6px);
}

/* CALL BUTTON DEFAULT GREEN */
.chat-item:nth-child(1) {
  background: #22c55e;
}

/* COLORS */
.chat-item:nth-child(2):hover {
  background: #ea4335;
}

.chat-item:nth-child(3):hover {
  background: #25d366;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SCROLL BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 95px; /* chat se proper gap */
  z-index: 900; /* chat ke niche rakha */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  border: none;
  cursor: pointer;

  opacity: 0.85;
  transition: 0.3s;
}

/* HOVER */
#topBtn:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* 🔥 IMPORTANT FIX → CONTENT COVER NA HO */
body.scrolled-bottom #topBtn {
  bottom: 120px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {

  .chat-box {
    width: 90vw;
    right: 5%;
    bottom: 90px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  /* 🔥 TOP BUTTON → CHAT KE UPAR STACK */
  #topBtn {
    right: 20px;      /* chat ke saath align */
    bottom: 95px;     /* chat ke upar */
    width: 42px;
    height: 42px;
  }

  /* 🔥 FOOTER KE PASS AUR UPAR SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 140px;
  }
}

@media (max-width: 480px) {

  .chat-box {
    width: 92vw;
    right: 4%;
    padding: 15px;
  }

  .chat-item {
    padding: 10px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  /* 🔥 TOP BUTTON CHAT KE UPAR */
  #topBtn {
    right: 20px;     /* same alignment as chat */
    bottom: 85px;    /* chat ke upar */
    width: 38px;
    height: 38px;
  }

  /* 🔥 FOOTER KE PASS SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 130px;
  }
}



/* last section footer */

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

.footer{
    background:linear-gradient(135deg,#002f2a,#00443c,#002f2a);
    padding:90px 7% 30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Animated Background */

.footer::before,
.footer::after{
    content:'';
    position:absolute;
    border-radius:50%;
    background:rgba(196,242,38,.05);
    animation:floatShape 12s infinite alternate ease-in-out;
}

.footer::before{
    width:500px;
    height:500px;
    top:-250px;
    left:-150px;
}

.footer::after{
    width:600px;
    height:600px;
    bottom:-300px;
    right:-200px;
}

@keyframes floatShape{
    from{
        transform:translateY(0px);
    }
    to{
        transform:translateY(50px);
    }
}

/* Top Area */

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:50px;
    position:relative;
    z-index:2;
    flex-wrap:wrap;
}

.footer-newsletter-text h2{
    font-size:64px;
    color:#c4f226;
    line-height:1.1;
}

.newsletter-form{
    display:flex;
    gap:15px;
}

.newsletter-form input{
    width:320px;
    height:65px;
    border:none;
    outline:none;
    padding:0 25px;
    border-radius:50px;
    font-size:18px;
}

.newsletter-form button{
    height:65px;
    padding:0 35px;
    border:none;
    border-radius:50px;
    background:#c4f226;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    transform:translateY(-3px);
}

.footer-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.1);
    margin:50px 0;
}

/* Grid */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    position:relative;
    z-index:2;
}

.footer-col h3{
    font-size:32px;
    margin-bottom:30px;
}

.footer-col p{
    color:#c5d0cc;
    line-height:1.9;
    margin-bottom:40px;
}

.footer-logo{
    font-size:42px;
    font-weight:700;
}

.footer-logo span{
    color:#c4f226;
}

.footer-col a{
    display:block;
    color:#c5d0cc;
    text-decoration:none;
    margin-bottom:18px;
    transition:.3s;
}

.footer-col a:hover{
    color:#c4f226;
    transform:translateX(8px);
}

/* Contact */

.footer-contact{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    margin-top:70px;
    padding:35px 0;

    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);

    position:relative;
    z-index:2;

    flex-wrap:wrap;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#d2ddd8;
}

.contact-item i{
    color:#c4f226;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    color:#c5d0cc;
    position:relative;
    z-index:2;
}

/* responsive */

@media(max-width:1100px){

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

    .footer-contact{
        flex-direction:column;
        gap:20px;
    }

}

@media(max-width:992px){

    .newsletter-form{
        width:100%;
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }

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

}




@media(max-width:768px){

    .footer{
        padding:70px 20px 30px;
    }

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

    .footer-newsletter-text h2{
        font-size:42px;
    }

    .newsletter-form{
        width:100%;
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }

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

    .footer-logo{
        font-size:34px;
    }

    .footer-contact{
        margin-top:50px;
        padding:25px 0;
    }

    .contact-item{
        width:100%;
        font-size:15px;
        word-break:break-word;
    }


}
@media(max-width:480px){

    .footer-contact{
        gap:20px;
    }

    .contact-item{
        font-size:14px;
        line-height:1.6;
    }

}

 /* footer phones icons link   */

.contact-link{

    color:#d2ddd8;

    text-decoration:none;

    font-weight:500;

    transition:.3s ease;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.contact-link:hover{

    color:#c4f226;

}

.contact-link:hover i{

    transform:scale(1.1);

}

.contact-item i{

    color:#c4f226;

    font-size:18px;

    transition:.3s ease;

}

/*==================================================
            COUNTRY INDICATOR
==================================================*/

.country-indicator{

    display:flex;
    align-items:center;
    gap:10px;

    margin-left:20px;

    padding:8px 14px;

    background:#f8f9fa;

    border:1px solid #e5e7eb;

    border-radius:50px;

}

.country-flag{

    width:22px;
    height:22px;

    border-radius:50%;

    background-size:cover;

    background-position:center;

    border:1px solid #ddd;

    flex-shrink:0;

}

.country-name{

    font-size:14px;

    font-weight:600;

    color:#222;

}

.change-country-btn{

    display:flex;

    align-items:center;

    gap:5px;

    text-decoration:none;

    color:#0B7A75;

    font-size:13px;

    font-weight:600;

}

.change-country-btn:hover{

    color:#08665f;

}

@media(max-width:768px){

    .country-indicator{

        margin-left:10px;

        padding:6px 10px;

        gap:6px;

    }

    .country-name{

        max-width:75px;

        overflow:hidden;

        white-space:nowrap;

        text-overflow:ellipsis;

        font-size:12px;

    }

    .country-flag{

        width:18px;

        height:18px;

    }

    .change-country-btn{

        font-size:11px;

    }

}


.footer-country-list{

    display:flex;

    flex-direction:column;

    gap:3px;

}

.footer-country{

    display:flex;

    align-items:center;

    gap:3px;

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-country:hover{

    color:#fff;

    padding-left:6px;

}

.footer-country .fi{

    width:18px;

    height:18px;

    border-radius:50%;

    background-size:cover;

    border:1px solid rgba(255,255,255,.2);

    flex-shrink:0;

}