@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

/* =========================================
   1. Variables & Global
   ========================================= */

:root {
    --color-primary: rgb(198 93 0);
    --color-secondary: rgb(13 13 13);
    --color-third: rgb(245 176 27);
    --duration: 1s;
    --nav-duration: calc(var(--duration) / 4);
    --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
    --space: 1rem;
    --line-height: 1.5;
    --padding-block: 3rem;
    --margin-block: 3rem;
}

@media screen and (max-width:586px) {
    :root {
        --padding-block: 2rem;
        --margin-block: 2rem;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body {
    line-height: var(--line-height);
    font-family: "Lato", sans-serif;
    background-color: rgb(245, 245, 245);
}

a {
    text-decoration: none;
    color: #000;
}

ul,
li {
    list-style: none;
}

.primary_btn i {
    /* width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--color-primary); */
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary_btn {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
    width: max-content;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    color: #fff;
    background-color: var(--color-primary);
    margin-top: 1rem;
    z-index: 1;
}

.primary_btn::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-third);
    transition: all 0.4s ease;
    z-index: -1;
}

.primary_btn:hover {
    color: #fff;
}

.primary_btn:hover::before {
    width: 100%;
}


/* Header */

header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-block: 20px; */
    /* background-color: var(--color-secondary); */
    /* box-shadow: 0 0 10px #ccc; */
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.3s ease;
    /* border-top: 2px solid #fff; */
}

header img {
    width: 250px;
}

.other_head {
    background-color: var(--color-secondary);
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}


.nav-link {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    background: none;
    display: block;
    text-decoration: none;
    font-weight: 500;
    margin-right: 2rem;
    position: relative;
    transition: all 0.3s ease;
    padding-inline: 0 !important;
    padding-bottom: 5px !important;
    text-transform: uppercase;
}


.nav-link::before {
    content: '';
    width: 0%;
    height: 2.5px;
    position: absolute;
    bottom: -2.5px;
    left: 0;
    background-color: #fff;
    transition: all 0.5s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.nav-link:hover {
    color: #fff !important;

}

header .active,
.nav-link:focus {
    border-bottom: 3px solid #fff;
    color: #fff !important;
}

.dropdown-menu {
    border-radius: unset;
    width: 300px;
    padding-block: 0;
}

.dropdown-item {
    transition: all 0.4s;
    padding-block: 0.5rem;
    font-size: 15px;
    border-bottom: 1px dotted var(--color-primary);

}

.dropdown-item:hover {
    background-color: var(--color-primary);
    color: #fff;
    padding-left: 1.5rem;
}



h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

h1 {
    margin-bottom: calc(var(--space) * 3);
    font-family: var(--font-heading);
    font-size: calc(var(--font-size) + 6vmin);
    line-height: calc(var(--line-height) / 1.25);
}

h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 55px;
    letter-spacing: 2px;
}

h2 span {
    background: linear-gradient(to right bottom, var(--color-primary), var(--color-third));
    color: transparent;
    background-clip: text;
}

/* Top Strip */
.topStrip {
    background-color: var(--color-third);
    /* padding-block: 10px; */
    color: #fff;
}

.topStrip a {
    color: #fff;
}

.topStrip a:hover {
    text-decoration: underline;
}

.contact_details span:nth-child(2) {
    border-left: 2px solid #fff;
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
}

.contact_details span {
    padding-block: 10px;
}

.contact_details i {
    font-size: 18px;
    margin-right: 3px;
}

/* =========================================
   2. Toggle Button (Hamburger Icon)
   ========================================= */
/* Checkbox ko chupana */
.main-navigation-toggle {
    position: fixed;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Icon Container */
.main-navigation-toggle+label {
    position: relative;
    cursor: pointer;
    z-index: 999;
    /* Ensure it's always on top */
}

.icon--menu-toggle {
    --size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    stroke-width: 6;
}

.icon-group {
    transform: translateX(0);
    transition: transform var(--nav-duration) var(--ease);
}

.icon--menu {
    stroke: var(--color-third);
}

.icon--close {
    stroke: var(--color-third);
    transform: translateX(-100%);
}

/* Jab menu open ho, icon change karein */
.main-navigation-toggle:checked~label .icon--menu-toggle .icon-group {
    transform: translateX(100%);
}

/* =========================================
   3. Main Navigation Container (Background)
   ========================================= */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    transform: translateX(-100%);
    /* Screen ke bahar */
    transition: transform var(--nav-duration);
    z-index: 998;
}

/* Gradient Background with skew effect */
.main-navigation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, var(--color-secondary), var(--color-secondary));
    transform-origin: 0 50%;
    transform: translateX(-100%) skewX(-15deg);
    z-index: -1;
}

.main-navigation ul {
    font-family: var(--font-heading);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* =========================================
   4. Menu Items Structure (Masking Logic)
   ========================================= */

/* IMPORTANT: 'overflow: hidden' yahan zaroori hai taaki text 
   neeche se "cut" hokar upar aaye, hawa mein na dikhe. */
.main-navigation li,
.sub_menu li {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Main Menu Layout */
.main-navigation>ul>li {
    display: flex;
    flex-direction: column;
    padding-left: 5%;
    /* Thoda indentation */
}

/* =========================================
   5. Links Styling (Hidden State)
   ========================================= */

/* Sabhi links shuru mein chhupayenge (translateY 100%) */
.main-navigation a,
.sub_menu a {
    display: block;
    /* Block zaroori hai transform ke liye */
    text-decoration: none;
    color: #fff;
    line-height: 1;
    transform: translateY(105%);
    /* Text ko neeche dhakel diya */
    opacity: 0;
    /* Thoda transparent taaki glitch na ho */
    transition: color 0.3s;
}

/* Main Heading Links Size */
.main-navigation>ul>li>a {
    font-size: 6vmin;
    /* Responsive font size */
    font-weight: 500;
    padding: var(--space) 0;
}

/* Underline Effect for Main Links */
.main-navigation>ul>li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-third);
    transform-origin: 0 50%;
    transform: translateX(-100%) skew(15deg);
}

/* =========================================
   6. Sub-Menu Styling (Services ke andar wala)
   ========================================= */
.secrvice_menu {
    /* Main container ko allow karo expand hone ke liye */
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;

}



.sub_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 5px;
    padding-left: 10px;
    width: 100%;
    /* justify-content: space-between; */
}

.sub_menu li {
    width: 50%;
    /* Mobile: 2 columns */
    margin-top: -10px;
}

@media(min-width: 768px) {
    .sub_menu li {
        width: 22%;
    }

    /* Desktop: 3 columns */
}

.sub_menu a {
    font-size: 1rem;
    /* Chota font size sub-menu ke liye */
    color: rgba(255, 255, 255, 0.7);
    /* Thoda grey taaki difference dikhe */
    padding: 5px 0;
}

.sub_menu a:hover {
    color: #fff;
}

/* Sub-menu mein underline nahi chahiye */
.sub_menu li::after {
    display: none !important;
}

/* =========================================
   7. Animations (Jab Menu Open Ho)
   ========================================= */

/* 1. Container Open */
.main-navigation-toggle:checked~.main-navigation {
    transform: translateX(0);
    transition-duration: 0s;
    /* Instant visible, background animate karega */
}

/* 2. Background Slide */
.main-navigation-toggle:checked~.main-navigation::after {
    animation: nav-bg var(--nav-duration) var(--ease) forwards;
}

/* 3. Main Links Slide Up */
.main-navigation-toggle:checked~.main-navigation>ul>li>a {
    animation: link-appear var(--duration) var(--ease) forwards;
}

/* 4. Sub-Menu Links Slide Up (With Delay) */
/* Yahan magic hai: delay ki wajah se ye main links ke baad aayenge */
.main-navigation-toggle:checked~.main-navigation .sub_menu a {
    animation: link-appear var(--duration) var(--ease) forwards;
    animation-delay: 0.4s;
}

/* 5. Underline Slide */
.main-navigation-toggle:checked~.main-navigation>ul>li::after {
    animation: nav-line var(--duration) var(--ease) forwards;
}

/* Optional: Content Push */
.main-content {
    transition: transform calc(var(--nav-duration) * 2) var(--ease);
}

.main-navigation-toggle:checked~.main-content {
    transform: translateX(10%);
}

/* =========================================
   8. Keyframes (Motion Logic)
   ========================================= */
@keyframes nav-bg {
    from {
        transform: translateX(-100%) skewX(-15deg);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes link-appear {
    0% {
        transform: translateY(105%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes nav-line {
    0% {
        transform: scaleX(0);
        transform-origin: 0 50%;
    }

    35% {
        transform: scaleX(1);
        transform-origin: 0 50%;
    }

    65% {
        transform: scaleX(1);
        transform-origin: 100% 50%;
    }

    100% {
        transform: scaleX(0);
        transform-origin: 100% 50%;
    }
}


/* Hero Section */

.hero_banner {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../banners/hero-bg.webp'); */
    background-size: cover;
    background-position: center;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    top: -100px;
    margin-bottom: -100px;
}

.hero_banner {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../banners/hero-bg.webp'); */
    background-size: cover;
    background-position: center;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    overflow: hidden;
}

.hero_banner video,
.hero_banner iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(80%);
}

.hero_banner iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* Calculates minimum width based on aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the video perfectly */
  pointer-events: none; /* Prevents users from clicking to pause the video */
}


.banner_text {
    width: 75%;
    margin: 0 auto;
    text-align: center;
}

.banner_text h5 {
    background: linear-gradient(to left bottom, var(--color-primary), var(--color-third));
    width: max-content;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 16px;
}

.banner_text h2 {
    font-size: 5.5rem;
    line-height: 1;
    padding-inline: 50px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 2px #000;
    opacity: 0.8;
}

.banner_text p {
    font-size: 18px;
    padding-inline: 20px;
    text-shadow: 0 0 2px #000;

}

.banner_text strong {
    background-color: var(--color-primary);
    padding: 3px 7px;
    font-weight: 500;
}

.banner_text a {
    margin: 0 auto;
    margin-top: 1rem;
}

/* About Us Start*/

.about_us {
    margin-block: var(--margin-block);
}

.about_us h2 {
    margin-bottom: 0.5rem;
}

.about_us h5,
.top_heading h5 {
    font-weight: 600;
    font-size: 16px;
    /* color: var(--color-third); */
}

.ab_img {
    width: 100%;
    height: 100%;
}

.ab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}






/* About Us End*/

/* Our Service Start */

.our_services {
    padding-block: var(--padding-block);
    background: #fff;
    background-size: cover;
}




.serv_box {
    width: 100%;
    box-shadow: 0 0 10px #ccc;
    border: 1px solid var(--color-primary);
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.serv_box img {

    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: transparent !important;
}


.serv_box h5 a {
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;

}

.serv_box p {
    margin-block: 5px;
}

.serv_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--color-primary);
    font-weight: 500;
}

.serv_box div {
    padding: 15px;
    transition: all 0.3s ease;
}

.serv_box:hover .serv_content {
    background-color: var(--color-primary);
}

.serv_box:hover * {
    color: #fff !important;
}

.serv_box a i {
    margin-top: 2px;
    margin-left: -10px;
    transition: all 0.3s ease;
    opacity: 0;
    display: none;

}

.serv_box:hover a i {
    margin-left: unset;
    opacity: 1;
}

.serv_box:hover>i {
    background-color: var(--color-primary);
}

.serv_content {
    height: 184px;
    position: relative;
}

.serv_content>a {
    background-color: var(--color-primary);
    color: #fff;
    padding: 6px 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    ;
    border: 2px solid #fff;
    border-radius: 25px;
    font-size: 15px;
}


.serv_box:hover .serv_content>a {
    color: var(--color-primary);
}

.serv_content>a:hover {
    background-color: var(--color-secondary);

}


/* .serv_box:hover a{
    text-decoration: underline;
} */

.serv_box:hover a {
    color: var(--color-third);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;

}



.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    display: none !important;
}

.swiper-button-next,
.swiper-button-prev {

    ::slotted(svg),
    svg {
        height: 88%;
        object-fit: contain;
        transform-origin: center;
        width: 100%;
        fill: currentColor;
        pointer-events: none;
        display: none;
    }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary);
}

/* Our Service End */

/* Why Choose US Start */

.why_choose_us {
    /* background-color: var(--color-third); */
    background: url(../imgs/white-bg.jpg) center;
    background-size: cover;
    padding-block: var(--padding-block);
    /* color: #fff;*/
    margin-bottom: var(--margin-block);
}

.why_box {
    background-color: #fff;
    background: radial-gradient(circle, var(--color-third), var(--color-primary));
    color: #000;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    transition: all 0.3s ease;
}

.why_box:hover {
    background: linear-gradient(to left, var(--color-third), var(--color-primary));

}

.why_box i {
    font-size: 45px;
    transition: all 0.3s ease;
}

.why_box h5 {
    font-weight: 600;
    transition: all 0.3s ease;
}

.why_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;

}

.why_box:hover * {
    opacity: 0;
}

.why_box:hover p {
    opacity: 1;
}



/* Why Choose US End */

/* Tagline Start */

.tagline {
    margin-bottom: var(--margin-block);
}

.tagline_img {
    /* background-color: var(--color-third); */
    padding-block: var(--padding-block);
    color: #fff;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tagline img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    z-index: -1;
    border-radius: 10px;
}

.tagline_text {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.tagline_text h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1rem;
}


.tagline_text p {
    margin-block: 10px;
    margin-bottom: 1rem;
}

.tagline_text a {
    margin: 0 auto;
}

/* Tagline End */

/* Footer Start */

footer {
    background: var(--color-secondary);
    background-size: cover;
    padding-block: var(--padding-block);

}

footer h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 22px;
}

footer a {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
    transition: all 0.3s ease;

}

footer a:hover {
    padding-left: 5px;
}



.more_services {
    display: none;
}

#toggleBtn {
    margin-top: 10px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
    color: #ebeaea;
}

.arrow {
    margin-left: 3px;
    transition: transform 0.3s ease;
}

/* Rotate arrow */
.rotate {
    transform: rotate(180deg);
}


.ft_contact {
    color: #fff;
}

.ft_contact a:hover {
    padding: unset;
    text-decoration: underline;
}

.ft_icons a:hover {
    padding: unset;
}

.ft_contact p {
    margin-bottom: 5px;
}

.ft_contact i {
    font-size: 18px;
    margin-right: 3px;
}

.ft_icons h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.ft_icons p {
    color: #fff;
}

.ft_icons div {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.ft_icons i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    padding: 10px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.ft_icons a:hover i {
    transform: rotate(360deg);
    background-color: var(--color-primary);
    color: #fff;
}

.sub_footer {
    border-top: 2px solid #fff;
    padding-block: 10px;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
}

/* Footer End */

/* Comman Banner */

.common_banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.common_banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(40%);
}

.common_banner h2 {
    margin-bottom: 0.5rem;
}

.common_banner p {
    font-size: 16px;
}

.common_banner a {
    color: #fff;
    font-weight: 500;
    color: #f0efef;
}

.common_banner a:hover {
    text-decoration: underline;
    color: #fff;
}

.common_banner strong::before {
    content: ' / ';
    padding-inline: 5px;
}

/* Contact Page Start */
.address_box {
    background: linear-gradient(to right, var(--color-primary), var(--color-third));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    outline: 3px solid var(--color-third);
    border: 3px solid #fff;
}

.address_box a {
    color: #fff;
}

.address_box a:hover {
    text-decoration: underline;
}

.address_box i {
    font-size: 30px;
    margin-bottom: 0.5rem;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.address_box:hover i {
    transform: scale(1.05);
}



.contact_deatils {
    margin-block: var(--margin-block);
}


.contact_deatils .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgb(235, 235, 235);
    padding: 30px;
}

.contact_deatils .form-row {
    display: flex;
    gap: 20px;
}

.contact_deatils .form-row.single {
    flex-direction: column;
}

.contact_deatils .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact_deatils label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact_deatils label span {
    color: red;
}

.contact_deatils input,
.contact_deatils select,
.contact_deatils textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #f5f5f5;
}

.contact_deatils .form-group option {
    font-size: 15px;
    width: max-content;
}

.contact_deatils label::after {
    content: ' *';
    color: red;
}

.contact_deatils button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact_deatils button:hover {
    background: var(--color-third);
}


/* Responsive */
@media (max-width: 600px) {
    .contact_deatils .form-row {
        flex-direction: column;
    }
}


/* Contact Page End */

/* About Page Start */


.vis_mis_sec {
    background: url("../imgs/vision_bg.jpg") no-repeat center fixed;
    background-size: cover;
    padding-block: var(--padding-block);
}

.vis_box {
    background: rgb(255 255 255 / 96%);
    text-align: center;
    padding: 30px;
    box-shadow: 0 0 15px #ccc;
}

.vis_box h5 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 10px 0;
}

.vis_box i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    margin: 0 auto;
    font-weight: 700;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-primary);
}




/* About Page End */

/* Service Page Start */

.service_page {
    margin-block: var(--margin-block);
}

.service_page h3 {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-primary);
    ;
}

.service_page ul {
    padding-left: 1rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    ;
}

.service_content h5 {
    margin-top: 1rem;
    font-weight: 600;
}

.service_page ul li {
    list-style: disc;
    width: calc(50% - 20px);
}

.service_cta_box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.service_cta_box h3 {
    color: #000;
}

.service_cta_box button {
    width: 100%;
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 30px;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service_cta_box button:hover {
    background-color: var(--color-third);

}


/* CTA FORM */

.service-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.service-popup-box {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

#serviceForm {
    padding: 30px;

}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--color-primary);
    color: #fff;


}

.popup-close:hover {
    background-color: var(--color-third);

}

.popup-form-wrap h3 {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 30px;
    color: #111;
    text-align: center;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.popup-thankyou h3 {
    margin-bottom: 10px;
    font-size: 40px;
    color: #111;
    text-align: center;
    font-weight: 700;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 15px;
}

.two_inputs {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.two_inputs>div {
    width: calc(50%);
}

.two_inputs input {
    width: 100% !important;
}

.phone_field {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.phone_field span {
    padding: 12px 14px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

.phone_field input[type="tel"] {
    border: none;
    outline: none;
    padding: 12px 14px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.form-group label::after {
    content: ' *';
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

.popup-submit-btn {
    width: 100%;
    border: none;
    background: var(--color-primary);
    color: #fff;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-submit-btn:hover {
    background: var(--color-third);
}

.popup-thankyou {
    text-align: center;
    padding: 30px 10px;
}

.popup-thankyou p {
    font-size: 16px;
    color: #555;
}


/* Service Page End */



/* SiteMap */
.sitemap_links h3 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 2rem;
}

.sitemap_links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
    justify-content: start;
    align-items: center;
    margin-top: 0.5rem;
}

.sitemap_links ul li {
    width: calc(33% - 20px);
}

.sitemap_links a {
    display: block;
    background-color: var(--color-primary);
    padding: 15px;
    font-weight: 500;
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}


.sitemap_links a:hover {
    background-color: var(--color-secondary);
}


/* NOT FOUND */

.not_found {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}

.not_found a {
    background-color: var(--color-third);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.not_found a:hover {
    background-color: var(--color-primary);

}

/* OUR SERVICES PAGE START  */


.our_services_pg {
    margin-top: var(--margin-block);

    overflow: hidden;
}

.our_services_pg .container-xl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    display: grid;
    grid-template-columns: 60% 40%;
    background: #ffffff;
    padding: 40px;
    width: 60%;
    /* This creates the overlap */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 10px;
}

.card img {
    max-height: 300px;
    object-fit: cover;
}

/* Automatic Staggering */
.card:nth-child(odd) {
    align-self: flex-start;
}

.card:nth-child(even) {
    align-self: flex-end;

}

/* Increment Z-index for each card so the next one is always on top */
.card:nth-child(1) {
    z-index: 2;
    transform: translateX(50px);

}

.card:nth-child(2) {
    padding-top: 100px;

    z-index: 1;
    transform: translate(100px, -100px);
    padding-bottom: 100px;

}



.card:nth-child(3) {
    z-index: 1;

    transform: translate(-130px, -107%);


}

.card:nth-child(4) {
    width: 60%;
    z-index: 2;
    padding-left: 60px;
    transform: translate(0%, -140%);


}

.card:nth-child(5) {
    z-index: 3;
    transform: translate(-25%, -180%);


}

.card:nth-child(6) {
    z-index: 6;
    transform: translate(-10%, -220%);


}

.card:nth-child(7) {
    z-index: 5;
    transform: translate(-10%, -230%);


}

.card:nth-child(8) {
    z-index: 8;
    transform: translate(30%, -330%);
}

.card:nth-child(9) {
    z-index: 9;
    transform: translate(20%, -360%);

}

.card:nth-child(10) {
    z-index: 10;
    transform: translate(20%, -410%);

}

.card:nth-child(11) {
    z-index: 11;
    width: 70%;
    transform: translate(-22%, -530%);

}

.content {
    flex: 1;
    padding-right: 30px;
}

.content h2 {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 0;
    color: var(--color-primary);
}

.content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 99;
}

.content a:hover {
    text-decoration: underline;
}

.image-box {
    flex: 0 0 300px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .card {
        width: 95%;
        flex-direction: column;
        margin-bottom: 20px;
        align-self: center !important;
    }

    .image-box {
        margin-top: 20px;
        flex: none;
    }
}


/* whatsap css */
#whatsapp {
    position: fixed;
    right: 40px;
    bottom: 10%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../imgs/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */

.scroll {
    background: transparent;
    transition: 0.4s ease;
}

.scroll.active {
    background: rgba(0, 0, 0, 0.8);
}

#whatsapp {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

#whatsapp.show {
    opacity: 1;
    visibility: visible;
}

/* THANK YOU */

.thankyou {
    text-align: center;
    margin-block: 4rem;
}

.thankyou p {
    margin-bottom: 1rem;
}

.thankyou a {
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thankyou a:hover {
    background-color: var(--color-secondary);
}