
/* Reset some common browser styles */
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

body {
    position: relative;
    height: 100%;
    width: 100%;
}

:root {
    --primary-color: #e2c869;
    --secondary-color: #204d68;
    --accent-color: #ff5722;
    --text-color: #555;
    --black-color: #000000;
    --white-color: #fff;
}
.whatsapp {
    position: fixed; /* Fixed to the viewport */
    right: 25px; /* Distance from the left edge */
    bottom: 15px; /* Distance from the bottom edge */
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    background-color: #25D366; /* WhatsApp official green */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}

    .whatsapp:hover {
        transform: scale(1.1);
    }

h1,
h2 {
    font-family: "Poppins", sans-serif;
}
.phone-nu{
    color:var(--primary-color);
    display:none;
    font-size:15px;
}
.hidden {
    visibility: hidden !important;
}
p,
span.special {
    font-family: "Lexend", sans-serif;
}
.justify{
    text-align:justify !important;
}
.g-border {
    border: 2px solid var(--primary-color);
}
.section p{
    text-align:justify !important;
}
a {
    text-decoration: none;
}
.py-0{
  padding: 0px !important;
}
.pt-10{
  padding-top: 10px !important;
}
.pb-0{
    padding-bottom: 0px !important;
}
.pt-0 {
    padding-top: 0px !important;
}
.mb-0{
    margin-bottom:0 !important;
}
.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 50px 0;
}
.d-none {
    display: none !important;
}
.breadcrumb{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center ;
  text-align: center;
  color: var(--white-color);
  height: 250px;
  width: 100%;
}
.b-overlay{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.breadcrumb-header a{
  color: var(--white-color);
}
.breadcrumb-header h1{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color:var(--primary-color);
    color:black;
    font-size: 14px;
}

    .top-bar .left,
    .top-bar .right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .top-bar i {
        color:black;
    }

    .top-bar a {
        color: black;
        text-decoration: none;
    }

        .top-bar a:hover {
            text-decoration: underline;
        }

.divider {
    height: 20px;
    width: 1px;
    background-color: #333;
    margin: 0 10px;
}

.top-bar .highlight {
    color: black;
}
.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #0a0d0f;
    color: #e2c869;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

    .navbar.sticky-active {
        background-color: #0a0d0ff2;
        /* slight transparency or new color */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

.logo {
    color: white;
    border-radius:10px;
    font-size: 15px;
    line-height: 25px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    height: 180px;
    width: auto;
    overflow:hidden;
    img

{
    height: 100%;
    width: auto;
}

}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

    .nav-menu li {
        position: relative;
    }

        .nav-menu li a {
            font-size:17px;
            padding: 20px 0;
            color: #e2c869;
            text-decoration: none;
            position: relative;
            transition: 0.3s;
        }

            .nav-menu li a:hover {
                color: #fff;
            }

.dropdown-menu {
    position: absolute;
    background-color: #0a0d0f;
    padding: 10px 0;
    list-style: none;
    top: 40px;
    min-width: 250px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu li {
    padding: 8px 20px;
}

    .dropdown-menu li a {
        color: #fff;
    }

        .dropdown-menu li a:hover {
            color: #e2c869;
        }

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    background-color: #e2c869;
    color: Black;
    padding: 8px 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

    .contact-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: left 0.3s ease;
        z-index: -1;
    }

    .contact-btn:hover::before {
        left: 0;
    }

    .contact-btn:hover {
        color:black;
    }


.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.4s;
    }

/* Mobile Sidebar */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #111;
    color: white;
    padding: 60px 20px;
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
}

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

        .mobile-menu ul li {
            margin: 15px 0;
            cursor: pointer;
        }

            .mobile-menu ul li a {
                color: white;
                text-decoration: none;
                font-size: 18px;
                display: block;
            }

            .mobile-menu ul li ul {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .mobile-menu ul li.open > ul {
                max-height: 500px;
            }

            .mobile-menu ul li.toggle-submenu > a::after {
                content: "+";
                float: right;
                color: var(--primary-color);
                font-weight: bold;
            }

            .mobile-menu ul li.toggle-submenu.open > a::after {
                content: "−";
                color: var(--primary-color);
            }

.social-icons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

    .social-icons a {
        color: var(--primary-color);
        font-size: 20px;
    }

/* Active Mobile Menu */

.mobile-menu.active {
    left: 0;
}

/* Hamburger Animation */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.toggle-submenu span {
    color: var(--primary-color);
}
/* Hero Section Slider  */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    margin-top:-10px;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
}

.welcome {
    font-size: 13px;
    border-radius: 100px;
    margin: 0 auto 1rem;
    padding: 5px 20px;
    background-color: var(--white-color);
    color: var(--black-color);
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 2px;
}

.main-heading {
    color:var(--primary-color);
    font-size: 3.5rem !important;
    font-weight: bold;
    margin-bottom: 2rem !important;
    line-height: 1.2;
}
.main-heading {
    opacity: 0;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zoom In Animation */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes to trigger animation */
.fade-up.animate {
    animation: fadeUp 1s ease-out forwards;
}

.zoom-in.animate {
    animation: zoomIn 1s ease-out forwards;
}


.description {
    text-align:justify;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.9rem;
    line-height: 1.6;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
}

    .btn::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 35deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60% );
        transform: rotate(0deg);
        pointer-events: none;
        transition: transform 0.7s ease;
    }

    .btn:hover::before {
        top: -100%;
        left: 100%;
        transition: top 0.7s ease, left 0.7s ease;
    }

.btn-primary {
    background:var(--primary-color);
    color: var(--black-color);
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn svg {
    margin-left: 8px;
}


/*About section */
.our-story-section {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

    .our-story-section::before,
    .our-story-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        opacity: 0.05;
        z-index: 0;
    }

    .our-story-section::before {
        width: 300px;
        height: 300px;
        background: var(--primary-color);
        top: -50px;
        left: -50px;
    }

    .our-story-section::after {
        width: 200px;
        height: 200px;
        background: #ff6b6b;
        bottom: -100px;
        right: -100px;
    }

.our-story-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

    .our-story-container h2 {
        font-size: 34px;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .our-story-container p {
        font-size: 16px;
        line-height: 1.8;
/*        margin-bottom: 20px;*/
        color: var(--text-color);
    }

    .core-values h3 {
        font-size: 36px;
        color: var(--white-color);
        margin-bottom: 25px;
        text-align: center;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
    }

    .value-card i {
        background: var(--primary-color);
        color: var(--white-color);
        padding: 12px;
        border-radius: 50%;
        font-size: 20px;
        flex-shrink: 0;
    }

    .value-card h4 {
        margin: 0 0 8px 0;
        font-size: 16px;
        color: var(--heading-color);
    }

    .value-card p {
        color:var(--text-color);
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
    }
.simple-contact-section p {
    margin: 0 auto;
    color: var(--text-color);
    width: 60%;
    margin-bottom:25px;
}

.awadh-heading-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.awadh-main-heading {
    font-size: 36px;
    font-weight: 800;
   color:var(--primary-color);
    margin: 0 0 10px;
}

.awadh-subheading {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.awadh-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.awadh-left {
    display:flex;
    flex-direction:column;
    align-items:center;
    flex: 1 1 55%;
    padding-right: 30px;
}

.awadh-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.awadh-description {
    text-align:center;
    font-size: 15px;
    line-height: 1.7;
    color:var(--text-color);
    margin-bottom: 20px;
}

.awadh-list {
    margin-bottom: 20px;
}

    .awadh-list li {
        font-size: 15px;
        margin-bottom: 10px;
        color: var(--text-color);
    }

        .awadh-list li span {
            font-weight: 600;
            color: #fcbf49;
        }

.awadh-quote {
    font-size: 15px;
    color: #fcbf49;
    margin-bottom: 20px;
}

.awadh-button {
    background-color:#e2c869;
    color: #000;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

    .awadh-button:hover {
        background-color: #e09f3e;
    }

.awadh-right {
    flex: 1 1 45%;
}

    .awadh-right img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }


.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    gap: 40px; /* space between image and content */
}

.image-section {
    position:relative;
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-collage {
    width: 100%;
    height: auto;
}

.main-image {
    width: 100%;
    height: 540px;
    background-image: url("../images/Combo.webp");
    background-size: cover;
    background-position: center;
    border: 8px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.satisfied-customers {
    bottom:200px;
    right:-20px;
    position:absolute;
    width: 100px;
    height: 100px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .satisfied-customers h2 {
        color: var(--primary-color);
        font-size: 28px;
        font-weight: bold;
        margin: 0;
    }

    .satisfied-customers p {
        font-size: 12px;
        color: var(--text-color);
        margin: 0;
    }

.content-section {
    width: 700px;
    padding: 20px 0;
}

.about-us {
    color: var(--primary-color);
    font-weight: bold;
    font-size:25px;
    margin-bottom: 10px;
}

    .about-us::after {
        content: "";
        display: inline-block;
        width: 50px;
        height: 2px;
        background-color: var(--primary-color);
        margin-left: 10px;
        vertical-align: middle;
    }

.content-section h1 {
    font-size: 34px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.content-section > .description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.feature-text {
    font-size: 14px;
    font-weight: bold;
    color: var(--black-color);
}

.more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

/* Services Section  */
.left-div {
    width: 830px;
}

.prefix-service-section {
    background-color: #f5f7fa;
    padding: 20px;
    font-family: Arial, sans-serif;
    width: 400px;
    height: fit-content;
}
    .prefix-service-section img{
        height:100%;
        width:100%;
        object-fit:cover;
    }
    .prefix-heading {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: bold;
    }

.prefix-service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prefix-service-item {
    background-color: white;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
    .service-active {
        color: var(--primary-color);
        border: solid 1px var(--primary-color);
    }
    .prefix-service-item:hover {
        color: var(--primary-color);
        transition: all 0.3s;
        border: solid 1px var(--primary-color);
    }

.prefix-icon {
    margin-right: 10px;
    color: #e2c869;
    font-weight: bold;
}

.service-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

    .services-section::before,
    .services-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        z-index: 0;
    }

    .services-section::before {
        top: -300px;
        right: -300px;
        width: 600px;
        height: 600px;
        background-color: rgba(226, 200, 105, 0.5);
    }

    .services-section::after {
        bottom: -200px;
        left: -200px;
        width: 400px;
        height: 400px;
        background-color: rgba(0, 78, 137, 0.05);
    }

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

    .section-title::before,
    .section-title::after {
        content: "";
        height: 2px;
        width: 30px;
        background-color: var(--primary-color);
        display: inline-block;
        vertical-align: middle;
        margin: 0 15px;
    }

.section-header h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition:0.2s;
    position: relative;
    z-index: 1;
    color:white;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--primary-color);
        opacity: 0.05;
        transition: 0.2s;
        z-index: 1; /* Stays behind content but above ::after */
    }

    .service-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        z-index: 0;
    }

    /* Ensures content stays above overlay */
    .service-card > * {
        position: relative;
        z-index: 2;
    }

    .service-card:hover {
        transform: translateY(-15px);
    }

        .service-card:hover::before {
            height: 100%;
        }


.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    color: var(--primary-color);
    font-size: 40px;
    line-height: 1;
}

.service-number {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

.service-title {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    transition: 0.2s;
}

.service-card:hover .service-divider {
    width: 80px;
}

.service-description {
    color: var(--white-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
    position: relative;
}

    .read-more::after {
        content: "→";
        margin-left: 8px;
        transition: 0.2s;
    }

    .read-more::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: 0.2s;
    }

.service-card:hover .read-more {
    color: var(--primary-color);
}

    .service-card:hover .read-more::after {
        transform: translateX(5px);
    }

    .service-card:hover .read-more::before {
        width: calc(100% - 20px);
    }


/* Stat Section  */
.counter-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.counter-item {
  flex: 1;
  min-width: 200px;
  margin: 20px 10px;
  position: relative;
  overflow: hidden;
}

.counter-value {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.counter-suffix {
  font-size: 3rem;
  font-weight: 700;
}

.counter-title {
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.counter-item:nth-child(1) {
  animation-delay: 0.1s;
}

.counter-item:nth-child(2) {
  animation-delay: 0.3s;
}

.counter-item:nth-child(3) {
  animation-delay: 0.5s;
}

.counter-item:nth-child(4) {
  animation-delay: 0.7s;
}

/* Additional animation for the counter numbers */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.counter-value.completed {
  animation: pulse 0.5s ease-in-out;
}

/* Project Section */
.categories {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.project > .section-header > h2 {
    color: white;
}
.filter-btn {
  border: none;
  background: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  border-bottom: 2px solid transparent;
}

.filter-btn.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.project-carousel .project-item {
  position: relative;
  overflow: hidden;
}

.project-carousel img {
    width: 100%;
    border: 2px solid var(--primary-color);
}

.project-info {
    position: fixed;
    right: 0px;
    left:0;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    padding: 15px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


/* Blog section */
.blog-card {
    background: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px;
    display: block;
    overflow: hidden;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);  
    }

    .blog-card img {
        width: 100%;
        height: auto;
        display: block;
    }

.blog-content {
    padding: 20px;
}

    .blog-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .blog-content p {
        font-size: 15px;
        color: var(--text-color);
    }


/* Why Choose Us Section */
.why-us {
    height:500px;
    position: relative;
}
/* Central Image */
.central-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 50px auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .central-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Feature boxes */
.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.feature-box {
    border: 1px dashed var(--primary-color);    
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: right;
}

.feature-description {
    font-size: 14px;
    color: #666;
    text-align: right;
}

/* Icon circles */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color:var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .icon-circle i {
        font-size: 24px;
        color:white;
    }

/* Left side features */
.left-feature {
    text-align: right;
    padding-right: 40px;
}

/* Right side features */
.right-feature {
    text-align: left;
    padding-left: 40px;
}

    .right-feature .feature-title,
    .right-feature .feature-description {
        text-align: left;
    }

    .right-feature .icon-circle {
        left: -30px;
        right: auto;
    }

/* Layout */
.top-left {
    position: absolute;
    top: 40px;
    left: 40px;
}

.middle-left {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.top-right {
    position: absolute;
    top: 40px;
    right: 40px;
}

.middle-right {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.bottom-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

/*video section */
.const-vid-header {
    text-align: center;
    margin-bottom: 30px;
}

    .const-vid-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: black;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }
.const-vid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.const-vid-card {
    width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.const-vid-video-wrapper {
    position: relative;
}

    .const-vid-video-wrapper video {
        width: 100%;
        height:200px;
        display: block;
        border-radius: 0;
    }

.const-vid-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-color);
    background: white;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

    .const-vid-play-btn:hover {
        background: rgba(f, f, f, f.8);
    }

.const-vid-info {
    padding: 1rem;
    text-align: center;
}


/*.const-vid-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.const-vid-card {
    width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .const-vid-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.const-vid-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

    .const-vid-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.const-vid-card:hover .const-vid-thumbnail img {
    transform: scale(1.05);
}

.const-vid-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .const-vid-play-btn i {
        color: white;
        font-size: 22px;
    }

    .const-vid-play-btn:hover {
        background-color:var(--accent-color);
    }

.const-vid-info {
    padding: 20px;
}

    .const-vid-info h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
*/


/* View all button */
.const-vid-view-all {
    text-align: center;
    margin-top: 40px;
}

    .const-vid-view-all a {
        display: inline-block;
        padding: 12px 30px;
        background-color: #4361ee;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 500;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

        .const-vid-view-all a:hover {
            background-color: #3651d3;
            transform: translateY(-2px);
        }

        .const-vid-view-all a i {
            margin-left: 8px;
        }

/*  Contact form section */
.contact-page-section {
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-page-section p {
    width: 80%;
    text-align: center;
    margin-bottom: 15px;
}

.form-sub-title{
    color:black;
    text-transform:uppercase;
    font-weight:550;
    font-size:16px;
}
.simple-contact-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.simple-contact-image,
.simple-contact-form-wrapper {
    flex: 1;
    min-width: 320px;
    color: var(--white-color);
    background: var(--primary-color);
}

    .simple-contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.simple-contact-form-wrapper {
    padding:20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    margin-bottom: 20px;
}

.simple-contact-container .section-title {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

.simple-contact-form {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top:2px dotted black;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

    .form-row input,
    .form-row select,
    .simple-contact-form textarea {
        flex: 1;
        padding: 12px;
        font-size: 14px;
        border: none;
        border-radius: 4px;
    }

.simple-contact-form textarea {
    resize: none;
    margin-bottom: 15px;
    min-height: 100px;
}

.simple-contact-form button {
    padding: 12px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border: none;
    font-weight:550;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* Footer Section  */
.footer-row {
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr 1.6fr 1.5fr;
    gap: 10px;
    color: var(--white-color);
}

.footer-col {
    height:250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .footer-col p {
        display: flex;
        align-items:center;
        gap:10px;
    }

    .footer-col h4 {
        color: var(--white-color);
        margin-bottom: 15px;
        font-size: 16px;
        position: relative;
    }

        .footer-col h4::after {
            content: "";
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            margin-top: 5px;
        }

.footer-logo {
    width: 90%;
    height: auto;
}

    .footer-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.footer-socials {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

    .footer-socials a {
        display: inline-block;
        background: #1a1e27;
        color: var(--white-color);
        padding:9px;
        border-radius: 4px;
        transition: 0.3s ease;
    }

        .footer-socials a:hover {
            background: var(--primary-color);
            color: #fff !important;
        }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: var(--white-color);
            text-decoration: none;
            font-weight: 300;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: var(--primary-color);
            }

.footer-col a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 300;
    margin-bottom: 5px;
    display: block;
}

    .footer-col a:hover {
        color: var(--primary-color);
    }

.icon-orange {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}.footer-bottom {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaa;
  font-size: 14px;
  position: relative;
}
.footer-bottom > p {
display: flex;
align-items: center;
}
.footer-bottom > p > a > img{
  height: 40px;
  margin-left: 5px;
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 99;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background: var(--primary-color);
}
/* About  page*/

.process-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

    .process-section::before,
    .process-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        opacity: 0.05;
        z-index: 0;
    }

    .process-section::before {
        width: 150px;
        height: 150px;
        background:var(--primary-color);
        top: -40px;
        right: -40px;
    }

    .process-section::after {
        width: 200px;
        height: 200px;
        background: #ff6b6b;
        bottom: -60px;
        left: -60px;
    }

.process-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

    .process-container h2 {
        font-size: 36px;
        color: #222;
        margin-bottom: 10px;
    }

.process-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    border: 1px solid var(--primary-color);
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-5px);
    }

    .process-step i {
        border: 2px dotted var(--primary-color);
        font-size: 30px;
        color: var(--primary-color);
        margin-bottom: 15px;
        background-color: white;
        padding: 15px;
        border-radius: 50%;
        display: inline-block;
    }

    .process-step h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #222;
    }

    .process-step p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

.cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background-color: #fff;
    color: var(--text-color);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    }

    .info-card .icon {
        font-size: 40px;
        color: var(--primary-color); /* Gold or change to match theme */
        margin-bottom: 15px;
    }

    .info-card h3 {
        color: var(--black-color);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info-card p {
        font-size: 16px;
        line-height: 1.6;
    }

/* Gallery Page  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* Blog Section */
 .blog-page {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
 }
 .main-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Blog Post Card */
.blog-post {
  height: fit-content;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.post-image {
  width: 100%;
  height: fit-content;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-category {
  display: inline-block;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.category-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--white-color);
  background-color:var(--primary-color);
  border-color: var(--white-color);
}

/* Sidebar Styles */
.sidebar {
  height: fit-content;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.sidebar-section {
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  color: #444;
  background-color: #333;
  color: #fff;
  padding: 10px 15px;
  margin: -20px -20px 20px -20px;
}

/* Search Box */
.search-form {
  display: flex;
  margin-bottom: 20px;
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.search-button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: var(--primary-color);
}

/* Category List */
.category-list {
  list-style: none;
}

.category-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
  border-bottom: none;
}

.category-link {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
  display: block;
}

.category-link:hover {
  color: var(--primary-color);
}

/* Tags */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  display: inline-block;
  padding: 5px 15px;
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 20px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: none;
}
/* Contact Us Page */
.contact-section {
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  background-image: linear-gradient(135deg, var(--primary-color) 25%, transparent 25%), 
                    linear-gradient(225deg, var(--primary-color) 25%, transparent 25%), 
                    linear-gradient(45deg, var(--primary-color) 25%, transparent 25%), 
                    linear-gradient(315deg, var(--primary-color) 25%, #f9f9f9 25%);
  background-position: 40px 0, 40px 0, 0 0, 0 0;
  background-size: 80px 80px;
  background-repeat: repeat;
  z-index: 0;
}

.accent-color {
  color: var(--primary-color);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* margin-top: 30px; */
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  display:flex;
  flex-direction:column;
  padding: 20px;
  justify-content:space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(50px);
  opacity: 0;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 25px;
  margin-bottom: 10px;
  background: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.info-item .icon {
  min-width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 20px;
}

.info-item .content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2e2e2e; 
}

.info-item .content p, .info-item .content a {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item .content a:hover {
  color: var(--primary-color);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(50px);
  opacity: 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(159, 126, 84, 0.2);
}

textarea.form-control {
  height: 80px;
  resize: none;
}

.btn-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  width: 100%;
}

.btn-submit:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(159, 126, 84, 0.3);
}

.map-placeholder {
  height: 100%;
  width: 100%;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.social-links {
  display: flex;
  justify-content:start;
  gap: 15px;
  transform: translateY(10px);
  opacity: 1;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(159, 126, 84, 0.3);
}

/* Testimonial Section */
/* Testimonial Item */
.testimonial-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Quote Icon */
.quote-icon {
  margin-bottom: 15px;
}
.quote-icon i {
  font-size: 30px;
  color: var(--primary-color); /* Blue */
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 20px;
}

/* Client Info */
.client-name {
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}
.client-role {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

/* Rating */
.rating i {
  color: #ffc107; /* Star color */
  font-size: 16px;
}
.owl-carousel .owl-stage {
  margin-top: 10px;
}

/* Blog Details Page  */
.blog-img{
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.recent-post{
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  gap: 10px;
  height: 80px;
  width: 100%;
  display: flex;
}
.recent-post img{
  border: 2px solid var(--primary-color);
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
}
.recent-post-cont{
  justify-content: center;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  width: 50%;
}
.recent-post-cont h4{
  color: var(--black-color);
}
.recent-post-cont p{
  color: var(--text-color);
  font-size: 14px;
}
.blog-info{
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
}
.blog-info p i{
  color: var(--primary-color);
}
.blog-title{
  margin-bottom: 10px;
}
/* Project Detail Page  */

.colony-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.colony-subheading {
    font-size: 1.2rem;
    font-weight: 300;
}

.colony-features-section, .colony-landmarks-section {
    margin-bottom: 40px;
    background-color: white;
    border-radius: 10px;
}

.colony-section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.colony-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.colony-landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.colony-feature-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .colony-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    }

.colony-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.colony-landmark-item {
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .colony-landmark-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    }

.colony-landmark-name {
    font-weight: 600;
    color: #2c3e50;
}

.colony-landmark-distance {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.colony-footer {
    text-align: center;
    padding: 20px;
    color: #777;
}
.sb_hero_carousel {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.sb_main_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb_nav_controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.sb_arrow_btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  border: none;
}

.sb_indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.sb_indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.sb_indicator_active {
  background-color: var(--primary-color);
}

.sb_content_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.sb_main_content {
  width:100%;
}

.sb_sidebar {
    display:none;
  width:100%;
}

.sb_heading_primary {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.sb_heading_secondary {
  font-size: 1.3rem;
  margin: 10px 0 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.sb_section_about, 
.sb_section_challenge, 
.sb_section_approach, 
.sb_section_result {
  margin-bottom: 10px;
}

.sb_paragraph {
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 15px;
}

.sb_preview_box {
  background-color: #333;
  color:var(--white-color);
  padding: 30px;
  margin-bottom: 20px;
}

.sb_preview_title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.sb_details_list {
  margin-top: 20px;
}

.sb_detail_item {
  margin-bottom: 10px;
  display: flex;
}

.sb_detail_key {
  font-weight: bold;
  margin-right: 5px;
}

.sb_contact_box {
  background-color: #fff5ec;
  padding: 30px;
}

.sb_contact_title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.sb_contact_item {
  color: var(--text-color);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sb_icon_circle {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white-color);
}

.sb_construction_img {
  width: 200px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.sb_feature_list {
  color: var(--text-color);
  font-size: 15px;
  list-style-type: none;
  margin-left: 20px;
}

.sb_feature_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.sb_feature_list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.sb_img_gallery {
  display: flex;
  gap: 15px;
  flex-wrap:wrap;
  margin-top: 20px;
}

.sb_img_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px; /* space between items */
}

.sb_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sb_gallery_item img:hover {
  transform: scale(1.02);
}
/* Service Page  */
.services-grid {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  width: 32%;
  background-color: white;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.8s ease-in-out forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }
.service-card:nth-child(5) { animation-delay: 0.9s; }
.service-card:nth-child(6) { animation-delay: 1.1s; }

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-page-icon {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin: 20px;
    color: white;
    font-size: 20px;
}

.service-page-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.service-content {
  padding: 0 20px 20px;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color:white;
  margin-bottom: 20px;
}

.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}


/*Herp sectiom Modal */
.awadh-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.awadh-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}
    .awadh-modal-content h2{
        margin-bottom:15px;
    }
    .awadh-close {
        position: absolute;
        right: 20px;
        top: 15px;
        font-size: 28px;
        color: #aaa;
        cursor: pointer;
    }

    .awadh-close:hover {
        color: #000;
    }

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

    .form-row input, .form-row select {
        flex: 1;
        border:1px solid var(--primary-color);
    }

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color) !important;
}

.m-button[type="submit"] {
    background-color: var(--primary-color);
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
}

    .m-button[type="submit"]:hover {
        background-color: var(--primary-color);
    }

.admin-login {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    padding: 5px;
    width: 90%;
    border: 1px solid var(--primary-color);
}

/*Director's msg */
.director-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    .director-card::before {
        content: '"';
        position: absolute;
        top: -17px;
        left: 20px;
        font-size: 120px;
        color: var(--primary-color);
        font-family: serif;
        line-height: 1;
    }

    .director-card::after {
        content: '"';
        position: absolute;
        bottom: -50px;
        right: 20px;
        font-size: 120px;
        color: var(--primary-color);
        font-family: serif;
        line-height: 1;
    }

.director-image {
    flex: 0 0 350px;
    height: 350px;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-color);
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.director-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    text-align: justify;
}

.director-info {
    border-top: 2px solid var(--primary-color);
    padding-top: 20px;
}

.director-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.director-position {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.gallery-carousel-unique .item {
    margin: 0 10px; /* Only left and right margin */
}


/*Imp Modal */
.modal-uniq-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.modal-uniq-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-uniq-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 23px;
    cursor: pointer;
    background: none;
    border: none;
 
}

.modal-uniq-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}