*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: white;
}
/* Loader Styles */
.center{
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    z-index: 9999;
}
.ring{
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}
@keyframes ring {
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 3px 1px #0008ff;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 3px 1px #ffb255;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 3px 1px #00085e;
    }
}
.ring::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 50%;
    width: 100%;
    box-shadow: 0 0 1px rgba(255, 255, 255, .3);
}
span img {
    width: 95px;
    animation: flipLogo 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}
@keyframes flipLogo {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/*styling top-footer */
#top-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.1s ease; /* faster + smoother than AOS */
}
/* active state */
#top-footer.show {
  opacity: 1;
  transform: translateY(0);
}
.top-footer{
    background: rgb(255, 255, 255);
    height: 40px;
    z-index: 9999;
    position: relative;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 45px;
    height: 23px;
    color: #E31E24;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}
.top-footer .box .text-1{
    display: flex;
    font-size:.95rem;
    height: 10px;
    color: #000000;
    text-overflow: ellipsis;
}
.top-footer .box .text-1 a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.top-footer .box .text-1 a:hover{
    color: #387ef8;
}
.social-link-list{
    display: flex;
    margin-left: 580px;
    align-items: center;
    gap: 20px;
}
.social-link-list .social-link{
    color: #d82828;
    font-size: 17px;
}
.social-link-list .social-link:hover{
    color: #387ef8;
}
/* HEADER */
header {
    width: 100%;
    height: 70px;
    background-color: #00AEEF;
    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 9999;
}
/* LOGO */
header .logo {
    width: 100px;
    display: block;
}
/* NAV */
header ul {
    display: flex;   /* 🔥 replaces float */
    align-items: center;
    gap: 10px;
}
/* REMOVE FLOAT */
header ul li {
    list-style: none;
}
/* LINKS */
header ul li a {
    color: #fff;
    font-size: 18px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}
/* HOVER */
header ul li a:hover {
    background: #fff;
    color: #000;
}
/* BUTTON (your <a>) */
.dropdown .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
/* HOVER EFFECT */
.dropdown .dropbtn:hover {
    background: #fff;
    color: #000;
    border-radius: 4px;
}
/* ICON */
.dropdown .dropbtn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
/* ROTATE ICON WHEN ACTIVE */
.dropdown.active .dropbtn i {
    transform: rotate(180deg);
}
/* DROPDOWN */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #00AEEF;
    min-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}
/* DROPDOWN LINKS */
.dropdown-content li a {
    display: block;
    padding: 12px 15px;
    font-size: 18px;
}
/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
    display: block;
}
/* DROPDOWN HOVER */
.dropdown-content li a:hover {
    background: #fff;
    color: #000;
}
/* styling whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/*hero*/
.hero {
  position: relative;
  height: 95vh;
  width: 100%;
  overflow: hidden;
}
/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}
/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  z-index: -1;
}
/* Content */
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}
.typing {
  color: #ffffff;
  border-right: 3px solid #ffffff;
  padding-right: 6px;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0% { border-color: transparent; }
  50% { border-color: #ffffff; }
  100% { border-color: transparent; }
}
/* Button */
.btn {
  padding: 14px 32px;
  background: #F7941E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}
.btn:hover {
    color: white;
    background: transparent;
    border: 1px solid white;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/*styling about-section*/
.about-section{
    padding: 40px;
    border: 50px;
}
.container{
    display: flex;
    gap: 50px;
}
.top h3{
    grid-column: 1 / -1;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;       /* align with left buttons */
    padding-left: 0;        /* optional: same padding as sidebar */
    margin-bottom: 10px;
}
.top .about-text{
    font-size: 17px;
    text-align: justify;
    margin-bottom: 10px;
}
.image-section{
    flex: 1;
    min-width: 510px;
    padding: 1px;
}
.image-section img{
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.393);;
}
.content-section ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}
.content-section ul li {
    display: flex;
    align-items: flex-start; /* Aligns icon vertically with the text */
    margin-bottom: 10px;
}
.content-section ul li i {
    color: #38bdf8;
    margin-right: 0.75rem;
    font-size: 17px;
    flex-shrink: 0;
    line-height: 1.7; /* Important to align the icon properly */
}
.content-section ul li span {
    display: inline-block;  /* Ensures text wraps nicely */
}
/* what resides */
.service-title{
    text-align: center;
    margin-bottom: 40px;
}
.service-title h2{
    font-size: 30px;
    color: #000;
}
.service-title .pl-text{
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
    font-size: 18px;
}
.resides{
    padding: 15px 3%;
    padding-bottom: 60px;
    padding-top: 60px;
    background-color: #ffffff;
}
.box-contain{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
a{
    text-decoration: none;
}
.box-content .pic{
    width: 60px;
    padding: 10px;
    border-radius: 10px;
}
.read{
    margin-top: 20px;
    text-decoration: underline;
}
.read:hover{
    color: #00AEEF;
}
.animated{
    transform: translateY(30px);
    opacity: 0;
    animation: slide-in 1s ease forwards;
    animation-delay: 1s;
}
@keyframes slide-in{
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
/*passionate*/
.sticky-bg {
  position: relative;
  padding: 70px 3%;
  background: url("images/WhatsApp Image 2026-03-23 at 10.58.382.jpeg") center/cover no-repeat;
  background-attachment: fixed; /* 🔥 magic */
}
.bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 2;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.content h2{
  font-size: 50px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  font-weight: 400;
}
.content p{
  font-size: 25px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  margin-bottom: 50px;
}
.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}
.box-content{
    box-shadow: 0px 1px 2px rgb(10, 10, 10);
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 30px 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}
.box-content:hover{
    transform: translateY(-10px);
}
.box-content h3{
    color: rgb(0, 0, 0);
    font-size: 19px;
    padding: 10px 0;
    font-weight: 430;
}
.box-content p{
    font-size: 16px;
    line-height: 20px;
    color: black;
}
.stick-bg {
  position: relative;
  text-align: center;
  padding: 70px 3%;
  background: url("images/Bg.jpg") center/cover no-repeat;
  background-attachment: fixed; /* 🔥 magic */
}
.stick-bg .book{
    margin-top: 10px;
    margin-bottom: 40px;
}
.stick-bg .book h2{
    margin-bottom: 20px;
    color: white;
    font-size: 40px;
}
.stick-bg .book p{
    margin-bottom: 20px;
    color: white;
    font-size: 18px;
}
.button{
    padding: 10px 26px;
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid white;
    background: transparent;
    margin-top: 20px;
}
.button:hover{
    border: 1px solid white;
    color: rgb(255, 255, 255);
    background: #00AEEF;
}
/*our-number*/
.numbers-section{
    display: flex;
    padding: 50px;
    gap: 40px;
}
.numbers-section h2{
    grid-column: 1 / -1;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;       /* align with left buttons */
    padding-left: 0;        /* optional: same padding as sidebar */
    margin-bottom: 10px;
}
.progress-container{
    width: 100%;
    margin: 0px auto;
    font-family: Arial, sans-serif;
}
.progress-box{
    margin-bottom: 25px;
}
.progress-box h3{
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    margin-bottom: 8px;
    font-size: 16px;
}
.progress-bar{
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
}
.progress{
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 20px;
    transition: width 2s ease-in-out;
}
.counter-up{
    background-position: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Section Background */
.video-section {
  padding: 40px 20px;
  background: linear-gradient(155deg, #ffffff, #00AEEF);
  color: #ffffff;
  text-align: center;
}
/* Container */
.video-container {
  max-width: 2100px;
  margin: 0 auto;
}
/* Subtitle */
.video-subtitle {
  font-size: 20px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
/* Video Styling */
.custom-video {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Hover Effect */
.custom-video:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-title {
    font-size: 28px;
  }

  .video-subtitle {
    font-size: 16px;
  }

  .video-section {
    padding: 70px 20px;
  }
}
/*styling quick request*/ 
.quick-service-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}
.quick-service-container h2 {
  color: #00AEEF; /* green color */
  font-size: 24px;
  margin-bottom: 5px;
}
.quick-service-container .subtext {
  font-weight: bold;
  margin-bottom: 20px;
}
.quick-service-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-service-form input,
.quick-service-form select {
  flex: 1 1 200px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  appearance: none; /* remove default dropdown arrow */
  background-color: #fff;
}
.quick-service-form select {
  background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><polygon points="0,0 12,0 6,6" fill="%23999"/></svg>') no-repeat right 10px center;
  background-size: 12px 12px;
}
.quick-service-form button {
  background-color: #00AEEF; /* green */
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.quick-service-form button:hover {
  background-color: #00c6ff;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .quick-service-form {
    flex-direction: column;
  }
  .quick-service-form input,
    .quick-service-form select {
    flex: 0;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    appearance: none; /* remove default dropdown arrow */
    background-color: #fff;
  }
}
/* styling footer */
footer{
    display: flex;
    flex-wrap: wrap;
    background: #000000;
    color: #fff;
    padding: 50px 20px 20px;
}
ul{
    list-style: none;
    
}
.list{
    padding: 7px;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}
.footer-col{
    display: inline-block;
    width: 22%;
    vertical-align: top;
    margin-right: 3%;
    margin-bottom: 20px;
}
.footer-col h2 {
    position: relative; /* Required for ::before to position properly */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffffd2;
}
.footer-col p{
    margin-left: 9px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 17px;
  text-align: left;
  margin-left: 30px;
}
.footer-col ul li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #00AEEF;
}
.social-icons{
    text-align: center;
    padding: 7px;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
   
 }
 .social-icons i{
    color: white;
    font-size: 18px;
 }
 a{
    text-decoration: none;
    color: #ffffff;
 }
 a:hover{
    color: #00AEEF;
 }
 .social-icons i:hover{
    color: #00AEEF;
 }
 .bottom-bar{
    text-align: center;
    padding: 10px 0;
    margin: auto;
    margin-top: 50px;
 }
.bottom-bar p{
    color: #ffffff;
    margin: auto;
    font-size: 18px;
    padding: 7px;
}
/*styling bottom-footer*/
.bottom-footer{
    text-align: center;
    background-color: #4e4d4d;
}
.craft{
    padding: 6px ;
}
.craft p{
    color: #fff;
}
.craft a{
    color: #c5ffff;
}
.craft a:hover{
    color: rgb(134, 173, 237);
}
/* responsiveness */
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 340px;
    }
    header .logo{
        width: 85px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 17px;
        transition: color 0.3s;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 17px;
    }
    .about-section{
        padding: 20px;
        border: 20px;
    }
    .container{
        flex-direction: column;
    }
    .image-section{
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }
    .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
    .numbers-section{
        flex-direction: column;
        padding: 30px;
    }
}
@media (max-width: 1050px){
    .social-link-list{
        margin-left: 340px;
    }
}
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 280px;
    }
    .about-section{
        padding: 20px;
        border: 20px;
    }
    .container{
        flex-direction: column;
    }
    .image-section{
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }
}
@media (max-width: 950px){
    .social-link-list{
        margin-left: 190px;
    }
}
@media (max-width: 900px) {

    /* Hide top footer */
    .top-footer {
        display: none;
    }

    /* Header */
    header {
        padding: 10px 20px;
        position: relative; /* important for nav positioning */
    }

    header .logo {
        width: 90px;
    }

    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        top: 70px; /* fixed under header */
        left: 0;
        right: 0; /* ensures full width */
        width: 100%;
        background: #00AEEF;
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }

    /* Show menu when active */
    header.active nav {
        display: block;
    }

    header.active {
        background-color: #00AEEF !important;
    }

    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
        width: 100%;
    }

    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 16px;
        padding: 15px 0;
        text-decoration: none;
        cursor: pointer;
    }

    header nav ul li a:hover {
        color: black;
        background-color: transparent;
    }

    /* ===== DROPDOWN ===== */
    .dropdown {
        position: static;
        width: 100%;
        background-color: #00AEEF;
    }

    .dropdown-content {
        display: none;
        position: static;
        background-color: #00AEEF;
        color: #fff;
        text-align: center;
        width: 100%;
    }

    /* Disable hover on mobile */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Show dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        padding: 12px 16px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        gap: 50px;
        background: none;
        border: none;
        color: #fff;
    }

    .dropdown .dropbtn i {
        font-size: 16px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    /* Remove tap highlight */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        background-color: #00AEEF !important;
        color: #fff;
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }
    .dropdown-content li a:hover {
        background: transparent;
        color: #000;
    }
    /* ===== HAMBURGER ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: #fff;
        transition: 0.3s ease;
    }

    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px #fff;
    }

    .menuToggle::after {
        transform: translateY(10px);
    }

    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }

    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    .about-section{
        padding: 20px;
        border: 20px;
    }
    .container{
        flex-direction: column;
    }
    .image-section{
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }
    .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
    .numbers-section{
        flex-direction: column;
        padding: 30px;
    }
    footer{
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col ul {
        margin-left: 1px;
    }
    .footer-col p {
        width: 100%;
    }
    .footer-col h2 {
        text-align: left;
    }
    .social-icons{
        text-align: left;
        padding: 7px;
    }
    .list li{
        text-align: left;
        border-bottom: 1px solid #ffffff79;
    }
    .list li::before{
        display: none;
    }
    .footer-col h2::before {
        display: none;
    }
}