@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F8571F;
    --primary-font: "Oswald", sans-serif;
    ;
    --secondary-font: "Roboto", sans-serif;
}

body {
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
    font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
}

p,
span {
    font-family: "Roboto", sans-serif;
    color: rgb(122, 122, 122);
}

ul,
li,
a {
    list-style: none;
    text-decoration: none;
    color: #0000001f;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -------- Topbar -------- */
.topbar {
    background: #F8571F;
    position: relative;
    overflow: hidden;
}

.topbar .overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001F40, #001F40);
    z-index: 1;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar:hover .overlays {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}


.topbar .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-wrapper {
    position: relative;
    z-index: 10;
}

.logo-bg {
    position: relative;
    padding: 6px;
    border-radius: 15px;
    transition: ease 0.3s;
}

.logo-bg:hover {
    transform: translateY(-5px) scale(1.02);
}

.logo-bg img {
    transition: transform 0.4s ease;
}

.logo-bg:hover img {
    transform: scale(1.05);
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffffff14;
    backdrop-filter: blur(8px);
    border: 1px solid #ffffff26;
    cursor: pointer;
    transition: ease 0.3s;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff26;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.info-item:hover::before {
    width: 300px;
    height: 300px;
}

.info-item:hover {
    transform: translateY(-5px);
    background: #ffffff26;
    box-shadow: 0 6px 20px #0000001f;
}

.icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff80;
    color: #ffffff;
    font-size: 18px;
    transition: ease 0.3s;
    position: relative;
    z-index: 2;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.info-item:hover .icon-circle {
    background: #ffffff;
    color: #F8571F;
    transform: translateY(-3px) scale(1.15) rotate(360deg);
    box-shadow: 0 4px 12px #ffffff4d;
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px #0000001a;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.social-link {
    display: flex;
    gap: 14px;
    position: relative;
    z-index: 10;
}

.social-link .links {
    position: relative;
}

.social-link .links::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8571F, #ffffff);
    transition: opacity 0.4s ease;
    z-index: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.social-link .links:hover::before {
    opacity: 1;
    animation: none;
}

.social-link .links a {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid #ffffff80;
    background: transparent;
    backdrop-filter: blur(8px);
    transition: ease 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link .links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ffffff;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-link .links a:hover::before {
    transform: scale(1);
}

.social-link .links a:hover {
    transform: translateY(-5px) scale(1.15);
    color: #F8571F;
}

.social-link .links a svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.social-link .links a:hover svg {
    transform: rotate(360deg) scale(1.1);
}



/* -------- Navbar -------- */
.main-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    background: #ffffff;
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 10px;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    border: none;
    box-shadow: 0px 8px 25px #00000012;
    padding: 10px 0;
}



.nav-item .nav-link {
    color: #001F40;
    font-size: 16px;
    position: relative;
    font-weight: bold;
    overflow: hidden;
    transition: 0.4s ease;
    border-radius: 10px;
}

.nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F8571F;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: #F8571F;
    background: #F8571F1a;
}

.nav-item .nav-link:hover::before,
.nav-item .nav-link.active::before {
    width: 100%;
}

.gallery-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 14px 0;
    border-radius: 18px;
    background: transparent;
    border: 1px solid #ffffff40;
    backdrop-filter: blur(10px);
    background: #545454fb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px) scale(0.95);
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
    z-index: 999;
}

.gallery-dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #F8571F, #F8571F, #F8571F);
    animation: neonMove 2.5s linear infinite;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.4s ease;
}


.nav-item.dropdown:hover .gallery-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-item.dropdown:hover .gallery-dropdown::before {
    opacity: 1;
    transform: translateY(0);
}

.gallery-dropdown .dropdown-item {
    position: relative;
    padding: 14px 25px;
    color: #F8571F;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.gallery-dropdown .dropdown-item:hover {
    padding-left: 35px;
    color: #F8571F;
    background: rgba(255, 255, 255, 0.10);
}

.gallery-dropdown .dropdown-item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    height: 14px;
    width: 4px;
    border-radius: 50px;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    transform: translateY(-50%) scaleY(0);
    transition: all 0.3s ease;
}

.gallery-dropdown .dropdown-item:hover::before {
    transform: translateY(-10%) scaleY(1);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 0.3em solid #fff;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.quote-btn {
    background: #F8571F;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 10px 22px;
    color: #fff;
    font-weight: 700;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #222222;
}

.btn-shape {
    width: 30px;
    height: 100%;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    margin-left: -5px;
}

.navbar-toggler {
    border: none;
    outline: none;
    background: transparent;
}

.gallery-dropdown .dropdown-item {
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-item {
    transform: translateX(0);
    opacity: 1;
}


/* ----------slider-------------- */
.hero-slider {
    position: relative;
    height: 100%;
    width: 100% !important;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slider .carousel-item {
    height: 91vh;
    position: relative;
    overflow: hidden !important;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 8s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.carousel-item.active img {
    animation: kenBurnsZoom 8s ease-out;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000a8 100%, #080606d9 50%, #110d0bb5 100%);
    z-index: 1;
}

.custom-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.welcome-line {
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
    letter-spacing: 0.7rem;
}

.custom-caption h1 {
    font-size: 120px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-shadow: 0 5px 20px #00000080;
    letter-spacing: 0.2rem;
}

.custom-caption h1 span {
    color: #F8571F;
    letter-spacing: 0.7rem;
}

@keyframes textShine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.slider-btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slider-btn-main:hover::before {
    width: 300px;
    height: 300px;
}

.slider-btn-main:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
}

.slider-bottom-controls {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #F8571F;
    font-size: 10px;
    background: transparent;
    transition: 0.3s ease;
    cursor: pointer;
}

.slider-btn:hover {
    transform: scale(1.15);
}


/* --------About Section------------ */
.about {
    /* padding: 170px 0; */
    /* background: linear-gradient(135deg, #7e2000, #F8571F); */
    position: relative;
    /* overflow: hidden; */
    /* isolation: isolate; */
}



.about::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #f6c0aea6;
    border-radius: 10px;
    z-index: 1;
    right: 20px;
    bottom: 5px;
    transform: rotate(-101deg) skew(-16deg);
    box-shadow: 211px 0px #f6c0aea6;
    animation: rotateDiamond 80s linear infinite;
}

.about::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #f6c0aea6;
    border-radius: 10px;
    z-index: 1;
    right: 240px;
    bottom: 30px;
    transform: rotate(-101deg) skew(-16deg);
    /* box-shadow:10px 20px  #f6c0aea6; */
}

.about .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.about .floating-elements .element {
    position: absolute;
    background: #f6c0ae5f;
    /* border: 2px solid #ffffff47; */
    border-radius: 5px;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 11%;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about .about-text .title {
    font-weight: 800;
    position: relative;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #482213;
}

.about .about-text .sub-title {}

.about-btn {
    /* background: transparent; */
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-size: 1.1rem;
    background: #ffffff;
    color: var(--primary-color);
    border-color: #F8571F;
}

.about-info-btns .read-more {
    background-color: var(--primary-color);
    color: white;
}

.about-btn:hover {
    transform: translateY(-3px);
    padding-right: 52px;
    background-color: #F8571F;
    color: white;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translateX(8px);
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transform-style: preserve-3d;
}

.about-img {
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
    border-color: #ffffff99;
}

/* ------- our services ---------- */
.services-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #fffffff6 100%); */
    /* padding: 120px 0; */
    /* overflow: hidden; */
    position: relative;
}


.services-section .section-title {
    position: relative;
    font-weight: 800;
    font-size: 3.5rem;
}


.service-card {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.134);
    transition: 0.3s ease;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid #ffffff;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #fefefe, #F8571F);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s ease;
}

.service-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #F8571F, #F8571F);
}

.service-card .icon-container::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c8003500;
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:hover .icon-container::after {
    transform: scale(1.8);
}

.service-card .icon-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%) sepia(145%) saturate(17%) hue-rotate(145deg) brightness(92%) contrast(140%);
}

.service-card:hover .icon-container img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(103%);
    transform: scale(1.1);
}

.service-card h3 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #F8571F;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: #F8571F;
    border-radius: 2px;
    transition: 0.3s ease;
}

.service-card:hover h3 {
    color: #F8571F;
}

.service-card:hover h3::after {
    width: 60px;
    background: #F8571F;
}

.service-card .btn-service {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #F8571F;
    color: #F8571F;
    margin: auto;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card .btn-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #F8571F, #F8571F);
    transition: width 0.4s ease;
    z-index: -1;
}

.service-card:hover .btn-service {
    color: #ffffff;
    border-color: transparent;
}

.service-card:hover .btn-service::before {
    width: 100%;
}

.service-card .btn-service svg {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-service img {
    transform: translateX(5px);
}


.additional-services {
    position: relative;
    padding: 70px 60px;
    margin-top: 90px;
    color: #ffffff;
    background:
        linear-gradient(135deg, #ff6a2b 0%, #b52a00 50%, #5a1300 100%);
    overflow: hidden;
    box-shadow:
        0 30px 80px #00000059,
        inset 0 1px 0 #ffffff26;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.additional-services::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 20% 20%, #ffffff2e, transparent 45%),
        radial-gradient(circle at 80% 80%, #00000059, transparent 55%);
    z-index: 0;
}

.additional-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #ffffff14 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.15;
    z-index: 0;
}

.additional-services:hover {
    transform: translateY(-14px) scale(1.015);
    box-shadow:
        0 50px 120px #00000080,
        inset 0 1px 0 #ffffff40;
}

.additional-services h4 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow:
        0 6px 20px #00000066,
        0 0 12px #ff8c5a99;
}

.additional-services p {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 9%;
    background-color: #fdc8b66f;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 100px;
    background-color: #fdc8b66f;
    height: 100px;
    top: 20%;
    right: 7%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
    background: #F8571F;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg) scale(0.5);
    }

    50% {
        transform: translateY(-20px) rotate(50deg) scale(1);
    }
}


/* ----------Our Client------------ */
.our-client {
    /* padding: 100px 0; */
    position: relative;
}


.section-header {
    text-align: center;
}

.section-header .icon {
    background-color: #f8d4c8;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: auto;
}

.section-header .icon img {
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(700%) hue-rotate(350deg) brightness(100%) contrast(105%);
}

.client-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* color: #ffffff; */
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.client-title span {
    color: var(--primary-color);
}



.section-subtitle {
    color: #F8571F;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.client-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background-color: white;
    box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.091);
}

.client-info-container {
    z-index: 2;

}

.client-card:hover {
    box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.176);
    transform: translatey(-5px);
}

.client-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    right: 20px;
    top: -60px;
}

.client-icon-wrapper::after {
    content: "";
    position: absolute;
    height: 60%;
    width: 60%;
    background-color: var(--primary-color);
    border-radius: 5px;
    z-index: -1;
    transform: rotate(45deg);
    bottom: -18px;
}

.client-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}


.client-info {
    text-align: center;
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d3d3d;
    transition: color 0.3s ease;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.client-card .client-company {
    color: #515151;
}

.client-card .client-msg p {
    color: #1f1f1f;
    text-align: left;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.client-card .q-icon {
    right: 40px;
    bottom: 40px;
    color: gray;
    font-size: 40px;
}

.client-card .review-star .icon {
    color: #ffa534;
    font-size: 25px;
}

.client-card .location .icon {
    min-width: 20px;
}

.client-card .location .icon svg {
    color: #515151;
    font-size: 18px;
}

.client-card .location .info {
    color: #515151;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.client-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background-color: white;
    color: #F8571F;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #F8571F;
    position: relative;
    overflow: hidden;
}

.client-btn:hover {
    background-color: #F8571F;
    color: white;
    transform: translateY(-3px);
}

.client-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #ffffff80;
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.client-btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.client-btn svg {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.client-btn:hover {
    transform: translateX(5px);
}

.view-more-section {

    position: relative;
}

.view-more-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
}


/* ------------ Advanced Turban Swiper ----------- */
.decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gallery-section {}

.hero-swiper {
    position: relative;
    overflow: hidden;

}

.turban-gallery {
    text-align: center;
    position: relative;
    z-index: 5;
}

.turban-gallery h2 {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 60px;
    background: linear-gradient(135deg, #fff 20%, #F8571F 50%, #F8571F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.turban-gallery h2::before {
    content: "";
    width: 120px;
    height: 3px;
    background: #F8571F;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}


.heroSwiper {
    position: relative;
    z-index: 5;
}

.gallery-slider {
    overflow: visible;
}


.gallery-slider .swiper-slide {
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.85);
    opacity: 0.35;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px) brightness(0.6);
    box-shadow: 0 25px 60px #00000099;
    width: 200px;
    height: 320px;

}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
    z-index: 10;
}

.gallery-slider .swiper-slide-active img {
    transform: scale(1.08);
}


.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    top: 50%;
    bottom: auto;
    width: 64px;
    height: 64px;
    background: #0000008c;
    backdrop-filter: blur(18px);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.heroSwiper .swiper-button-prev {
    left: -20px;
    right: auto;
}

.heroSwiper .swiper-button-next {
    right: -60px;
    left: auto;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
    color: #F8571F;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 25px #F8571F80;
    background: #ffffff;
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    margin: 0 8px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #F8571F;
    transform: rotate(45deg);
    /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
}

.swiper-pagination-bullet-active {
    background: #F8571F;
    transform: rotate(45deg) scale(1.2);
}


/* .gallery-info {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
} */

.view-all {
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    /* gap: 14px; */
    padding: 18px 52px;
    border-radius: 50px;
    background: #ffffff0d;
    backdrop-filter: blur(18px);
    border: 2px solid #F8571F;
    color: var(--primary-color);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.view-all:hover {
    background: linear-gradient(135deg, #F8571F, #F8571F);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px #F8571F;
}

.view-all a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.4s ease;
}

.view-all:hover a {
    color: white;
}



@keyframes blob1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, 40px);
    }
}

@keyframes blob2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-60px, -50px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ---------Footer section -------- */
.content h1 {
    color: #F8571F;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #6c757d;
    font-size: 1.1rem;
}

.footer {
    background-color: #1a1a1a;
    color: #F8571F;
    padding-top: 60px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F8571F, #F8571F);
}

.footer-about img {
    transition: transform 0.3s ease;
}

.footer-about img:hover {
    transform: scale(1.05);
}

.footer-about p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F8571F;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #F8571F;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F8571F;
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #adb5bd;
    line-height: 1.5;
}

.footer-contact svg {
    color: #F8571F;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.1rem;
}

.footer-form {
    background-color: #ffffff0d;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ffffff1a;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    font-size: 10px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #ffffff14;
    border: 1px solid #ffffff33;
    border-radius: 4px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: #F8571F;
    background-color: #ffffff1f;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    width: 100%;
    padding: 14px;
    background-color: #F8571F;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.footer-form button:hover {
    background-color: #F8571F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #F8571F;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #F8571F;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

.footer-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.footer-decoration-1 {
    top: 30%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 20px solid #F8571F;
    border-radius: 50%;
}

.footer-decoration-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 15px solid #F8571F;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* -------------back to top ------------ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F8571F 0%, #F8571F 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
    box-shadow: 0 4px 15px #F8571F;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #F8571F 0%, #F8571F 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px #F8571F;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}


/*------------------------------contact page----------------------*/


.modern-contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg,
            rgba(15, 10, 10, 0.97) 0%,
            rgba(30, 15, 20, 0.95) 50%,
            rgba(15, 10, 10, 0.97) 100%);
    overflow: hidden;
}

.contact-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-orbital {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.03;
    animation: orbitalFloat 20s linear infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, #F8571F, #c80035);
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 10%;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    animation-delay: -5s;
    animation-direction: reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 80%;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    animation-delay: -10s;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    animation: gridMove 40s linear infinite;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-info-container .info-header p {
    font-size: 17px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.contact-header .section-label .section-header .icon {
    background: rgba(212, 175, 55, 0.1);
}

.label-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F8571F;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #F8571F, transparent);
}

.contact-heading {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
}

.heading-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.heading-line:nth-child(1) {
    animation-delay: 0.4s;
}

.heading-line:nth-child(2) {
    animation-delay: 0.6s;
}

.heading-line:nth-child(3) {
    animation-delay: 0.8s;
}

.heading-line.accent {
    background: linear-gradient(135deg,
            #FFFFFF 0%,
            #F8571F 40%,
            #F8571F 60%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite, fadeInUp 0.8s ease 0.6s forwards;
}

.contact-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.modern-contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #f8551f77;
    box-shadow: #f8551f77 0 20px 60px #0000004d,
        inset 0 1px 0 #ffffff1a;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(200, 0, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.modern-contact-form:hover::before {
    opacity: 1;
}

.contact-field {
    border-radius: 16px !important;
    outline: none !important;
    border: 1px solid #F8571F !important;
    padding: 16px 20px !important;
    background: #ffffff0d !important;
    color: #ffffffe6 !important;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-group select {
    background-color: red;
}

.form-group select option {
    color: var(--primary-color);
}

.form-group select option:hover {
    background-color: var(--primary-color) !important;
    color: white;
}

.contact-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-field:focus {
    border-color: #F8571F !important;
    background: rgba(212, 175, 55, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.contact-field:hover:not(:focus) {
    border-color: #F8571F !important;
}

.contact-info-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: #f8551f77 0 20px 60px #0000004d,
        inset 0 1px 0 #ffffff1a;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.contact-info-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(200, 0, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contact-info-container:hover {
    /* border: 0.1px solid #f8551f77; */
}

.contact-info-container:hover::before {
    opacity: 1;
}

.contact-info-container .info-header h3 {
    color: rgb(220, 217, 217);
}

.contact-info-container .info-cards .info-card .icon {
    color: var(--primary-color);
    font-size: 25px;
    border-radius: 10px;
}

.contact-info-container .info-cards .info-card .info p {
    color: rgb(186, 184, 184);
    font-size: 18px;
}

.contact-info-container .social-links .social-header p {
    color: rgb(216, 214, 214);
    font-size: 25px;
}

.contact-info-container .social-links .icon {
    height: 50px;
    width: 50px;
    background: #ffffff0d !important;
    color: rgb(216, 214, 214);
    border-radius: 10px;
    font-size: 25px;
}

/* Enhanced Button */
.gradient-btn {
    padding: 18px 50px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            #F8571F 0%,
            #F8571F 100%);
    border: none;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #F8571F 0%,
            #F8571F 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.gradient-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    padding: 2px;
    background: linear-gradient(135deg,
            #F8571F,
            #F8571F,
            #F8571F);
    background-size: 200% 200%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
    animation: borderRotate 3s linear infinite paused;
}

.gradient-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 40px #f8551f88,
        0 0 0 1px #f8551fa2;
    color: #000;
    letter-spacing: 1px;
}

.gradient-btn:hover::before {
    opacity: 1;
}

.gradient-btn:hover::after {
    opacity: 1;
    animation-play-state: running;
}

.contact-map {
    height: 100%;
    /* min-height: 500px; */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
    /* box-shadow:
        0 20px 60px hsla(0, 0%, 0%, 0.40),
        inset 0 1px 0 #ffffff1a;
    border: 1px solid #f8551f72; */
}

.contact-map iframe {
    width: 100%;
    /* height: 100%; */
    border: none;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0) contrast(1.2);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 50%,
            rgba(200, 0, 53, 0.1) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-map:hover .map-overlay {
    opacity: 1;
}

.contact-info-side {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: #F8571F;
    box-shadow: 0 20px 40px #00000033;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f8551f96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: #F8571F;
}




@media (max-width: 992px) {
    .modern-contact-section {
        padding: 80px 0;
    }

    .form-map-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        /* min-height: 400px; */
        order: -1;
    }

    .modern-contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .contact-desc {
        font-size: 1rem;
    }

    .gradient-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .modern-contact-form {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .section-label {
        flex-direction: column;
        gap: 8px;
    }

    .label-line {
        width: 60px;
    }

    .contact-info-side {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/*----------------------cta section------------------------*/
.cta-section {
    background-color: #fadcd3;
}

.cta-container .section-header .icon {
    height: 100px;
    width: 100px;
    background-color: #3b1a0da2;
}

.cta-container .section-header .icon img {
    height: 60px;
}

.cta-container .section-header .heading {
    color: #482213;
    font-family: var(--secondary-font);
    font-weight: 500;
}

.cta-container p {
    color: #99604a;
    font-family: var(--secondary-font);
    font-size: 17px;
}

.cta-container .btns button {
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    padding: 10px 18px;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.091);
    border-radius: 10px !important;
}

.cta-container .btns button svg {
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.cta-container .btns .contact-btn {
    background-color: var(--primary-color);
    color: white;
}

.cta-container .btns button:hover {
    padding-right: 30px;
    background-color: var(--primary-color);
    color: white;
    transform: translatey(-2px);
}

.cta-container .btns button:hover svg {
    opacity: 1;
    transform: translate(20px);
}

.cta-imgs img {
    height: 280px;
}


/*-------------------------video gallery-------------------------*/
.video-card-wrapper {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;

}

.video-card-wrapper iframe {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.video-card-section .yt-icon {
    font-size: 100px;
    color: #fcd8cb77;
    z-index: -1;
    top: -100px;
    animation: bounce 6s ease-in-out infinite;

}

.video-card-section .vd-icon {
    font-size: 200px;
    color: #fcd8cb77;
    z-index: -1;
    right: 100px;
    top: -180px;
    animation: bounce 6s ease-in-out 2s infinite;

}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) scale(0.5);
    }

    50% {
        transform: translateY(-20px) scale(1);
    }
}


/*----------------------------------Gallery page----------------------*/
.pagadi-section {
    background: #fff7ef;
    padding: 150px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.pagadi-card {
    background: #fff;
    max-width: 400px;
    margin: auto;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.pagadi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.img-wrapper:hover img {
    transform: scale(1.1);
}

.pagadi-title {
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}



/*---------------------------------safa animation-----------------------------*/
.safa-scroll-section {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.safa-scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
    animation-play-state: paused;
    /* IMPORTANT */
}


.safa-scroll-track .img {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4bb9a;
    border-radius: 50%;
    margin: 0px 20px;
    overflow: hidden;
    padding: 20px;
}

.safa-scroll-track .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.safa-scroll-track img:hover {
    animation-play-state: paused;
}



/*--------------------------------Client page -------------------------------*/

.client-section {
    background: #F8571F1d;
    padding: 120px 0;
}


.title-design {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.title-design::after {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 5px;
}

.client-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.client-card h5 {
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.client-card p {
    font-size: 14px;
    color: #555;
}

.client-page-cards .client-card p {
    color: #1f1f1f;
    text-align: left;
    font-size: 16.5px;
}

@media (max-width: 992px) {
    .title-design {
        font-size: 40px;
    }

    .title-design::after {
        width: 60px;
        height: 4px;
        bottom: -8px;
    }
}

.client-page-cards .client-name {
    font-size: 1.5rem;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/*-------------------------------Services page -------------------------*/
.service-page {
    background: #F8571F1d;
}

.services-list {
    padding: 140px 0;
    /* background: linear-gradient(135deg, transparent 0%, #ffffff 100%); */
}

.service-item {
    background: linear-gradient(135deg, #F8571F, #F8571F);
    color: #fff;
    font-weight: 600;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    background: linear-gradient(135deg, #F8571F, #F8571F);
    padding: 40px;
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
}