:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    --secondary: #364153;
    --dark: #121212;
    --light: #FFFFFF;
    --gray-bg: #F9F9F9;
    --gray-text: #44474E;
    --border: #ECF0F1;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
    overflow-x: hidden;
}*/

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #364153;
    margin: 0;
    font-weight: 400;
    background-color: var(--light);
    line-height: 30px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

strong{font-weight: 600;}

/* ================== PRELOADER ================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-img {
    width: 150px;
    height: auto;
    animation: pulseLoader 1.5s ease-in-out infinite;
}

@keyframes pulseLoader {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* ============================================== */

img {
    max-width: 100%;
    display: block;
}

.container {
    margin: 0 auto;
    position: relative;
    max-width: 1600px;
}

/* Typo */
h1,
h2,
h3,
h4 {
    color: var(--dark);
    line-height: 1.2;
}

span {
    color: var(--primary);
}

.section-subtitle {
    display: inline-block;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}


.btn-primary {
    background: linear-gradient(102.94deg, #964900 0%, #FF8928 100%);
  /*  border-radius: 6px;*/
    color: #fff;
    /*padding: 16px 45px;*/
}


.btn-primary:hover {
    background: var(--primary-dark);
    background: linear-gradient(102.94deg, #FF8928 0%, #964900 100%);
    /* transform: translateY(-3px);*/
}

.btn-outline {
    border: 2px solid #222;
    color: #222;
    /* padding: 16px 45px;*/
}

.btn-outline:hover {
    background: var(--secondary);
    color: #FF8928;
}

.btn-dark {
    background: var(--dark);
    color: var(--light);
}

.btn-outline-white {
    border: 2px solid var(--light);
    color: var(--light);
}
.btn-submit{font-family: "Poppins", sans-serif;border: 0px;
  font-size: 18px;}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 20px 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}




.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;animation: 1s .2s zoomIn both
}

.scrolled .logo img {
    max-height: 70px;
}

.scrolled {
    padding: 5px 0px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.mobile-btn {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;    animation: 1s .3s fadeInUp both;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    color: #364153;
    transition: var(--transition);
    font-weight: 400;
}

.nav-menu a i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #173C6E;
    font-weight: 500;
}

/* Sub-menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 15px;
    color: var(--gray-text);
}

.sub-menu li a:hover {
    color: var(--primary);
    background: rgba(230, 126, 34, 0.05);
}

.back-btn {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 10px;
    transition: var(--transition);
}

/* title */

.title-small {
    background: #964900;
    padding: 1px 10px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

h1.mainTitle {
    font-size: 96px;
    font-weight: 700;
    /* margin: 20px 0; */
    line-height: 102px;
    color: #222;text-transform: uppercase;
}

h2.mainTitle {
    font-size: 48px;
    font-weight: 700;
    /* margin: 20px 0; */
    line-height: 60px;
    color: #222;
    text-transform: uppercase;margin-bottom: 10px;
}

.mainTitle .mainTitle-span {
    display: block;
}

.mb20 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #222;
}

.smallTitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #222;
}

/* .hero-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 35px;
    max-width: 500px;
} */


.hero-btns .btn-primary {
    margin-right: 10px;
    margin-bottom: 10px
}

.hero-btns .btn-outline {
    background: #fff;
}

/* Hero Section */

.hero {
    padding: 155px 0 0px;
    background: #fff;
    min-height: auto;
}

.hero {
    position: relative;
    background: url('../images/banner-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 245, 235, 0.97);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0px;
}

/* .hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    color: var(--dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 35px;
    max-width: 500px;
} */
.main-slider {
    padding-top: 10px;
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fade-out state triggered by JS on slide change */
.hero-content.hero-text-fade {
    opacity: 0;
    transform: translateY(10px);
}

.hero-btns {
    margin-top: 20px;
}


.hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.main-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: auto;
    padding-bottom: 100px;
}

.main-slider .item img {
    width: 100%;
    /* height: 600px; */
    height: auto;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -0px;
    left: 5px;
    width: 135px;
    height: 135px;
    background: var(--light);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-bottom-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    position: absolute;
    bottom: 40px;
    /* transform: translateY(-50%); */
    background: rgba(255, 255, 255, 0.2);
    /* backdrop-filter: blur(5px); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    font-size: 18px;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.prev-btn {
    left: 7px;
}

.next-btn {
    right: 7px;
}

.hero-bottom-controls {
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.thumbnails-wrapper {
    width: 100%;
}

.thumbnails {
    width: 100%;
}

.thumb {
    height: 166px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    /* border: 3px solid transparent; */
    transition: var(--transition);
    position: relative;
}

.thumb.active {
    border-color: var(--primary);
}

.thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumb-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: var(--primary); */
    color: var(--light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2;
}

.thumb:hover .thumb-number,
.thumb.active .thumb-number {
    opacity: 1;
    visibility: visible;
}

.thumb:hover img {
    filter: brightness(0.7);
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.circle-text svg {
    width: 100%;
    height: 100%;
}

.circle-text path {
    fill: none;
}

.circle-text text {
    font-size: 12px;
    font-weight: 400;
    fill: var(--dark);
}

.experience-badge .year {
    font-size: 50px;
    font-weight: 400;
    color: #333;
    transform: rotate(-45deg);
}

.thumbnails {
    margin-bottom: 0;
}

/* .thumb {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow);
} */

.thumb.active {
    /* border-color: var(--primary); */
    transform: translateY(-5px);

}

.thumb.active img {


    filter: brightness(0.7);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--light);
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.prev-btn,
.next-btn {
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--secondary);
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    color: #fff;
}

.slide-number {
    font-weight: 700;
    font-size: 22px;
    min-width: 30px;
    text-align: center;
}

/* About Section */
section {
    padding: 60px 0;
}

.about {
    padding: 60px 0px 100px 0px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images .img-1 {
    width: 76%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-images .img-2 {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 46%;
    border-radius: 20px;
    border: 10px solid var(--light);
    box-shadow: var(--shadow);
}

.dots-pattern {
    position: absolute;
    top: 26%;
    right: 7%;
}


/* .about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
} */

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-text);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    border-top: 1px solid #C4C6CF;
    padding-top: 30px;
}

/* .feat-item {
    display: flex;
    gap: 15px;
} */

.feat-item i {
    color: var(--primary);
    font-size: 24px;
}

.feat-item h4 {
    margin-bottom: 5px;
    color: #002046;
    font-size: 16px;
}

.feat-item p {
    font-size: 14px;
    line-height: 26px;
}

/* Stats Section */
.stats {

    background: url(../images/counter-bg.png) repeat;
    color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.stat-card h3 {
    font-size: 64px;
    color: var(--light);
    display: inline-block;
    line-height: 64px;
}

.stat-card span {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 64px;
}

.stat-card p {
    color: #fff;
    margin-top: 0px;
    text-transform: uppercase;
    font-size: 24px;

}

/* Services */
.services {

    background: url(../images/topography-bg.png) repeat;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--light);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.09);
    color: #002046;
}

.arrow-btn .fas {
    font-size: 16px;
}


.arrow-btn:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.services-grid {
    width: 100%;
}

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 350px;
}

.service-card:hover,
.service-card.active {
    /*  background: #f0f0f0;*/
    transform: translateY(-10px);
}

.service-card .s-icon img {
    display: block;
    width: auto;
}

/* .service-card:hover .s-icon,
.service-card.active .s-icon { color: var(--light); } */

.service-card h4 {
    margin-bottom: 0px;
    font-size: 20px;
    color: #002046;
}

/*.service-card:hover h4,
.service-card.active h4 {
    color: var(--light);
}*/

.service-card p {
    color: #44474E;
    margin-bottom: 0px;

}

/*.service-card:hover p,
.service-card.active p {
    color: rgba(255, 255, 255, 0.8);
}*/

.read-more {
    color: #964900;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/*.service-card:hover .read-more,
.service-card.active .read-more {
    color: var(--light);
}*/

/* Projects */

.projects {
    background: #FFF6EF;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    min-width: inherit;
}

.tab-btns {
    display: flex;
    gap: 15px;
    background: #FFE9D8;
    padding: 3px;
    border-radius: 6px;
}

.tab-btn {
    padding: 12px 32px;
    border-radius: 5px;
    border: 0px solid var(--border);
    background: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.tab-btn.active {

    background: linear-gradient(102.94deg, #964900 0%, #FF8928 100%);
    border-radius: 6px;
    color: #fff;
    padding: 12px 32px;
}

.projects-grid {
    width: 100%;
}

.projects-grid.owl-carousel.owl-drag .owl-item {
    padding-bottom: 10px;
}

.project-card {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 10px;overflow: hidden;
}

.project-img {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-img:hover img {
    transform: scale(1.1);
}

.project-info {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);*/
    color: var(--light);
    display: flex;
    justify-content: space-between;
   /* align-items: center;*/background: #fff;



    flex-direction: column;
}

.project-info h4 {
    color: #002046;
    font-size: 20px;
    font-weight: 400;flex: 1;
}

.project-detail{display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.proj-link {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #002046;

    background: #fff;
    border: 1px solid #002046;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
    border-radius: 25px;
    transform: rotate(-45deg);
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e0b590;
    width: 12px;
    height: 12px;
    margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #f48324;
}

/*.owl-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.owl-dot.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: scale(1.2);
}

.owl-dot:hover {
    background: var(--primary-light) !important;
}*/

/* Clients */
.clients {
    background: #FBFBFB;
}

.section-tagline {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 18px;
}

.mainTitle-client {
    font-size: 32px;
    text-transform: uppercase;
}

.client-logos {
    width: 100%;
    margin-top: 50px;
}

.client-logos.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}



.client-logo img {
    display: block;
    cursor: default;
    width: auto !important;max-width: unset;
}

.client-logo:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Land Section */


.land-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.land-grid-dot {
    position: absolute;
    top: 0;
    LEFT: 44%;
}

.land-grid p {
    padding: 10px 0px 20px 0px;
}

.land-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.land-list li {
    position: relative;
    padding-left: 32px;
}

.land-list li i {
    position: absolute;
    top: 5px;
    left: 0;
    color: #964900;
}

.land-list span {
    font-weight: 700;
}

.land-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.land-content h4 {
    color: #222;
    font-size: 22px;
}

.land {
    position: relative;
    margin: 60px 0px;
    padding: 0;
}

.land-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.land-image img {
    width: 100%;
    border-radius: 10px 0 0 10px;
    display: block;
    height: 100%;
}



/* CTA */
.cta-banner {
    padding: 0 0;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    color: var(--light);
    position: relative;
    /* overflow: hidden; */
    padding: 52px 0 0 0;
    height: 280px;
}

.cta-banner .container {
    margin: 0 auto;
    position: relative;
    max-width: 1600px;
    height: 100%;
    align-items: center;
    display: flex;
}

.cta-banner::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 50px;
}

.cta-banner .left {
    width: 668px;
    position: absolute;
    z-index: 3;
    top: 0;
    height: auto;
}

.cta-banner .left img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* .cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
} */

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 68%;
    margin-left: auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-text h3 {
    color: var(--light);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-text h3 span {
    color: var(--dark);
}

.cta-text p {
    font-size: 18px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btns {
    /* display: flex;
    gap: 20px; */
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btns .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}


.cta-btns .btn.btn-outline-white {
    border: 1px solid #ffffff6b;
    color: var(--light);
}

.cta-btns .btn.btn-light {
    background: #002046;
    color: #fff;
    border: 1px solid #002046;
}

.btn-light:hover {
    background: var(--gray-bg);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background: #FFF9F2 url(../images/footer-bg.png) no-repeat;
    position: relative;
    background-size: cover;
    color: #fff;font-size: 16px;

}

.footer-about p {
    color: #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-right: 50px;
}

/*.footer-logo {
    max-width: 260px;
}
*/
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    border: 1px solid #222222;
    /*filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));*/
    border-radius: 40px;

}

.social-links a:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 26px;
    position: relative;


    background: linear-gradient(90deg, #8a3f00, #c96a1a);
    /* orange → dark brown */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* standard (future support) */
    background-clip: text;
    color: transparent;
    font-weight: 500;


}


.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #222;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact .contact-item {
    /* display: flex;
    gap: 15px; */
    margin-bottom: 20px;
    color: #222;
}

.footer-contact .contact-item a {
    color: #222;
    word-break: break-word;
}

.footer-contact .contact-item a:hover {
    text-decoration: underline;
}

.footer-contact .contact-item i {
    color: var(--primary);
    font-size: 20px;
    padding-top: 5px;
    position: absolute;
}

.contact-item p {
    padding-left: 40px;
    ;
}

.contact-item p span {
    color: #222;
    /*width: 150px;*/
    display: inline-block;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #22222230;
    display: flex;
    justify-content: space-between;
    color: var(--gray-text);
    font-size: 16px;
}

.footer-bottom a {
    color: #222;
    text-decoration: underline;
}

/* Responsive */
/* Responsive Styles */
@media (max-width: 1600px) {

    .container {
        padding: 0 35px;
    }

    .footer-about {
        padding-right: 0;
    }

    .hero .container {
        padding: 35px;
    }

    .cta-content {
        width: 62%;
    }

    .cta-banner .left {
        width: 540px;
        height: 100%;
    }

}



@media (max-width: 1400px) {




    h1.mainTitle {
        font-size: 66px;
        line-height: 76px;
    }

    .btn {
        padding: 16px 32px;
    }

    h2.mainTitle {
        font-size: 38px;
        line-height: 50px;
    }

    .about-grid {
        gap: 40px
    }

    .stat-card h3,
    .stat-card span {
        font-size: 54px;
        line-height: 54px;
    }

    .stat-card p {
        font-size: 20px;
    }

    .cta-text h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .cta-btns .btn {
        padding: 10PX 15PX;
    }

    .cta-content {
        width: 50%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cta-banner .left {
        width: 50%;
        height: 100%;
    }

    .thumb {
        height: 140px;
    }

    .experience-badge {
        height: 90px;
        width: 90px;
    }

    .experience-badge .year {
        font-size: 30px;
    }

    .project-info h4 {
        font-size: 18px;
    }

    .footer-grid {

        grid-template-columns: 1fr 1fr 1fr 1.5fr;

    }
    .logo {
    max-width: 170px;

}
.nav-menu {
 
    gap: 20px;
 
}


}



@media (max-width: 1023px) {

    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-btn {
        display: block;
    }

    .web-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
        z-index: 1000;
        gap: 0px;background: #222;padding-top: 70px;
    }
    .nav-menu li{width: 100%;}
  .nav-menu li a {
    color: #fff;
    width: 100%;
    display: block;padding: 10px 30px;border-bottom: 1px solid #ffffff36
}

.nav-menu a:hover, .nav-menu a.active {
    color: #fff ; 
    background: #FF8928;
}

    .nav-menu.active {
        right: 0;
    }

    .nav-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .nav-btn .btn {
        width: 80%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 20px;
    }

    .sub-menu {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: transparent;
    text-align: left;
    display: none;
    padding: 0 0 0 0px;
}

    .has-dropdown.active .sub-menu {
        display: block;
    }

    /*    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 15px;
        gap: 10px;
    }
*/


    .hero-content h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .hero-content {
        gap: 10px;
    }

    /* .experience-badge { left: 0% !important; } */


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .project-info h4 {
        font-size: 16px;
    }

    h2.mainTitle {
        font-size: 36px;
        line-height: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cta-banner .left {
        width: 100%;
        position: relative;
    }

    .cta-banner {
        height: auto;
        padding: 3px 0px 0px 0px;
    }

    .cta-content {
        width: 100%;
        padding: 30px 0px;
    }

    .cta-banner::after {
        top: 81px;
    }

    .stat-card h3,
    .stat-card span {
        font-size: 44px;
        line-height: 54px;
    }

    .stat-card p {
        font-size: 20px;
    }

    .hero .container {
        padding: 30px 15px;
    }

    .btn {
        padding: 16px 35px;
    }

    .thumb {
        height: 120px;
    }

    .mainTitle .mainTitle-span, .mainTitle .about-block  {
        display: inline-block;
    }

}

@media (max-width: 800px) {
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 30px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 15px;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .hero-bottom-controls {
        flex-direction: column;
        bottom: 10px;
    }

    .land-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .land-image {
        position: relative;
        padding: 0px 15px;
        width: 100%;
    }

    .land-image img {
        border-radius: 10px;
    }

    .cta-banner::after {
        top: 61px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    .stat-card h3,
    .stat-card span {
        font-size: 44px;
        line-height: 54px;
    }

    .stat-card p {
        font-size: 20px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }



    .hero-btns .btn-primary,
    .btn-outline {
        padding: 15px 30px;
        line-height: 22px;
    }

    .hero-content {
        gap: 10px;
        ;
    }

    .about {
        padding: 30px 0px 30px 0px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;

    }

    .img-2 {
        display: none;
    }

    .dots-pattern {
        display: none;
    }

    .about-images .img-1 {
        width: 100%;
    }

    h2.mainTitle {
        font-size: 32px;
        line-height: 44px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    section {
        padding: 30px 0px;
    }



    .tab-btns {
        margin-top: 20px;
    }

    .projects .section-header {
        flex-direction: column;
        align-items: flex-start;
    }




    .footer-bottom {
        flex-direction: column;
        text-align: center;font-size: 15px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-about {
        padding-right: 0px;
    }





}



@media (max-width: 600px) {

    .logo img {
        max-height: 70px;
    }

    .hero {
        padding: 114px 0 0px;
    }

    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .stat-card h3 {
        font-size: 44px;
        line-height: 54px;
    }

    .stat-card {
        text-align: center;
        padding: 0 0 10px 0px;
    }

    .stat-icon {

        margin: 0 auto 0px;
    }



    .cta-banner {
        height: auto;
        padding: 30px 0px 30px 0px
    }

    .cta-banner .left {
        width: 100%;
        position: relative;
        margin-top: 0px;
        top: -24px;
        display: none;

    }

    .cta-content {
        width: 100%;
    }

    .footer {
        padding: 30px 0px;font-size: 16px;
    }



    .footer-grid {
        margin-bottom: 20px;
        padding-bottom: 15px;

    }

    .footer-about {
        padding-right: 0px;
        padding-bottom: 15px;
    }

    .cta-banner::after {
        top: 0px;
    }

    .cta-btns {
        justify-content: center;
    }



    .tab-btn.active {
        padding: 12px 25px;
    }

    .experience-badge .year {
        font-size: 30px;
    }

    .experience-badge {
        position: absolute;
        top: -1px;
        left: -1px;
        width: 100px;
        height: 100px;
    }

    .thumb {
        height: 115px;
    }
.footer-links h4{margin-bottom: 10px;}
.footer-links ul li {
    margin-bottom: 6px;
}

}

@media (max-width: 479px) {

    .tab-btns {
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .client-logos {
        margin-top: 20px;
    }

    .land-image {
        position: relative;
        padding: 0px 15px;
        width: 100%;
    }

    .land-image img {
        border-radius: 10px;
    }

    .header {
        padding: 10px 0px;
    }

    .thumb {
        height: 100px;
    }

    .experience-badge .year {
        font-size: 20px;
    }

    .experience-badge {
        position: absolute;
        top: -1px;
        left: -1px;
        width: 90px;
        height: 90px;
    }

    .footer-about .logo img {
        height: auto;
    }

}

/* =======================================
   INNER PAGE HEADER / BREADCRUMB
   ======================================= */

.inner-header {
    padding: 180px 60px 130px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.88) 0%, rgba(22, 45, 80, 0.85) 100%), url('../images/about-main.jpg') center bottom/cover no-repeat;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.inner-header::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.inner-header-content {
    position: relative;
    z-index: 2;
}

.inner-h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 16px 0 24px;
    text-transform: uppercase;
}

.inner-h1 span {
    color: var(--primary);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.breadcrumb .bc-current {
    color: rgba(255, 255, 255, 0.85);
}

/* =======================================
   ABOUT INTRO
   ======================================= */


.about-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-detailed-img {
    position: relative;
    padding-bottom: 80px;
}

.about-detailed-img>img {
    width: 80%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.about-sub-img img {
    width: 100%;
    border-radius: 14px;
}

.experience-stamp {
    position: absolute;
    top: 30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #964900, #FF8928);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    z-index: 5;
}

.stamp-inner {
    text-align: center;
}

.stamp-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.stamp-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.3;
}

.dots-pattern-about {
    position: absolute;
    top: 60%;
    right: 30%;
    opacity: 0.6;
    z-index: -1;
}

.about-detailed-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/*.about-detailed-content p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 28px;
}
*/
.about-highlight-list {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #364153;
}

.highlight-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.mt30 {
    margin-top: 30px;
}

/* =======================================
   MISSION VISION VALUES
   ======================================= */

.mv-section {
   /* padding: 100px 60px;*/
    background: url('../images/topography-bg.png') repeat;
}

.section-header-center {
    text-align: center;
    margin-bottom: 30px;
}

/*.section-header-center .mainTitle {
    margin-top: 10px;
}*/

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #964900, #FF8928);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mv-card-accent {
    background: linear-gradient(135deg, #964900 0%, #FF8928 100%);
    color: #fff;
}

.mv-card-accent h3,
.mv-card-accent p {
    color: #fff;
}

.mv-card-accent .mv-icon {
    color: rgba(255, 255, 255, 0.85);
}

.mv-card-accent::before {
    display: none;
}

.mv-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

.mv-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 500;
}

.values-list li i {
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

/* =======================================
   EXPERTISE SECTION
   ======================================= */

/*.expertise-section {
    padding: 100px 60px;
    background: #fff;
}*/

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 90px;
    align-items: center;
}

.expertise-left p {
    color: var(--gray-text);
    font-size: 16px;
    margin-top: 20px;
    line-height: 28px;
}

.expertise-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.expertise-item:first-child {
    padding-top: 0;
}

.expertise-item:last-child {
    border-bottom: none;
}

.expertise-item:hover {
    padding-left: 8px;
}

.exp-number {
    font-size: 52px;
    font-weight: 700;
    color: rgba(230, 126, 34, 0.12);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.exp-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}

.exp-icon {
    /*width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.08);
    border-radius: 12px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
   /* padding: 10px;*/
}

.exp-icon img {
   /* width: 100%;
    filter: brightness(0) saturate(100%) invert(46%) sepia(72%) saturate(600%) hue-rotate(10deg);*/
}

.exp-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #121212;
}

.exp-content p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 26px;
}

/* =======================================
   RESPONSIVE — ABOUT US PAGE
   ======================================= */

@media (max-width: 1200px) {
    .inner-h1 {
        font-size: 52px;
    }

    .about-detailed,
    .expertise-grid {
        gap: 50px;
    }

    .mv-grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .inner-header {
        padding: 140px 0px 120px;
    }

    .inner-h1 {
        font-size: 40px;
    }

   
   

  /*  .about-intro,
    .mv-section,
    .expertise-section,
    .page-section {
        padding: 70px 20px;
    }*/

    .about-detailed-img {
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-stamp {
        left: 0;
    }

    .expertise-left {
        text-align: center;
    }

    .expertise-left .btn {
        margin: 20px auto 0;
        display: inline-flex;
    }
}


@media (max-width: 767px) {
 .mv-grid {
        grid-template-columns: 1fr;
    }
     .about-detailed,
    .expertise-grid {
        grid-template-columns: 1fr;
    }


    }

@media (max-width: 576px) {
    .inner-h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 13px;
        padding: 6px 16px;
    }

    .mv-card {
        padding: 30px 24px;
    }

    .about-cta-dtns {
        flex-direction: column;
    }

    .about-cta-btns .btn {
        text-align: center;
        justify-content: center;
    }
}

/* =======================================
   PAGE SECTION UTILITY
   ======================================= */

/*.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}*/

.section-header-center .section-sub {
    max-width: 1200px;
    margin: 20px auto 0;
    color: var(--gray-text);
  
    line-height: 28px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* =======================================
   SERVICE DETAIL PAGE
   ======================================= */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.service-detail-img {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.service-detail-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 520px;
}

.service-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #964900, #FF8928);
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;   
    box-shadow: 0 10px 30px rgba(150, 73, 0, 0.35);
}

.service-img-badge i {
    font-size: 22px;
}

.service-detail-content .title-small {
    margin-bottom: 16px;
}


.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 32px;
}

.sh-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 24px;
}

.sh-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =======================================
   PROCESS SECTION (How We Work)
   ======================================= */
.process-section {
    background: var(--gray-bg);
    /*padding: 90px 0;*/
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(150, 73, 0, 0.12);
}

.process-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(150, 73, 0, 0.07);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 16px;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #964900, #FF8928);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
   
}

/*.process-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}
*/


/* =======================================
   OTHER SERVICES SECTION
   ======================================= */

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.os-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.os-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(150, 73, 0, 0.1);
    transform: translateY(-5px);
}

.os-card .s-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

h4 {
     font-size: 20px;
    color: #222;
    font-weight: 600;
}


.os-card .read-more {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.os-card .read-more:hover {
    gap: 14px;
}

/* =======================================
   COVERAGE SECTION (Land & Legal)
   ======================================= */


.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.coverage-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(150, 73, 0, 0.1);
}

.coverage-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #964900, #FF8928);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
   
}
.m0{margin: 0;}

/* =======================================
   DEPARTMENTS SECTION (Liaisoning)
   ======================================= */


.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.dept-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dept-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(150, 73, 0, 0.1);
}

.dept-card>i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
}


/* =======================================
   SERVICES OVERVIEW PAGE
   ======================================= */
.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border);
}

.service-full-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-full-card.reverse .sfc-icon {
    order: 2;
}

.service-full-card.reverse .sfc-content {
    order: 1;
}

.sfc-icon img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.sfc-content {
    position: relative;
}

.sfc-num {
    font-size: 100px;
    font-weight: 800;
    color: rgba(150, 73, 0, 0.06);
    line-height: 1;
    position: absolute;
    top: -20px;
    right: 0;
}

.sfc-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.sfc-content p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 28px;
    margin-bottom: 20px;
}

.sfc-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.sfc-content ul li {
    font-size: 15px;
    color: var(--gray-text);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sfc-content ul li i {
    color: var(--primary);
}

/* =======================================
   PROJECTS PAGE
   ======================================= */


.proj-filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.pf-btn {
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-text);
    cursor: pointer;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
}

.pf-btn:hover,
.pf-btn.active {
    background: linear-gradient(135deg, #964900, #FF8928);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(150, 73, 0, 0.25);
}

.proj-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proj-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.proj-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.proj-item .project-img {
    height: 220px;
    overflow: hidden;
}

.proj-item .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.proj-item:hover .project-img img {
    transform: scale(1.05);
}

.proj-item .project-info {
    padding: 24px 24px 28px;
}

.proj-tag {
    display: inline-block;
    background: rgba(150, 73, 0, 0.1);
    color: var(--primary);
    padding: 4px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    /*margin-bottom: 15px;*/
    margin: 0px auto 15px;
}

.proj-item h4 {
    margin-bottom: 15px;
}

.proj-item p {
    
    color: var(--gray-text);
    
    
}

/* =======================================
   CONTACT PAGE
   ======================================= */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-info-panel h2 {
    margin-bottom: 16px;
}

.contact-info-panel>p {
   
    margin-bottom: 36px;
   
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.ci-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67e22, #FF8928);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.ci-detail h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}



.ci-detail a {
    color: var(--gray-text);
}

.ci-detail a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-size: 16px;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Contact Form */
.contact-form-panel {
    background: #fff;
    border-radius: 20px;
    padding: 46px 40px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.contact-form-panel h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    
    font-weight: 500;
    color: #1a1a1a;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    
    color: #333;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    outline: none;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(150, 73, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map */
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* =======================================
   THANK YOU PAGE
   ======================================= */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--gray-bg);margin: 20px 0px;
}

.thankyou-box {
    background: #fff;
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.ty-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #964900, #FF8928);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 28px;
    box-shadow: 0 8px 25px rgba(150, 73, 0, 0.3);
}

.thankyou-box h1 {
    margin-bottom: 16px;
    font-size: 48px;
}

.thankyou-box p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 26px;
    margin-bottom: 10px;
}

.ty-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0 28px;
    flex-wrap: wrap;
}

.ty-contact p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.ty-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    margin: 0 10px;
}

.ty-phone:hover {
    color: var(--primary-dark);
}

/* =======================================
   404 PAGE
   ======================================= */
.error-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--gray-bg);
}

.error-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.err-4 {
    font-size: 140px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.err-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #964900, #FF8928);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(150, 73, 0, 0.3);
}

.error-box h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.error-box p {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 540px;
    margin: 0 auto 30px;
    line-height: 28px;
}

.error-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.quick-links p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.quick-links a {
    display: inline-block;
    margin: 0 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.quick-links a:hover {
    color: var(--primary-dark);
}

/* =======================================
   RESPONSIVE — ALL INNER PAGES
   ======================================= */

/* Tablets: 991px */
@media (max-width: 991px) {

    .service-detail-grid,
    .service-full-card,
    .service-full-card.reverse,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-full-card {
        padding: 36px 24px;
    }

    .service-full-card.reverse .sfc-icon,
    .service-full-card.reverse .sfc-content {
        order: unset;
    }

    .process-grid,
    .other-services-grid,
    .coverage-grid,
    .dept-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proj-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-img-badge {
        right: 0;
        bottom: -16px;
    }

    .contact-form-panel {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .err-4 {
        font-size: 100px;
    }

    .err-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .thankyou-box {
        padding: 50px 30px;
    }

    .thankyou-box h1 {
        font-size: 38px;
    }

    .services-full-grid {
        gap: 50px;
    }
}

/* Mobile: 768px */
@media (max-width: 767px) {
   /* .page-section {
        padding: 70px 20px;
    }

    .process-section,
    .other-services,
    .coverage-section,
    .departments-section {
        padding: 70px 20px;
    }
*/
    .process-grid,
    .other-services-grid,
    .coverage-grid,
    .dept-grid {
        grid-template-columns: 1fr;
    }

    .proj-page-grid {
        grid-template-columns: 1fr;
    }

    .proj-filter-tabs {
        gap: 8px;
    }

    .pf-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .sfc-num {
        font-size: 70px;
    }

    .sfc-content h3 {
        font-size: 26px;
    }

    .err-4 {
        font-size: 80px;
    }

    .error-box h1 {
        font-size: 28px;
    }

    .ty-btns {
        flex-direction: column;
        align-items: center;
    }

    .error-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
	.section-header{flex-direction:column}
    .contact-form-panel {
        padding: 28px 18px;
    }

    .service-full-card {
        padding: 28px 18px;
    }

    .coverage-card,
    .dept-card,
    .process-card,
    .os-card {
        padding: 28px 20px;
    }

    .about-cta-btns {
        flex-direction: column;
    }

    .about-cta-btns .btn {
        text-align: center;
        justify-content: center;
    }

    .ci-item {
        flex-direction: column;
        gap: 10px;
    }

    .err-4 {
        font-size: 60px;
    }

    .err-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }


}

/* ================== FLOATING BUTTONS ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-5px);
}

.jumping {
    animation: jumping 2s infinite;
}

@keyframes jumping {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.about-block{display: block;}


.tagline-section{
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.tagline{
    margin: 0;
}

.tagline span{
 /*   display: inline-block;
    color: #fff;  
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    
*/
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: #fff;   
    text-shadow: 0 0 6px rgb(0 0 0 / 50%);
}


@keyframes glowText{
    from{
        text-shadow: 0 0 10px rgba(255,255,255,0.4),
                     0 0 20px rgba(255,255,255,0.3);
        transform: scale(1);
    }
    to{
        text-shadow: 0 0 20px rgba(255,255,255,0.9),
                     0 0 40px rgba(255,255,255,0.7);
        transform: scale(1.03);
    }
}

@keyframes lineMove{
    0%{
        width: 0;
    }
    100%{
        width: 120px;
    }
}

@media(max-width:768px){
    .tagline span{
        font-size: 26px;
        line-height: 1.5;
    }
}