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 */

/* ================= CONTACT HERO ================= */

.contact-hero{
    width:100%;
    min-height:100vh;
    padding:120px 7%;

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

    background:whitesmoke;
    overflow:hidden;
}

/* LEFT */

.contact-left{
    width:50%;
    animation:fadeLeft 1.2s ease;
}

.contact-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:30px;
}

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

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

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

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

/* PRIMARY BUTTON */

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

    padding:9px 18px 9px 35px;

    border-radius:60px;

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

    min-height:70px;

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

    transition:.4s ease;
}

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

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

    background:#111;
    color:#fff;

    border-radius:50%;

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

    flex-shrink:0;
}

/* SECONDARY BUTTON */

.secondary-contact-btn{
    text-decoration:none;
    border:2px solid #ddd;
    color:#111;

    min-height:70px;
    padding:0 35px;

    border-radius:60px;

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

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

    transition:.4s ease;
}

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

/* RIGHT */

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

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

/* FLOATING CARDS */

.contact-card{
    position:absolute;

    background:#fff;

    padding:25px 30px;

    border-radius:25px;

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

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

.contact-card h3{
    font-size:42px;
    color:#0f8f6f;
}

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

.card-one{
    top:40px;
    left:-40px;
}

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

.card-three{
    bottom:40px;
    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);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-hero{
        flex-direction:column-reverse;
        padding:100px 30px;
    }

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

    .contact-title{
        font-size:58px;
    }

    .contact-card{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

        margin-top:20px;
    }

}

@media(max-width:768px){

    .contact-hero{
        padding:80px 20px;
        gap:50px;
    }

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

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

    .contact-buttons{
        flex-direction:column;
    }

    .primary-contact-btn,
    .secondary-contact-btn{
        width:100%;
        min-height:70px;
    }

    .primary-contact-btn{
        justify-content:space-between;
    }

    .secondary-contact-btn{
        justify-content:center;
    }

}

@media(max-width:480px){

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

    .contact-card h3{
        font-size:30px;
    }

    .contact-tag{
        font-size:12px;
    }

}


/* 2nd section form */

/* ================= CONTACT SECTION ================= */

.contact{
    padding:120px 7%;
    background:#f8faf9;
    position:relative;
    overflow:hidden;
}

.contact::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(196,242,38,.12);
    border-radius:50%;
    top:-200px;
    right:-150px;
}

.contact-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:center;

    position:relative;
    z-index:2;
}

/* LEFT */

.contact-content{
    animation:fadeLeft 1s ease;
}

.eyebrow{
    display:inline-block;
    padding:12px 24px;
    background:#e8fff0;
    color:#0f8f6f;
    border-radius:50px;

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

    margin-bottom:25px;
}

.contact-content h2{
    font-size:68px;
    line-height:1.05;
    color:#111;
    margin-bottom:25px;
}

.contact-content .lede{
    font-size:19px;
    color:#666;
    line-height:1.9;
    max-width:500px;
}

/* FORM */

#sendResume{
    background:#fff;
    padding:45px;
    border-radius:35px;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    gap:22px;

    animation:fadeRight 1s ease;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.field label{
    display:block;
    margin-bottom:10px;

    color:#0f8f6f;

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

    letter-spacing:1px;
    text-transform:uppercase;
}

.field input,
.field select{
    width:100%;
    height:58px;

    border:1px solid #e6e6e6;
    border-radius:16px;

    padding:0 10px;

    background:#fafafa;
    color:#111;

    font-size:15px;

    transition:.35s ease;
}

/* ================= FILE UPLOAD ================= */

.field input[type=file]{
    width:100%;
    min-height:70px;

    padding:18px 20px;

    background:#f8faf9;

    border:2px dashed #0f8f6f;
    border-radius:18px;

    cursor:pointer;

    color:#444;
    font-size:15px;

    transition:.35s ease;
}

.field input[type=file]:hover{
    background:#f3fff9;
    border-color:#c4f226;
}

.field input[type=file]:focus{
    outline:none;
    border-color:#0f8f6f;
    box-shadow:0 0 0 5px rgba(15,143,111,.12);
}

.field input[type=file]::file-selector-button{

    background:#0f8f6f;
    color:#fff;

    border:none;
    border-radius:12px;

    padding:12px 24px;

    margin-right:15px;

    cursor:pointer;

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

    transition:.35s ease;
}

.field input[type=file]::file-selector-button:hover{
    background:#086b53;
}

.file-note{

    display:block;

    margin-top:10px;

    color:#666;

    font-size:13px;

    line-height:1.6;
}
.field input:focus,
.field select:focus{
    outline:none;

    border-color:#0f8f6f;

    box-shadow:0 0 0 5px rgba(15,143,111,.12);

    background:#fff;
}

.field input:hover,
.field select:hover{
    border-color:#0f8f6f;
}

/* BUTTON */

.btn{
    border:none;
    cursor:pointer;

    background:#c4f226;
    color:#111;

    height:62px;
    padding:0 35px;

    border-radius:60px;

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

    transition:.35s ease;

    align-self:flex-start;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(196,242,38,.45);
}

.btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

/* ERROR */

.error-message{
    color:#ff4d4d;
    font-size:13px;
    margin-top:6px;
    min-height:18px;
}

.input-error{
    border:1px solid #ff4d4d !important;
    box-shadow:0 0 0 4px rgba(255,77,77,.1);
}

/* LOADER */

.loader{
    width:18px;
    height:18px;

    border:2px solid rgba(0,0,0,.2);
    border-top:2px solid #111;

    border-radius:50%;

    display:inline-block;
    margin-right:10px;

    animation:spin .8s linear infinite;
}

/* ANIMATIONS */

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

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

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

/* RESPONSIVE */

@media(max-width:1200px){

    .contact-content h2{
        font-size:56px;
    }

}

@media(max-width:992px){

    .contact{
        padding:100px 40px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .contact-content h2{
        font-size:48px;
    }

}

@media(max-width:768px){

    .contact{
        padding:80px 20px;
    }

    #sendResume{
        padding:30px 25px;
        border-radius:25px;
    }

    .two-col{
        grid-template-columns:1fr;
    }

    .contact-content h2{
        font-size:40px;
    }

    .contact-content .lede{
        font-size:16px;
    }

    .btn{
        width:100%;
    }

}

@media(max-width:480px){

    .contact-content h2{
        font-size:32px;
    }

    #sendResume{
        padding:25px 20px;
    }

    .field input,
    .field select{
        height:54px;
        font-size:14px;
    }

    .btn{
        font-size:16px;
    }

}




/* ===== 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;

    }

}

.country-label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.country-label label{
    margin:0;
}

#changeCountryLink{

    font-size:14px;

    color:#db1010;

    text-decoration:none;

    font-weight:600;

    cursor:pointer;

}

#changeCountryLink:hover{

    text-decoration:underline;

}

#targetCountry{

    background:#f8f9fa;

    cursor:default;

    font-weight:600;

}


.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;

}