

        :root {
            --primary-color: #76583e;
            --secondary-color: #76583e14;
            --dark-color: #2c2c2c;
            --light-gray: #f8f9fa;
            --cream: #faf9f7;
            --gold: #d4af37;
            --shadow: 0 10px 30px rgba(240, 57, 77, 0.1);
            --gradient: linear-gradient(135deg, #76583e 0%, #856c57 100%);
        }

        body {
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Header & Navigation */
       


        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

       
        /* Hero Section */
   .hero {
  height: 100vh;
  background: 
    linear-gradient(135deg, #61452c99, #61452c41), 
    url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1600&auto=format&fit=crop'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="40" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="80" cy="70" r="1.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  background-size: cover, cover, 200px 200px;
  background-position: center, center, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Black overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 50% black overlay */
  pointer-events: none;
  z-index: 1;
  
  /* Keep the shimmer animation if you want, or remove it */
  /* If you want shimmer, add: */
  /* animation: shimmer 3s ease-in-out infinite; */
}
  
/* Make sure content is above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

        @keyframes shimmer {
            0%, 100% { transform: translateX(-50%) rotate(0deg); }
            50% { transform: translateX(0%) rotate(1deg); }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(240, 57, 77, 0.3);
        }

        /* Section Styles */
        .section {
            padding: 6rem 0;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.3rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(240, 57, 77, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Events Section */
        .events {
            background: var(--secondary-color);
            position: relative;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .event-card {
            background: white;
            padding: 2.5rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .event-card:hover::before {
            opacity: 1;
        }

        .event-card:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(240, 57, 77, 0.2);
        }

        .event-card span {
            position: relative;
            z-index: 1;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial blockquote {
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--dark-color);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial cite {
            font-weight: 600;
            color: var(--primary-color);
            font-style: normal;
        }

        /* FAQ Section */
        .faq {
            background: var(--light-gray);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 10px;
        }

        .faq-item h4 {
            
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .faq-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Contact Form */
        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 25px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(240, 57, 77, 0.1);
            background: white;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            font-weight: 500;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-right: 0.5rem;
            transform: scale(1.2);
            accent-color: var(--primary-color);
        }

        .submit-btn {
            background: var(--gradient);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 2rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(240, 57, 77, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section {
                padding: 4rem 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form {
                padding: 2rem;
                margin: 0 1rem;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        .home-overflow {
    overflow: scroll;
}


/* modal css

*/

.details-content {
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

.details-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.details-images img {
    max-width: 48%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

button.explore-btn {
    border-radius: 55px;
    padding: 6px 20px;
    background: #76583e;
    border: 0px;
    color: white;
}

.service-card ul, .service-card ol {
    margin-top: 0;
    margin-bottom: 10px;
}


.flatpickr-day.booked {
    background: #ff4d4d !important;
    color: white !important;
    pointer-events: none;
}

.flatpickr-day.available {
    background: #4CAF50 !important;
    color: white !important;
}





/* promise section */


  .promise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .promise-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .promise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .promise-card:hover::before {
            transform: scaleX(1);
        }

        .promise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(240, 57, 77, 0.15);
        }

        /* Promise Icons */
        .promise-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .quality-icon {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: white;
        }

        .peace-icon {
            background: linear-gradient(135deg, #f0394d 0%, #ff6b7a 100%);
            color: white;
        }

        .liability-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .care-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
        }

        .promise-card:hover .promise-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Promise Content */
        .promise-card h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .promise-card:hover h3 {
            color: var(--primary-color);
        }

        .promise-card p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Decorative Elements */
        .promise-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(240, 57, 77, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .promise-section {
                padding: 4rem 0;
            }

            .promise-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                max-width: 400px;
            }

            .promise-card {
                padding: 2.5rem 1.5rem;
            }

            .promise-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .promise-card {
                padding: 2rem 1rem;
            }
        }




        /* booking section
        */


        
        /* Main Booking Section */
        .booking-section {
            padding: 6rem 0;
            background: var(--light-gray);
        }

       

        /* Steps Container */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .step-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(240, 57, 77, 0.2);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin: 0 auto 2rem;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px dashed rgba(240, 57, 77, 0.3);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .step-card h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .step-card p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .step-btn {
            background: var(--gradient);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .step-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(240, 57, 77, 0.3);
        }

        /* Form Section */
        .form-section {
            background: white;
            padding: 4rem;
            border-radius: 25px;
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }

        .form-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .form-title h3 {
            
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
        }

        .form-title h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .form-title p {
            color: #666;
            font-size: 1.2rem;
        }

        /* Form Styling */
        .contact-form {
            display: grid;
            gap: 2rem;
        }

        .form-section-header {
            background: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 5px solid var(--primary-color);
            margin: 2rem 0 1.5rem 0;
        }

        .form-section-header h4 {
            color: var(--dark-color);
            font-size: 21px;
            font-weight: 600;
            margin: 0;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem 1.5rem;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(240, 57, 77, 0.1);
            background: white;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
            padding: 1.5rem;
            background: var(--secondary-color);
            border-radius: 15px;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            font-weight: 500;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background 0.2s ease;
        }

        .checkbox-group label:hover {
            background: rgba(240, 57, 77, 0.05);
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-right: 0.8rem;
            transform: scale(1.3);
            accent-color: var(--primary-color);
        }

        .submit-btn {
            background: var(--gradient);
            color: white;
            padding: 1.5rem 4rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 2rem auto 0;
            display: block;
            min-width: 250px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(240, 57, 77, 0.3);
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .booking-section {
                padding: 4rem 0;
            }

            .steps-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-card {
                padding: 2rem;
            }

            .form-section {
                padding: 2rem;
                margin: 0 1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }
        }

        /* Success Animation */
        @keyframes success {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .success {
            animation: success 0.3s ease;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        }



        /* footer 
         */

.footer {
    width: 100%;
    background: linear-gradient(135deg, #a08f80 0%, #8c7b6e 100%);
    color: white;
    padding: 75px 0 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4c4b6, #fff0e5, #a08f80);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-right {
    align-items: flex-end;
    text-align: right;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.cta-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.cta-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a08f80;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background: #8c7b6e;
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item {
    display: flex; 
    gap: 15px;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.contact-details {
    text-align: left;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-icon {
    width: 32px;
    height: 32px;
    background: #a08f80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.contact-details h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: #d4c4b6;
    margin-top: 5px;
}
.contact-details p {
    font-size: 14px;
    opacity: 0.85;
}
.phone-link {
    color: #fff;
    text-decoration: none;
}
.phone-link:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-link.facebook {
    background: #3b5998;
}
.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}
.social-link:hover {
    transform: scale(1.1);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Shapes */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: float 6s ease-in-out infinite;
}
.shape1 { width: 80px; height: 80px; top: 20%; left: 10%; }
.shape2 { width: 60px; height: 60px; top: 60%; right: 15%; animation-delay: 2s; }
.shape3 { width: 100px; height: 100px; bottom: 30%; left: 20%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
    .contact-item {
        justify-content: flex-start;
    }
    .social-links {
        justify-content: flex-start;
    }
    .cta-title {
        font-size: 20px;
    }
}



/* about section  */


 .main-title {
            font-size: 3.5rem;
            font-weight: 300;
            color: #76583e;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .subtitle {
            font-size: 1.4rem;
            color: #666;
            font-weight: 300;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: start;
        }
        
        .intro-section {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(118, 88, 62, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #76583e, #a8805c);
        }
        
        .section-title {
            font: size 36px;;
            color: #76583e;
            margin-bottom: 30px;
            font-weight: 400;
            position: relative;
        }
        
        .highlight-text {
            background: linear-gradient(120deg, rgba(118, 88, 62, 0.1) 0%, rgba(168, 128, 92, 0.1) 100%);
            padding: 20px 30px;
            border-left: 4px solid #76583e;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            font-size: 1.1rem;
            color: #76583e;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }
        
        .mission-card, .vision-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(118, 88, 62, 0.06);
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(118, 88, 62, 0.12);
        }
        
        .mission-card::before {
            content: '\f004';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 2.5rem;
            color: #76583e;
            display: block;
            margin-bottom: 20px;
        }
        
        .vision-card::before {
            content: '\f06e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 2.5rem;
            color: #76583e;
            display: block;
            margin-bottom: 20px;
        }
        
        .card-title {
            font-size: 36px;
            color: #76583e;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .ethos-section {
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            padding: 60px;
            border-radius: 25px;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .ethos-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .ethos-title {
           
            text-align: center;
            margin-bottom: 50px;
            font-weight: 300;
            position: relative;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .value-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        
     .value-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}
        
        .team-placeholder {
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(118, 88, 62, 0.08);
            text-align: center;
            margin: 60px 0;
            border: 2px dashed #76583e;
        }
        
        .team-placeholder i {
            font-size: 4rem;
            color: #76583e;
            margin-bottom: 30px;
        }
        
        .app-feature {
            background: linear-gradient(45deg, rgba(118, 88, 62, 0.05), rgba(168, 128, 92, 0.05));
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            border: 1px solid rgba(118, 88, 62, 0.1);
        }
        
        .app-title {
            color: #76583e;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .intro-section, .ethos-section, .team-placeholder {
                padding: 30px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }




        /* faq css */



          .faq-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(118, 88, 62, 0.08);
            overflow: hidden;
            position: relative;
            margin: 0 0 2% 5%;
        }
        
        .faq-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #76583e, #a8805c);
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(118, 88, 62, 0.1);
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 5px 40px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            background: transparent;
        }
        
        .faq-question:hover {
            background: linear-gradient(45deg, rgba(118, 88, 62, 0.03), rgba(168, 128, 92, 0.03));
            padding-left: 50px;
        }
        
        .question-text {
            font-size: 22px;
            font-weight: 500;
            color: #76583e;
            flex: 1;
            margin-right: 20px;
        }
        
        .faq-icon {
            font-size: 1.2rem;
            color: #76583e;
            transition: transform 0.3s ease;
            min-width: 20px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, rgba(118, 88, 62, 0.02) 0%, rgba(168, 128, 92, 0.02) 100%);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 40px 30px 40px;
        }
        
        .answer-content {
            padding-top: 20px;
            
            line-height: 1.7;
            color: #555;
        }
        
        .answer-content strong {
            color: #76583e;
            font-weight: 600;
        }
        
        .highlight {
            background: linear-gradient(120deg, rgba(118, 88, 62, 0.1) 0%, rgba(168, 128, 92, 0.1) 100%);
            padding: 2px 8px;
            border-radius: 4px;
            color: #76583e;
            font-weight: 600;
        }
        
        .feature-list {
            list-style: none;
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .feature-list li {
            position: relative;
            padding: 8px 0;
            padding-left: 25px;
        }
        
        .feature-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #76583e;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            padding: 40px;
           
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
  
        
        .cta-text {
            
            opacity: 0.9;
            margin-bottom: 25px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: #76583e;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: #f8f9fa;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 40px 15px;
            }
            
            .main-title {
                font-size: 2.2rem;
            }
            
            .faq-question {
                padding: 15px 25px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .faq-question:hover {
                padding-left: 25px;
            }
            
            .question-text {
                margin-right: 0;
                margin-bottom: 10px;
                font-size: 1.2rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 25px 25px 25px;
            }
            
            .cta-section {
                padding: 30px 20px;
            }
        }
        
        .search-bar {
            max-width: 500px;
            margin: 0 auto 40px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid rgba(118, 88, 62, 0.2);
            border-radius: 50px !important;
          
            transition: all 0.3s ease;
            background: white;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #76583e;
            box-shadow: 0 0 20px rgba(118, 88, 62, 0.1);
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #76583e;
            font-size: 1.2rem;
        }



        /* portfollio */



        
        .category-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 60px;
            padding: 0 20px;
        }
        
        .nav-button {
            padding: 12px 30px;
            background: white;
            border: 2px solid rgba(118, 88, 62, 0.2);
            border-radius: 50px;
            color: #76583e;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .nav-button:hover,
        .nav-button.active {
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            border-color: #76583e;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(118, 88, 62, 0.2);
        }
        
        .portfolio-section {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .portfolio-section.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #76583e;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .gallery-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(118, 88, 62, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(118, 88, 62, 0.15);
        }
        
        .image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(118, 88, 62, 0.8) 0%, rgba(168, 128, 92, 0.6) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-item:hover .image-overlay {
            opacity: 1;
        }
        
        .overlay-icon {
            color: white;
            font-size: 2.5rem;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .overlay-icon {
            transform: scale(1);
        }
        
        .item-content {
            padding: 30px;
        }
        
        .item-title {
            font-size: 26px;
            color: #76583e;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .item-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}
        
        .color-palette {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            align-items: center;
        }
        
        .color-dot {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .palette-label {
            font-size: 0.9rem;
            color: #888;
            margin-left: 10px;
            font-style: italic;
        }
        
        .feature-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .inspiration-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(118, 88, 62, 0.08);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .inspiration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(118, 88, 62, 0.12);
        }
        
        .inspiration-icon {
            font-size: 3rem;
            color: #76583e;
            margin-bottom: 25px;
        }
        
        .inspiration-title {
            font-size: 32px;
            color: #76583e;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .inspiration-text {
            color: #666;
            line-height: 1.6;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            padding: 60px 40px;
          
            border-radius: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
     
        
        .cta-text {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: white;
            color: #76583e;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: #f8f9fa;
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .category-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-button {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .item-content {
                padding: 20px;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }



        /* blog section  */



            .page-title h2 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #76583e;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .page-title h2 span i {
            color: #a8805c;
            font-size: 2.5rem;
            margin-left: 15px;
            vertical-align: middle;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #76583e, transparent);
        }
        
        .text-center {
            text-align: center;
        }
        
        .timeline-year {
            margin-bottom: 40px;
        }
        
        .label {
            display: inline-block;
            padding: 10px 25px;
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 25px;
        }
        
        .label-default {
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(118, 88, 62, 0.2);
            letter-spacing: 1px;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        .timeline-panel p {
    text-align: left;
}
        .timeline {
            list-style: none;
            padding: 20px 0;
            position: relative;
        }
        
        .timeline::before {
            top: 0;
            bottom: 0;
            position: absolute;
            content: " ";
            width: 3px;
            background: linear-gradient(180deg, #76583e 0%, #a8805c 50%, #76583e 100%);
            left: 50%;
            margin-left: -1.5px;
        }
        
        .timeline > li {
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline > li::before,
        .timeline > li::after {
            content: " ";
            display: table;
        }
        
        .timeline > li::after {
            clear: both;
        }
        
        .timeline > li > .timeline-panel {
            width: 46%;
            float: left;
            background: white;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            box-shadow: 0 15px 35px rgba(118, 88, 62, 0.1);
            transition: all 0.3s ease;
        }
        
        .timeline > li > .timeline-panel:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(118, 88, 62, 0.15);
        }
        
        .timeline > li > .timeline-panel::before {
            position: absolute;
            top: 26px;
            right: -15px;
            display: inline-block;
            border-top: 15px solid transparent;
            border-left: 15px solid white;
            border-right: 0 solid white;
            border-bottom: 15px solid transparent;
            content: " ";
        }
        
        .timeline > li > .timeline-panel::after {
            position: absolute;
            top: 27px;
            right: -14px;
            display: inline-block;
            border-top: 14px solid transparent;
            border-left: 14px solid white;
            border-right: 0 solid white;
            border-bottom: 14px solid transparent;
            content: " ";
        }
        
        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
        }
        
        .timeline > li.timeline-inverted > .timeline-panel::before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }
        
        .timeline > li.timeline-inverted > .timeline-panel::after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }
        
        .timeline-badge {
            color: white;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 1.4em;
            text-align: center;
            position: absolute;
            top: 20px;
            left: 50%;
            margin-left: -30px;
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            z-index: 100;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 8px 25px rgba(118, 88, 62, 0.3);
            transition: all 0.3s ease;
        }
        
        .timeline-badge:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(118, 88, 62, 0.4);
        }
        
        .timeline-badge a {
            color: white;
            text-decoration: none;
        }
        
        .timeline-title {
            margin-top: 0;
            color: #76583e;
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .timeline-heading {
            margin-bottom: 20px;
        }
        
        .timeline-heading .label-default {
            font-size: 0.9rem;
            padding: 5px 15px;
        }
        
        .timeline-body {
            color: #666;
            line-height: 1.7;
        }
        
        .timeline-img {
            margin: 20px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }
        
        .timeline-img:hover .img-responsive {
            transform: scale(1.02);
        }
        
        .ceremony-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        
        .ceremony-slider div {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .ceremony-slider div:hover {
            transform: translateY(-3px);
        }
        
        .embed-responsive {
            position: relative;
            display: block;
            width: 100%;
            padding: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .embed-responsive-4by3 {
            padding-bottom: 75%;
        }
        
        .embed-responsive-item {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 15px;
        }
        
        .tour-video {
            margin: 20px 0;
        }
        
        .no-float {
            clear: both;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 16px;
            color: #888;
        }
        
        .blog-meta i {
            color: #76583e;
        }
        
        .read-more-btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(135deg, #76583e 0%, #a8805c 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 18px;
            font-weight: 500;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(118, 88, 62, 0.3);
            text-decoration: none;
            color: white;
        }
        
        .wow {
            visibility: hidden;
        }
        
        .wow.animate__animated {
            visibility: visible;
        }
        
        @media (max-width: 768px) {
            .page-title h2 {
                font-size: 2.5rem;
            }
            
            .timeline::before {
                left: 31px;
            }
            
            .timeline > li > .timeline-panel {
                width: calc(100% - 90px);
                width: -moz-calc(100% - 90px);
                width: -webkit-calc(100% - 90px);
            }
            
            .timeline > li > .timeline-badge {
                left: 15px;
                margin-left: 0;
                top: 16px;
            }
            
            .timeline > li > .timeline-panel {
                float: right;
            }
            
            .timeline > li > .timeline-panel::before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }
            
            .timeline > li > .timeline-panel::after {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }
            
            .ceremony-slider {
                grid-template-columns: repeat(2, 1fr);
            }
        }