        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #1c1917;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            /* background-image: url('../images/img_rectangle_26.png'); */
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-overlay {
            background: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
            /* max-width: 1440px; */
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            box-shadow: 0px 4px 15px rgba(136, 136, 136, 1);
            padding: 16px 0;
            margin-bottom: 80px;
            width: 100%;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-container img:first-child {
            width: 54px;
            height: 50px;
        }

        .logo-container img:last-child {
            width: 152px;
            height: 50px;
        }

        .nav-menu {
            display: none;
            align-items: center;
            gap: 40px;
        }

        .nav-item {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-item.active {
            font-weight: 600;
            color: #e0b279;
        }

        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e0b279;
        }

        .nav-item:hover {
            color: #e0b279;
        }

        .hamburger {
            display: block;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Content */
        .hero-main {
            flex: 1;
            display: flex;
            /* justify-content: center; */
            align-items: center;
            padding: 40px 24px;
            text-align: center;
            min-height: calc(100vh - 200px);
        }

        .hero-text-container {
            display: flex;
            flex-direction: column;
            gap: 32px;
            width: 100%;
            max-width: 1000px;
            align-items: center;
        }

        .hero-title {
            font-family: 'Butler', serif;
            font-size: 28px;
            font-weight: 400;
            line-height: 1.2;
            color: #ffffff;
            text-transform: capitalize;
            text-align: center;
            margin-bottom: 0;
        }

        .hero-description {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.6;
            color: #ffffff;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 0;
        }

        .hero-buttons {
            justify-content: center;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            margin-top: 32px;
        }

        .btn-primary {
            background-color: transparent;
            color: #ffffff;
            /* border: none; */
            border-radius: 24px;
            padding: 14px 28px;
            font-size: 18px;
            font-weight: 400;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            min-width: 160px;
            border: 1px solid #ffffff;;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.067);
            color: #ffffff;
            /* border: 1px solid #ffffff; */
            border: 1px solid #ffffff;;
            border-radius: 24px;
            padding: 14px 28px;
            font-size: 18px;
            font-weight: 400;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            /* box-shadow: 0px 4px 25px rgba(136, 136, 136, 1);  */
            min-width: 160px;
        }
        .btn-tertiary {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;;
}
        .btn-primary:hover {
            background-color: #b8864a;
            transform: translateY(-2px);
            color: white !important;
        }

        .btn-secondary:hover {
    background-color: #b8864a;
    transform: translateY(-2px);
    color:white !important;
        }
        .btn-tertiary:hover {
    background-color: #b8864a;
    transform: translateY(-2px);
    color:white !important;
        }

        .hero-signature {
            position: absolute;
            bottom: 40px;
            right: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .signature-text {
            font-family: 'Passions Conflict', cursive;
            font-size: 32px;
            color: #ffffff;
        }

        .signature-logo {
            width: 54px;
            height: 50px;
        }

        /* Gateway Section */
        /* .gateway-section {
            padding: 80px 24px;
            margin-top: 0;
        } */

        .gateway-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 24px;
            display: block;
        }

        .section-title {
              font-family: 'Butler', serif;

            font-size: 36px;
            color: #C69651;
            margin-bottom: 24px;
            /* text-align: center;  */
            line-height: 1.2;
        }
        .section-title1 {
              font-family: 'Butler', serif;

            font-size: 36px;
            color: white;
            margin-bottom: 24px;
            /* text-align: center;  */
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            line-height: 1.7;
            color: #57534e;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-image {
            width: 100%;
            border-radius: 8px;
            object-fit: cover;
        }

        .gallery-image:nth-child(1),
        .gallery-image:nth-child(3) {
            height: 311px;
        }

        .gallery-image:nth-child(2),
        .gallery-image:nth-child(4) {
            height: 311px;
            margin-top: 32px;
        }

        /* Story Section */
        .story-section {
            background: linear-gradient(143deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);
            padding: 80px 24px;
            /* margin-top: 80px; */
        }

        .story-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-content {
            width: 100%;
            max-width: 600px;
            text-align: center;
        }

        .story-title {
            font-family: 'Butler', serif;
            font-size: 36px;
            color: #c69651;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            /* justify-content: center; */
            gap: 12px;
            line-height: 1.2;
        }

        .story-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            line-height: 1.7;
            color: #57534e;
            margin-bottom: 40px;
            text-align: left;
        }

        .story-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            border: 1px solid #906e31;
            border-radius: 24px;
            color: #906e31;
            text-decoration: none;
            font-size: 18px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        /* .story-image-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 400px;
            align-self: center;
        } */
         .story-image-container {
            padding: 10px;
            border-radius: 50%;
            /* border: 4px solid #be9e66; */
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 400px;
            align-self: center;
        }

        .story-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .story-overlay-image {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 124px;
            height: 124px;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 80px 24px;
            /* margin-top: 80px; */
        }

        .why-choose-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-content {
            flex: 1;
            text-align: center;
        }

        .why-choose-title {
            font-family: 'Butler', serif;
            font-size: 36px;
            color: #c69651;
            margin-bottom: 40px;
            /* text-align: center; */
            line-height: 1.2;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .feature-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: #57534e;
        }

        .why-choose-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-choose-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
        }

        .why-choose-image:nth-child(1) {
            border-radius: 0px 50px 50px 0px;
        }

        .why-choose-image:nth-child(2) {
            border-radius: 50px 0px 0px 50px;
        }

        .why-choose-image:nth-child(3) {
            grid-column: 1 / -1;
            height: 240px;
            border-radius: 8px;
        }

        /* Projects Section */
        .projects-section {
            background: linear-gradient(143deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%)
            /* padding: 80px 24px; */
            /* margin-top: 80px; */
        }

        .projects-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .projects-title {
            font-family: 'Butler', serif;
            font-size: 36px;
            color: #c69651;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            line-height: 1.2;
        }

        .projects-description {
            font-family: 'Open Sans', sans-serif;

            font-size: 18px;
            line-height: 1.7;
            color: #57534e;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .projects-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            border: 1px solid #c69651;
            border-radius: 24px;
            color: #c69651;
            text-decoration: none;
            font-size: 18px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .projects-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 450px;
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* .project-card:nth-child(1) .project-image {
            border-radius: 0px 200px 200px 0px;
        }

        .project-card:nth-child(2) .project-image {
            border-radius: 200px 0px 0px 200px;
        } */

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            padding: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .project-details h3 {
            font-size: 20px;
            font-weight: 600;
            color: #57534e;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .project-details p {
            font-size: 18px;
            color: #57534e;
        }

        .project-link {
            width: 48px;
            height: 48px;
            border: 1px solid #c69651;
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background-color: #c69651;
        }

        /* Gallery Section */
        /* .gallery-section {
            padding: 80px 24px;
            margin-top: 80px;
        } */

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-title {
            font-family: 'Butler', serif;
            font-size: 36px;
            color: #c69651;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .gallery-subtitle {
            font-family: 'Butler', serif;

            font-size: 36px;
            color: #c69651;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            line-height: 1.2;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Contact Section */
        .contact-section {
            margin-top: 80px;
        }

        .contact-title {
            font-family: 'Butler', serif;
            font-size: 36px;
            color: #c69651;
            text-align: center;
            margin-bottom: 0;
            padding: 0 24px;
            line-height: 1.2;
        }

        .contact-content {
            /* background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%); */
            background: rgba(255, 255, 255, 1);
            padding: 40px 24px;
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 0px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
        }

        .map-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .map-info {
            position: absolute;
            top: 16px;
            left: 16px;
            background: white;
            padding: 16px;
            border-radius: 12px 4px 4px 4px;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
            max-width: 280px;
        }

        .map-info h4 {
            font-size: 18px;
            color: #1c1917;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .map-info p {
            font-size: 14px;
            color: #57534e;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .rating-score {
            font-size: 18px;
            color: #57534e;
            font-weight: 600;
        }

        .rating-stars {
            width: 54px;
            height: 14px;
        }

        .rating-reviews {
            font-size: 14px;
            color: #1a73e8;
        }

        .map-link {
            font-size: 14px;
            color: #1a73e8;
            text-decoration: none;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 18px;
            color: #1c1917;
            font-weight: 500;
        }

        .form-group input {
            padding: 16px;
            border: 1px solid #aaaaaa;
            border-radius: 12px;
            background-color: #ffffff;
            font-size: 18px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #c69651;
        }

        .submit-btn {
            background-color: #c69651;
            color: #ffffff;
            border: none;
            border-radius: 24px;
            padding: 16px 40px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            text-transform: uppercase;
            font-weight: 500;
        }

        .submit-btn:hover {
            background-color: #b8864a;
        }

        /* Footer */
        .footer {
            background: linear-gradient(153deg, rgba(255, 255, 255, 0.14) 0%, rgba(239, 222, 189, 0.14) 100%);
            border-top: 1px solid #aaaaaa;
        }

        .footer-main {
            /* padding: 80px 24px; */
            display: flex;
            flex-direction: column;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .footer-logo img:first-child {
            width: 54px;
            height: 50px;
        }

        .footer-logo img:last-child {
            width: 168px;
            height: 50px;
        }

        /* .footer-tagline {
            font-family: 'Passions Conflict', cursive;
            font-size: 28px;
            line-height: 1.3;
            color: #1c1917;
            text-align: center;
            max-width: 400px;
            margin: 0 auto;
        } */

        .footer-center {
            /* display: flex; */
            flex-direction: column;
            align-items: center;
            gap: 40px;
            padding: 40px 0;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .footer-nav-item {
            font-family: 'Butler', serif;
            font-size: 24px;
            color: #1c1917;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav-item:hover {
            color: #c69651;
        }

        .footer-contact {
            padding: 40px 0;
            text-align: center;
        }

        .footer-contact h4 {
            font-size: 18px;
            color: #79716b;
            text-transform: uppercase;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-info p {
            font-size: 18px;
            color: #1c1917;
            line-height: 1.5;
        }

        .contact-info a {
            color: #1c1917;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid #aaaaaa;
            /* padding: 40px 24px; */
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .copyright {
            font-size: 14px;
            color: #79716b;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .social-links a {
            font-size: 18px;
            color: #79716b;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #c69651;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .footer-links a {
            font-size: 18px;
            color: #79716b;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #c69651;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .container {
                padding: 0 32px;
            }

            .nav-container {
                padding: 0 32px;
            }

            .hero-main {
                padding: 40px 32px;
            }

            .hero-signature {
                right: 32px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-description {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: row;
                gap: 20px;
            }

            .image-gallery {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }

            .gallery-image:nth-child(2),
            .gallery-image:nth-child(4) {
                margin-top: 24px;
            }

            .section-title {
                font-size: 42px;
            }

            .signature-text {
                font-size: 36px;
            }

            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .gallery-item {
                height: 200px;
            }
/* 
            .gateway-section,
            .story-section,
            .why-choose-section,
            .projects-section,
            .gallery-section {
                padding: 100px 32px;
            } */

            /* .contact-content {
                padding: 100px 32px;
            }

            .footer-main {
                padding: 100px 32px;
            }

            .footer-bottom {
                padding: 40px 32px;
            } */
        }

        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }

            .nav-menu {
                display: flex;
            }

            .nav-container {
                padding: 0 40px;
            }

            .hero-main {
                padding: 40px 40px;
            }

            .hero-signature {
                right: 40px;
            }

            .hero-title {
                font-size: 48px;
                line-height: 1.1;
            }

            .hero-description {
                font-size: 20px;
            }

            .story-container {
                flex-direction: row;
                align-items: flex-start;
                gap: 80px;
            }

            .story-content {
                width: 100%;
                text-align: left;
            }

            .story-image-container {
                width: 50%;
                height: 500px;
            }

            .why-choose-container {
                flex-direction: row;
                align-items: flex-start;
                gap: 80px;
            }

            .why-choose-content {
                width: 50%;
                text-align: left;
            }

            .why-choose-images {
                width: 50%;
                margin-top: 0;
            }

            .projects-grid {
                flex-direction: row;
                gap: 32px;
            }

            .project-card {
                flex: 1;
                height: 600px;
            }

            .contact-container {
                flex-direction: row;
                gap: 80px;
            }

            .map-container {
                width: 50%;
                height: 500px;
            }

            .contact-form {
                width: 50%;
            }

            .footer-main {
                flex-direction: row;
                align-items: flex-start;
                gap: 80px;
            }

            .footer-brand {
                width: 30%;
                text-align: left;
            }

            .footer-logo {
                justify-content: flex-start;
            }

            .footer-tagline {
                text-align: left;
            }

            .footer-center {
                width: 40%;
                /* flex-direction: row; */
                justify-content: space-between;
            }

            .footer-nav {
                text-align: left;
            }

            .footer-contact {
                width: 30%;
                text-align: left;
            }

            .footer-bottom-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            

            /* .gateway-section,
            .story-section,
            .why-choose-section,
            .projects-section,
            .gallery-section {
                padding: 120px 40px;
            } */

            /* .contact-content {
                padding: 120px 40px;
            } */

            /* .footer-main {
                padding: 120px 40px;
            } */
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 60px;
            }

            .nav-container {
                padding: 0 60px;
            }

            .hero-main {
                padding: 40px 60px;
            }

            .hero-signature {
                right: 60px;
            }

            .section-title {
                font-size: 48px;
            }

            .hero-title {
                font-size: 56px;
            }

            .story-title,
            .why-choose-title,
            .projects-title,
            .gallery-title,
            .contact-title {
                font-size: 48px;
            }

            .signature-text {
                font-size: 42px;
            }

            .navbar {
                padding: 20px 0;
            }

            /* .gateway-section,
            .story-section,
            .why-choose-section,
            .projects-section,
            .gallery-section {
                padding: 140px 60px;
            } */

            /* .contact-content {
                padding: 140px 60px;
            } */

            /* .footer-main {
                padding: 140px 60px;
            } */
        }

        @media (min-width: 1280px) {
            .nav-container {
                padding: 0 80px;
            }

            .hero-main {
                padding: 40px 80px;
            }

            .hero-signature {
                right: 80px;
            }

            .section-title {
                font-size: 54px;
            }

            .story-title,
            .why-choose-title,
            .projects-title,
            .gallery-title,
            .contact-title {
                font-size: 54px;
            }

            .hero-title {
                font-size: 64px;
            }

            .gateway-section,
            .story-section,
            .why-choose-section,
            .projects-section,
            .gallery-section {
                padding: 100px 80px;
            }

            /* .contact-content {
                padding: 160px 80px;
            } */

            .footer-main {
                padding: 100px 80px;
            }
        }
        /* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    /* margin-bottom: 2rem; */
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
}

.footer-center {
    /* flex: 1; */
    text-align: center;
}

.footer-center h3 {
    font-family: 'Butler', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /* color: #D4AF37; */
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h4 {
    /* color: #D4AF37; */
    margin-bottom: 1rem;
}

.footer-right p {
    line-height: 40px;
    /* margin-bottom: 0.5rem; */
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        /* background: rgba(0, 0, 0, 0.95); */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        position: static;
        margin-top: 2rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 1rem 1.5rem;
    }

    .still-questions {
        padding: 2rem 1rem;
    }

    .still-questions-title {
        font-size: 1.8rem;
    }

    .still-questions-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    /* background:transparent; */
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    /* backdrop-filter: blur(15px);  */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4AF37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }}

     .intro-section {
    position: relative;
    background: #fff;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.image-circle {
   position: absolute;
    width: 578px;
    height: 578px;

    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #d9b688;
    z-index: 0;
    
    
}


.image-circle.left {
        top: -182px;
    left: -54px;


}
.image-circle.right {
    transform: rotate3d(1, 1, 1, 45deg);
    bottom: -70px;
    right: -175px;
}

.image-circle img {
    /* width: 100%; */
    margin-left: -141px;
    width: 116%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    /* z-index: 1; */
    position: relative;
}

.intro-content .icon {
    width: 40px;
    margin-bottom: 10px;
}

.intro-content h2 {
    font-family: 'Butler', serif;
    font-weight: 400;

    font-size: 38px;
    color: #c79652;
    margin-bottom: 0px;
}

.intro-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}
.why-choose-images-2col {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* margin-top: 40px;  */
    flex-wrap: wrap;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-img {
    width: 280px;
    height: 180px;
    /* object-fit: cover; */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
}

.gallery-scroll img {
    object-fit: cover;
  width: 315px;
    height: 238px;
  flex-shrink: 0;
}
/* Top Row - Move Left */
.top-row {
  animation: scroll-left 30s linear infinite;
}

/* Bottom Row - Move Right */
.bottom-row {
  animation: scroll-right 30s linear infinite;
}

/* Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (min-width: 360px) and (max-width: 740px) {
  .intro-section {
    padding: 415px 20px;  /* Reduced padding */
    flex-direction: column; /* Stack elements vertically if needed */
    text-align: center;
  }
  .image-circle {
    top: 651px;
    position: absolute;
    width: 315px;
    height: 384px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #d9b688;
    z-index: 0; 
  }
}
@media (min-width: 768px) and (max-width: 1180px) {
  .intro-content {
    max-width: 188px;
    margin: 0 auto;
    z-index: 0;
    position: relative;
}
.image-circle.right {
    transform: rotate3d(1, 1, 1, 0deg);
    bottom: -70px;
    right: -175px;
}
}

@media (min-width: 375px) and (max-width: 667px) {
  .hero-signature {
    position: absolute;
    bottom: 0px;
}
}
.btn-primary {
  background-color: #C69651 !important; /* कायम गोल्ड रंग */
}