
 /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
  overflow-x: hidden;

}

/* NAVBAR */

    .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #44444421;
    z-index: 10;
}
.menu {
    display: flex;
    gap: 25px;
   background: #FFFFFF40;
    padding: 10px 25px;
    border-radius: 30px;
}


/* LOGO & BUTTON */
.logo-btn, .contact-btn {
    background: #F9C60C;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}
.logo-btn {
  display: flex;
  align-items: center;
}

/* Logo image */
.logo-img img {
  height: 50px;        /* Desktop */
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-img img {
    height: 42px;
    max-width: 160px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-img img {
    height: 36px;
    max-width: 140px;
  }
}



.menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.menu a:hover {
    color: #F9C60C;
   
}


.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
}

/* HAMBURGER */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Contact Us inside menu (hidden in desktop) */
.contact-mobile {
    display: none;
    background: #F9C60C;
    color: black !important;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
}


/* ---------------------------- */
/* MOBILE RESPONSIVE */
/* ---------------------------- */

@media (max-width: 768px) {


    /* Desktop contact hide on mobile */
    .contact-btn {
        display: none;
    }

    /* Mobile Slide Menu */
    /*.menu {*/
    /*    position: absolute;*/
    /*    top: 70px;*/
    /*    right: 20px;*/
    /*    background: rgba(0,0,0,0.85);*/
    /*    flex-direction: column;*/
    /*    width: 210px;*/
    /*    padding: 20px;*/
    /*    border-radius: 15px;*/
    /*    display: none;*/
    /*    gap: 18px;*/
    /*}*/

    .menu a {
        font-size: 16px;
        padding: 8px 0;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Toggle ON → Show Menu */
    .nav-toggle:checked ~ .menu {
        display: flex;
    }

    /* Toggle ON → Contact Us visible */
    .nav-toggle:checked ~ .menu .contact-mobile {
        display: block;
    }
    
    
}


/* ---------------- GREEN STRIP ---------------- */
.green-strip {
  background: linear-gradient(90deg, #FDFBCA 0%, #F9C60C 41.35%, #FFF2C0 61.54%, #FEFDF8 100%);
    padding: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-text {
    font-size: 20px;
    font-weight: bold;
}

.blue-tag {
    background: #1d87ff;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
}

.sub-line {
    font-size: 12px;
    margin-top: 6px;
}

.green-btn {
    background: #F9C60C;
    /* background: #4CFC0F; */
    color: #262222;
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px;
}

/* ---- SERVICES SECTION ---- */
.services-section {
    padding: 20px 70px;
    background: #e7e7e7;
}

.services-section h2 {
   font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
   
}

/* ---- CONTAINER (ONE LINE) ---- */
.services-container {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;       /* 👈 ek hi line */
    overflow-x: auto;        /* 👈 horizontal scroll */
    padding-bottom: 10px;
   
}

/* Scrollbar (optional) */
.services-container::-webkit-scrollbar {
    height: 6px;
}
.services-container::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

/* ---- CARD ---- */
.service-card {
    position: relative;
    flex: 0 0 300px;         /* 👈 fixed width */
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.service-card img {
    /*width: 100%;*/
    /*height: 100%;*/
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* ---- OVERLAY (Always Visible) ---- */
.overlay {
    margin-left: 18px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 89%;
    margin-bottom: 10px;
    padding: 19px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    transition: 0.4s ease;
}

/* Hover Glass Effect */
.service-card:hover .overlay {
    background: rgba(0, 115, 255, 0.45);
    backdrop-filter: blur(6px);
}

/* ---- TEXT (Single Line) ---- */
.overlay h3,
.overlay p {
    white-space: nowrap;       /* 1 hi line */
    overflow: hidden;
    text-overflow: ellipsis;   /* ... */
}

.overlay h3 {
    font-size: 15px;
    margin: 0 0 4px;
}

.overlay p {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
    .services-section {
        padding: 40px 20px;
    }

    /*.service-card {*/
    /*    flex: 0 0 260px;*/
    /*    height: 220px;*/
    /*}*/
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 300px;
        height: 230px;
    }
    .services-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
    margin-left: 2px;
    text-align:center;
}
}



/* ------- SECTION WRAPPER ------- */
.clients-section {
    background: linear-gradient(90deg, #FDFDCA 0%, #FEFCE0 24.52%, #F9C60C 68.75%, #FEFDF8 100%);
    padding: 20px 70px;
    margin-left:0px;
}

/* ------- MAIN BOX ------- */
.clients-container {
    width: 100%;
    margin: auto;
    /*padding: 80px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff90;
}

/* ------- LEFT TEXT ------- */
.clients-text h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
}

.clients-text p {
    font-size: 15px;
    color: #444;
    max-width: 340px;
}

/* ------- RIGHT LOGOS GRID ------- */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(2, 120px);
    gap: 15px;
}

.logo-card {
    background: #e7e7e7;
    border-radius: 10px;
   padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    color: #1b1b1b;
    border: 1px solid #ccc;
    transition: 0.3s ease;
    cursor: pointer;
}

.logo-card:hover {
    transform: translateY(-4px);
    background: #fff;
}



.menu{
  display:flex;
  gap:30px;
  align-items:center;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}



/* MEGA DROPDOWN */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  margin-left: -101px;
  position: absolute;
 top: 159%;
  left: 0;
  width: 400px;
  background: #b3b3b3;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  gap: 30px;
  display: none;
  z-index: 999;
}

/* OPEN ON CLICK */
.mega-dropdown.active .mega-menu {
  display: flex;
}

/* LEFT */
.mega-left {
  width: 50%;
}

.tab {
  padding: 10px;
  border: 2px solid #4f6fdc;
  margin-bottom: 12px;
  color: #dcdcdc;
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  color: #ffc400;
}

/* RIGHT */
.mega-right {
  width: 60%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  color: #fff;
  font-size: 18px;
  margin: 10px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 10px;
  }

  .mega-left,
  .mega-right {
    width: 100%;
  }
}


/* =========================
   MOBILE VIEW FIX (MEGA)
========================= */
@media (max-width:991px){

  /* MENU */
  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    flex-direction:column;
    padding:20px;
    display:none;
    z-index:999;
  }

  .nav-toggle:checked ~ .menu{
    display:flex;
  }

  /* SERVICES BUTTON */
  .mega-dropdown{
    width:100%;
  }

  .drop-btn{
    width:100%;
    display:block;
  }

  /* MEGA MENU MOBILE */
  /*.mega-menu{*/
  /*  position:static;*/
  /*  width:100%;*/
  /*  margin-top:10px;*/
  /*  margin-left: 10px;*/
  /*  border-radius:16px;*/
  /*  padding:15px;*/
  /*  flex-direction:column;*/
  /*  display:none;*/
  /*}*/
  
  .mega-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        margin-left: -17px;
        border-radius: 16px;
        padding: 20px;
        flex-direction: column;
        display: none;
    }

  .mega-dropdown.active .mega-menu{
    display:flex;
  }

  /* LEFT TABS */
  .mega-left{
    width:100%;
  }

  .tab{
    padding:14px;
    font-size:14px;
  }

  /* RIGHT CONTENT */
  .mega-right{
    width:100%;
    margin-top:10px;
    background:#9f9f9f;
    border-radius:12px;
    padding:12px;
  }

  .tab-content p{
    font-size:15px;
    margin:8px 0;
  }
}

/* ================================= */
/* MOBILE LEFT SLIDEBAR (OPPOSITE) */
/* ================================= */

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar{
    padding:14px 18px;
  }

  /* HAMBURGER */
  .hamburger{
    display:block;
    font-size:28px;
    color:#fff;
    cursor:pointer;
    z-index:1001;
    transition:0.4s ease;
  }

  /* ☰ → arrow rotate */
  .nav-toggle:checked + .hamburger{
    transform: rotate(-90deg);
  }

  /* LEFT DRAWER */
  .menu{
    position: fixed;
    top: 0;
    left: -280px;            /* 🔴 hidden on left */
    height: 100vh;
    width: 300px;
    background: rgba(0,0,0,0.96);
    padding: 90px 22px 20px;
    display:flex;
    flex-direction:column;
    gap:18px;
    border-radius: 0 20px 20px 0;
    transition: 0.45s cubic-bezier(.4,0,.2,1);
    z-index:1000;
  }

  /* OPEN */
  .nav-toggle:checked ~ .menu{
    left: 0;
    
  }

  /* SOFT CENTER LINE */
  /*.menu::before{*/
  /*  content:"";*/
  /*  position:absolute;*/
  /*  left:50%;*/
  /*  top:90px;*/
  /*  bottom:30px;*/
  /*  width:1px;*/
  /*  background:rgba(255,255,255,0.12);*/
  /*  transform:translateX(-50%);*/
  /*}*/

  /* LINKS */
  .menu a{
    color:#fff;
    font-size:16px;
    text-align:center;
    padding:10px;
    border-radius:12px;
  }

  .menu a:hover{
    background:#1c1c1c;
  }

  /* SERVICES DROPDOWN */
  .dropdown-menu{
    position: static;
    display:none;
    background:#1b1b1b;
    border-radius:12px;
    margin-top:6px;
  }

  .dropdown-menu a{
    font-size:14px;
  }

  .dropdown:focus-within .dropdown-menu{
    display:block;
  }

  /* CONTACT */
  .contact-btn{
    display:none;
  }

  .contact-mobile{
    display:block;
    background:#f9c60c;
    color:#000 !important;
    padding:10px;
    border-radius:25px;
    font-weight:bold;
    text-align:center;
    margin-top:10px;
  }
  
  .green-strip {
    background: linear-gradient(90deg, #FDFBCA 0%, #F9C60C 41.35%, #FFF2C0 61.54%, #FEFDF8 100%);
    padding: 40px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clients-section {
    background: linear-gradient(90deg, #FDFDCA 0%, #FEFCE0 24.52%, #F9C60C 68.75%, #FEFDF8 100%);
   
}


}



.btn {
  background: #F9C60C;
  padding: 10px 24px;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* ------------------------------- */
/* SECTION 3 - CTA BAR */
/* ------------------------------- */

.cta-section {
 background: linear-gradient(90deg, #FDFBCA 0%, #F9C60C 41.35%, #FFF2C0 61.54%, #FEFDF8 100%);
  padding: 22px 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content h3 {
  margin: 0;
  font-size: 22px;
}

.cta-content p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

.cta-btn .cta-button {
  background: #F9C60C;
  padding: 10px 26px;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}


/* FOOTER BASE */
.footer {
  background: #fff;
  padding: 20px 70px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* TOP FOOTER */
.footer-top {
  /*max-width: 1400px;*/
  /*margin: auto;*/
  /*padding: 20px 70px;*/
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.footer-left h2 {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 600;
}

.footer-btn {
  display: inline-block;
  background: #20ff3b;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  margin-top: 15px;
  font-weight: bold;
  text-decoration: none;
}

/* CENTER MENU */
.footer-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center li {
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

/* RIGHT */
.footer-right h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.footer-center a{
  text-decoration: none;   /* underline remove */
  color: #333;             /* same as li */
  font-size: 14px;
}

.footer-center a:hover{
  text-decoration: none;
  color: #000;             /* hover color (optional) */
}

.footer-right p {
  font-size: 13px;
  margin-bottom: 12px;
}

/* OUTLINE TEXT */
.footer-outline {
     font-size: clamp(72px, 12vw, 194px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.85);
    text-align: center;
    opacity: 0.7;
    letter-spacing: 0.15em;
    line-height: 1;
    user-select: none;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* COPYRIGHT */
.footer-bottom {
  background: #003600;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

.follow-title{
  font-size: 16px;
  margin-bottom: 10px;
}

.social-follow{
  display: flex;
  gap: 20px;
}

.social-item{
  text-align: center;
  text-decoration: none;
  color: #444;
  font-size: 12px;
}

.social-item i{
  font-size: 22px;
  display: block;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 5px;
  transition: 0.3s;
}

/* BRAND COLORS */
.social-item .bi-facebook{
  color: #1877f2;
}

.social-item .bi-instagram{
  color: #e1306c;
}

.social-item .bi-youtube{
  color: #ff0000;
}

.social-item:hover i{
  background: #eaeaea;
}

/* ========================= */
/* ⭐ MOBILE RESPONSIVE FIX  */
/* ========================= */

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
    padding: 0 12px 25px;
  }

 
  .footer-center {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px;
    text-align: center;
  }


  .footer-right {
    text-align: center;
  }

 

  .footer-outline {
    font-size: 55px;
    -webkit-text-stroke: 1px #eaeaea;
  }
  
 

}

@media (max-width: 480px) {
  .footer-outline {
    font-size: 42px;
  }
}


/* Responsive */
@media(max-width: 750px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


/* ------- RESPONSIVE ------- */

@media (max-width: 900px) {
    .clients-container {
        flex-direction: column;
        text-align: center;
    }

    .clients-text p {
        margin: auto;
    }

    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---- RESPONSIVE ---- */

@media (max-width:600px) {
    .services-container {
    display: flex;
    gap: 33px;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 0px;
}
}

@media (max-width: 600px) {
    .services-section {
        padding: 40px 20px;
    }

    /*.service-card {*/
    /*    width: 100%;*/
    /*    height: 220px;*/
    /*}*/
}

/* =========================
   SCROLL TO TOP ARROW
========================= */
#scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  background: #f9c60c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 99999;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

/* Hover (desktop only) */
#scroll-top:hover {
  background:#f9c60c;
  transform: translateY(-3px);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {

    .menu {
        margin-left: 130px;
        display: none;
    }

    .green-strip {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .service-box {
        flex-direction: column;
    }

  .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0px;
    width: 94%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}
}
