/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;700;900&display=swap');
        :root {
            --primary: #4a8b7d;
            --primary-light: #6ba89b;
            --secondary: #f8b400;
            --dark: #2c3e50;
            --light: #f5f7fa;
            --white: #ffffff;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
             --header-height: 40px;
        }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v48/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
}
        html {
             scroll-padding-top: var(--header-height);
             }       

        section {
  scroll-margin-top: var(--header-height);
                }

        
/* For older browser support */
section:target::before {
  content: "";
  display: block;
  height: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  visibility: hidden;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .btn-secondary:hover {
            background-color: #e0a800;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Header */
header {
  background: #fff; /* or your preferred header background */
  height: 80px; /* adjust as needed */
    display: flex;
    align-items: center ;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional */
  position: fixed; /* or 'fixed'/'sticky' if needed */
  width: 100%;
  z-index: 1000;
  overflow: hidden; /* prevents overflow issues */

}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px; /* adjust as needed */
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.logo-container {
  width: auto; /* or specific width like 150px */
  height: 100%; /* ensures the logo fits well */
    display: flex;
    align-items: center; /* centers the logo vertically */
}

.logo-img {
  max-height: 150px; /* control image size */
  width: auto; /* maintains aspect ratio */
  display: block;
  object-fit: contain   ; /* ensures the image fits well */
}

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                        url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--text);
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

/* logo Image on the top */
.logo-container {
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

.logo-img {
    width: 250px; /* Fixed width, adjust as needed */
    height: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Ensures responsiveness */
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Optional hover effect */
.logo-img:hover {
    transform: scale(1.05); /* Slightly enlarges on hover */
}

        /* About Section */
        /* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-img {
    width: 300px;
    height: 400px; /* Fixed height */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    flex: 1;
}

.professional-experience {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.experience-item {
    margin-bottom: 1.5rem;
}

.experience-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        width: 100%;
        height: 300px;
        margin-bottom: 1rem;
    }
}

       /* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img {
        height: 180px;
    }
}
/* FAQ Section
.faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5em;
    color: #333;
}

/* Accordion Item Styling 
.accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden; /* Important for the max-height transition */
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background-color: #eee;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    color: #333;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e0e0e0;
}

.accordion-button span {
    flex-grow: 1; /* Allows the text to take up available space */
}

.accordion-arrow {
    fill: #555;
    transition: transform 0.3s ease-out; /* Smooth rotation for the arrow */
}

/* Styles for the active (open) accordion item */
.accordion-item.active .accordion-arrow {
    transform: rotate(180deg); /* Rotate arrow when active */
}

.accordion-content {
    max-height: 0; /* Initially hidden */
    overflow: hidden; /* Hide overflowing content */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Smooth transition for opening/closing */
    padding-top: 0; /* Initially no padding */
    padding-bottom: 0; /* Initially no padding */
}

.accordion-item.active .accordion-content {
    max-height: 2000px; /* Adjust this value as needed to accommodate your longest answer */
    padding: 15px 20px; /* Add padding when open */
    border-top: 1px solid #ddd; /* Optional: Add a border when open */
}

.accordion-content p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: #555;
} */

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5em;
    color: #333;
}

/* Styling for the <details> element */
.faq-details {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    /* Optional: Add a subtle shadow for depth */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Styling for the <summary> element (the clickable question) */
.faq-question {
    display: flex; /* Use flexbox for question and arrow alignment */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background-color: #eee;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    color: #333;
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker/arrow */
    position: relative; /* For custom arrow positioning */
}

.faq-question:hover {
    background-color: #e0e0e0;
}

/* Custom arrow for <summary> */
.faq-question::marker, /* For standard browsers */
.faq-question::-webkit-details-marker { /* For Webkit browsers */
    display: none; /* Hide the default browser arrow */
}

.faq-question::after {
    content: '\25BC'; /* Down arrow Unicode character */
    font-size: 1em;
    color: #555;
    margin-left: 10px;
    transition: transform 0.3s ease-out;
}

/* Rotate arrow when <details> is open */
.faq-details[open] > .faq-question::after {
    transform: rotate(180deg);
}

/* Styling for the answer content */
.faq-answer-content {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    background-color: #fcfcfc; /* Slightly different background for answer */
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

.faq-answer-content p {
    margin: 0; /* Remove default paragraph margin */
}

/* Optional: Style the open state of the entire details element */
.faq-details[open] {
    border-color: #aaa; /* Darker border when open */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Optional: Fade-in effect for section title (from your HTML) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 1s ease-out forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
       /* Booking Section */
        .booking {
            padding: 100px 0;
            background-color: var(--white);
        }

        .booking-container {
            display: flex;
            gap: 50px;
        }

        .booking-info {
            flex: 1;
        }

        .booking-info h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .booking-form {
            flex: 1;
            background-color: var(--light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(74, 139, 125, 0.2);
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary-light);
            opacity: 0.3;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background-color: var(--white);
  }

  .contact-container {
    display: flex;
    gap: 50px;
  }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }

        .contact-map {
            flex: 1;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container,
            .booking-container,
            .contact-container {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .about-content h2,
            .booking-info h2,
            .contact-info h2 {
                font-size: 2rem;
            }

            .booking-form {
                padding: 25px;
            }
        }
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* or center if you want it centered */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #2c3e50;
}

.logo span {
  color: #27ae60;
}

.tagline {
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 4px;
  font-style: italic;
}
        /*professional-experience */

    .professional-experience {
        font-family: Arial, sans-serif;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        line-height: 1.6;
    }
    
    .professional-experience h2 {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .experience-item {
        margin-bottom: 30px;
    }
    
    .experience-item h3 {
        color: #2980b9;
        margin-bottom: 10px;
    }
    
    .experience-item p {
        margin: 5px 0;
    }


        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }

