/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.lgo_img{
    width: 100px;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
    position: relative;
}

.section-divider {
    height: 3px;
    width: 70px;
    background: linear-gradient(to right, #e0b97f, #d4af7a);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.btn-primary {
    background-color: #d4af7a;
    border-color: #d4af7a;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #c19b68;
    border-color: #c19b68;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af7a;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff;
    padding: 10px 15px;
    position: relative;
}

.scrolled .nav-link{
    color: #000;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: #d4af7a;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: calc(100% - 30px);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #c19b68;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/hero-bg.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.privacy-section {
    height: 400px;
    min-height: 400px;
    background-image: url('../img/hero-bg.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.privacy-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.text-container{
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Animated Text */
.animate-character {
    background-image: linear-gradient(
        -225deg,
        #ffffff 0%,
        #d4af7a 29%,
        #ffffff 67%,
        #e0b97f 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 5s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/* About Section */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Counter */
.stats-counter {
    margin-top: 30px;
}

.counter {
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af7a;
}

.counter p {
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Services */
.service-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f9f5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: #d4af7a;
}

.service-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Portfolio */
.portfolio-filters {
    margin-bottom: 30px;
}

.portfolio-filters button {
    margin: 0 5px;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.portfolio-filters button.active {
    background-color: #d4af7a;
    color: #fff;
    border-color: #d4af7a;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-overlay h5 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-carousel {
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #d4af7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote i {
    color: #fff;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    margin: 0 0 5px;
    font-style: normal;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-controls {
    margin-top: 20px;
}

.testimonial-controls button {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
}

/* Contact Section */
.contact-info {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    height: 100%;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-list li i {
    width: 40px;
    height: 40px;
    background-color: #d4af7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-list li div {
    flex: 1;
}

.contact-list li h5 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-list li p {
    margin: 0;
    color: #666;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #d4af7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #c19b68;
    transform: translateY(-3px);
    color: #fff;
}

.contact-form {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #222;
}

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af7a;
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border-right: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
}

.thankyou-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.thankyou-section img{
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.thankyou_section h1 {
    color: #d4af7a;
    font-size: 4.5em;
    margin-bottom: 10px;
}
.thankyou_section p {
    font-size: 1.1em;
    line-height: 1.6;
}
.thankyou_section a.button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #d4af7a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.thankyou_section a.button:hover {
    background: #c7631d;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section .lead {
        font-size: 1.2rem;
    }
    .thankyou-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300px;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    .thankyou-section img{
        height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .hero-section{
        height: 200vh;
        padding-top: 150px;
    }
    .hero-section .btn-primary{
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-section .btn-outline-light{
        width: 100%;
        margin-bottom: 20px;
    }
    .hero_row{
        height: unset !important;
    }
    .contact-form{
        margin-top:60px;
    }
}