/* Base Styles */
* {
    margin: auto;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';font-size: 16px;
}

body {
    color: #858585;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Navbar container */
.navbar {
    width: 100%;
    height: 90px;
    background: white; /* Transparent background */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.navbar-logo {
    max-width: 240px;
    height: auto;
    margin-right: 10px;
    left: 0;
    
}

/* Navigation menu */
nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    padding: 0;
    
    
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease-in-out;
    
}

nav ul li a:hover {
    color: #d3c760; /* Highlight color on hover */
}

/* Hamburger menu styles (hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Mobile menu (hidden by default) */
nav {
    display: flex;
}

nav ul {
    flex-direction: row;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 600px) {
    .hamburger {
        display: flex;
    }

    /* Make sure navbar stacks items vertically in mobile */
    .navbar {
        position: relative;
        flex-direction: column;
        align-items: flex-end;
    }
    .navbar-logo {
        max-width: 220px;
        height: auto;
        margin-left: 0;
    }
    nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px; /* below navbar */
        right: 10px;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        gap: 15px;
        width: 100%;
    }

    nav ul li a {
        color: #fff;
        font-size: 0.9rem;
        display: block;
        width: 100%;
    }

    nav ul li a:hover {
        color: #d3c760;
    }

    /* When hamburger is clicked */
    .navbar.active nav {
        display: flex;
    }
}












/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Top Bar Styles */
.top-bar {
    background-color: #d4af37; /* Gold */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
    padding-top: 90px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 99;
}


.top-bar-content {
    display: flex;
    justify-content: flex-end;
    padding: 8px;
    margin-right: 48px;

}

.top-bar-content span {
    font-weight: 500;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .top-bar {
        height: auto;
        margin-top: -80px;
    }
    .top-bar-content {
        display: block;
        padding: 10px;
        margin: auto;
        justify-items: center;
        text-align: center;
    }
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    width: 100%;
    margin: 0;
}

/* Background Image */
.hero-image {

    display: flex;
    justify-content: center;
    max-width: 100%;
    height: auto;
    position: absolute;
    background-image: url('img/hero1.jpg'); /* Path to your image */
    background-size: cover;
    background-position: center;
    filter: blur(3px); /* Blur the background image */
    z-index: -1; /* Place the image behind the content */
    margin: 0;
    overflow: hidden;

}

/* Hero Content */
.hero-content {
    z-index: 1; /* Ensure content is above the image */
    padding: 20px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 60px;
}

.hero p {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    text-decoration: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    margin: 10px;
    transition: background 0.9s ease;
}

.btn-primary {
    background-color: #d4af37; /* Gold */
}

.btn-secondary {
    background-color: #555;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #333;
}

/* ============================
   Responsive Adjustments
   ============================ */

/* Tablets (landscape & portrait) */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .hero p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* Large Phones & Small Tablets */
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 20px;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .hero p {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9em;
        width: 100%;
        max-width: 280px;
        margin: auto;
    }
}

/* Android Phones & Small Devices */
@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .hero-buttons .btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}










/* About Section */
.about {
    background-color: #d4af37; /* Black background */
    color: #fff; /* White text */
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.about h2 {
    font-size: 2em;
    color: #1a1a1a; /* Gold color */
    margin-bottom: 20px;
}

.about p {
    font-size: 1.6em;
    color: #ffffff; /* Gold color */
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    
}

.about-content div {
    background-color: #1a1a1a;
    padding: 26px;
    width: 45%;
    height: 210px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-content div:hover {
    transform: translateY(-10px);
}

.about-content h3 {
    font-size: 16pt;
    color: #d4af37; /* Gold color */
    margin-bottom: 15px;
}

.about-content div p {
    font-size: 13pt;
    font-weight: 300;
    color: #ffffff;
    text-align: left;
    line-height: 19px;
}

.about-content i {
    margin-right: 10px;
    color: #d4af37; /* Gold icon */
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-content p {
        font-size: 10px;
        color: white;
    }

    .about-content div {
        background-color: #1a1a1a;
        padding: 20px;
        width: 45%;
        height: 250px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .about-content div {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* Content Section */
.body-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    margin-left: 9%;
}

.content-text {
    width: 60%;
}

.content-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 28px;
}

.btn-primary {
    background-color: #d4af37; /* Gold */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.content-image {
    width: 35%;
    
}

.square-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   
}

/* Google Rating and Info Bar */
.google-rating {
    background-color: #f4f4f4;
    padding: 20px 40px;
    text-align: center;
}

.rating-bar {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.tab {
    background-color: #d4af37;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: calc(100% / 3 - 40px); /* Adjust width for three tabs with gaps */
    transition: transform 0.3s ease;
}

.tab:hover {
    transform: translateY(-5px);
}

.tab a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.tab a i {
    font-size: 2em;
    color: #fffefd; /* Gold */
    margin-bottom: 10px;
}

.tab a span {
    font-size: 1em;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .rating-bar {
        flex-direction: column;
        gap: 10px;
    }

    .tab {
        width: 100%; /* Full width on smaller screens */
    }

    .content-image {
        display: none;
        
    }

    .body-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
        padding: 10px;
        margin: 2px;
    }
}


/* Area of Practice Section */
.area-of-practice {
    background-color: #fff;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.area-of-practice h2 {
    font-size: 2em;
    color: #333; /* Gold */
    margin-bottom: 20px;
}

.area-of-practice p {
    font-size: 16px;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 28px;
}

/* Services Section */
.services {
    background-color: #f4f4f4;
    padding: 30px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

/* Services in Home */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
    align-items: center;
    margin: 0 80px;
    
}

/* Individual Service Box */
.service-box {
    background-color: #e0e0e0; /* Light Grey */
    width: 30%;
    height: 350px;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Icon Style */
.service-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Title and Description */
.service-box h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1em;
    margin-bottom: 20px;
}

/* Find Out More Link */
.find-out-more {
    font-size: 1.1em;
    color: #d4af37; /* Gold */
    text-decoration: none;
}

/* Hover Effect */
.service-box:hover {
    background-color: #ccc;
    transform: translateY(-5px);
}

.service-box:hover .find-out-more {
    color: #fff;
}

.service-box:hover {
    border-bottom: 5px solid #d4af37; /* Dark strip at the bottom */
}

/* Icon Style */
.service-icon i {
    font-size: 2.5em;
    color: #d4af37; /* Gold color for icons */
    margin-bottom: 15px;
}


/* Responsiveness */
@media (max-width: 992px) {
    .service-box {
        width: 88%; /* Two boxes per row on smaller screens */
    }
    .service-box h3 {
        font-size: 1.3em;
    }
    
    .service-box p {
        font-size: 0.4em;
    }
    
    /* Find Out More Link */
    .find-out-more {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .service-box {
        width: 100%; /* One box per row on mobile screens */
    }

    .service-box h3 {
        font-size: 1.0em;
    }
    
    .service-box p {
        font-size: 0.8em;
    }
    
    /* Find Out More Link */
    .find-out-more {
        font-size: 0.6em;
    }
}

/* Insights Section */
.insights {
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
}

.insights h2 {
    font-size: 2.3em;
    color: #000;
    margin-bottom: 20px;
}

.insights p {
    font-size: 1.1em;
    color: #555;
}

/* Carousel Container */
.carousel-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 10px;
    
}

.carousel {
    display: flex;
    transition: transform 1s ease-in-out;
    gap: 10px;
    height: auto;

}

.insight-item {
    background-color: #fff;
    border-radius: 10px;
    width: 340px;
    height: auto; /* ✅ Adjusts to content */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.insight-item img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.insight-item:hover img {
    transform: scale(1.05);
}

.insight-item h3 {
    color: #333;
    font-size: 13pt;
    margin-top: 15px;
    text-align: left;
    line-height: 19px;
    
}

.insight-item p {
    color: #666;
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 19px;
    
}

/* Add responsive styles */
@media (max-width: 768px) {
    .insight-item {
        background-color: #fff;
        border-radius: 5px;
        width: 400px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: relative;
        margin: 0;
    }

    @keyframes slide {
        0% { transform: translateX(0); }
        0% { transform: translateX(10%); }
        0% { transform: translateX(20%); }
        0% { transform: translateX(0); }
    }
    
    .carousel {
        flex-direction: column;
    }
}

/* Automatic Carousel Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(5%); }
    66% { transform: translateX(10%); }
    100% { transform: translateX(0); }
}

.carousel {
    animation: slide 18s infinite;
}













/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px 0;
    font-family: 'Montserrat', sans-serif;
}

.testimonials h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 30px;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    background-color: #d4af37; /* Gold */
    color: #000; /* Black text */
    font-style: italic;
    padding: 20px;
    border-radius: 10px;
    align-content: center;
    display: none;
    height: 150px;
}

.testimonial-slide p {
    font-size: 1em;
    color: #4e4e4e;
    margin-bottom: 10px;
    
}

.testimonial-slide span {
    font-size: 1em;
    color: #555;
    font-weight: bold;
}

/* Testimonial Dots */
.testimonial-dots {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #aaa;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 1s;
}

.dot.active,
.dot:hover {
    background-color: #333;
}

/* Fade-in and Fade-out Transition Classes */
.fade-in {
    opacity: 1;
    transition: opacity 1.5s ease-in;
}

.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

@media (max-width: 992px) {
    .testimonials {
        text-align: center;
        padding: 50px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .testimonial-slide {
        background-color: #d4af37; /* Gold */
        color: #000; /* Black text */
        font-style: italic;
        padding: 20px;
        border-radius: 10px;
        align-content: center;
        display: none;
        height: 150px;
        width: 85%;
    }
}












/* Footer Styles */
footer {
    background-color: #333;
    color: #d4af37; /* Gold */
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    max-width: 40%;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
}

.footer-logo {
    width: 80px; /* Adjust logo size */
}

.footer-left h3 {
    color: #fff;
    font-size: 1.0em;
    margin-bottom: 10px;
}

.footer-left p {
    color: #aaa;
    font-size: 1em;
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-size: 1.2em;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8em;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    margin-top: 20px;
    justify-content: space-between;
    text-decoration: none;
}


.footer-bottom p {
    margin: 0;
    text-decoration: none;
}

.footer-bottom .created-by {
    font-size: 0.85em; /* Small text */
    color: #b4b4b44d; /* Orange color */
    text-align: right;
    margin-right: 20px;
    text-decoration: none;
}

.created-by a {
    font-size: 1em; /* Small text */
    color: #fd90014d; /* Orange color */
    text-align: right;
    margin-right: 20px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer-left {
        margin-bottom: 20px;
        align-items: center;
    }

    .footer-bottom {
        background-color: #222;
        color: #aaa;
        text-align: center;
        padding: 10px 0;
        font-size: 0.7em;
        margin-top: 10px;
        justify-content: space-between;
        text-decoration: none;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 1em;
        text-decoration: none;
    }

}








/* About Page*/
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* About Section */
.about-top {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.faq-header p {
    color: #d4af37;
}

.about-top h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-top p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #bdbdbd;
}

/* Vision and Mission Section */
.vision-mission {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    background-color: #fff;
}

.vision, .mission {
    width: 60%;
    margin-bottom: 40px;
}

.vision h2, .mission h2 {
    font-size: 2em;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;

}

.vision p, .mission p {
    font-size: 1.2em;
    color: #555;
    line-height: 25px;
}

/* Body Section */
.about-body {
    padding: 10px 0;
    background-color: #fff;
}

.about-body h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.about-body p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
        align-items: center;
    }

    .vision, .mission {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-top h1 {
        font-size: 2em;
    }

    .about-top p {
        font-size: 1.1em;
    }

    .about-body h2 {
        font-size: 1.8em;
    }

    .about-body p {
        font-size: 1em;
    }
}








/* Services Page */
.services {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.services h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.service-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    height: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h2 {
    color: #000;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.service-item .btn-primary {
    background-color: #d4af37; /* Gold */
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-item .btn-primary:hover {
    background-color: #b89630;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .service-item {
        width: 45%; /* Reduce width for medium screens */
        height: auto; /* Let height adjust dynamically */
    }
}

@media screen and (max-width: 768px) {
    .service-item {
        width: 100%; /* Full-width for smaller screens */
    }

    .service-list {
        gap: 20px; /* Reduce gap for tighter layouts */
    }
}

@media screen and (max-width: 480px) {
    .services h1 {
        font-size: 2em; /* Adjust title size */
    }

    .services p {
        font-size: 1em; /* Adjust paragraph size */
    }

    .service-item {
        padding: 15px; /* Add padding for smaller screens */
    }

    .service-item h2 {
        font-size: 1.2em; /* Adjust heading size */
    }

    .service-item p {
        font-size: 0.9em; /* Adjust text size */
    }

    .service-item .btn-primary {
        padding: 8px 15px; /* Smaller button padding */
        font-size: 0.9em;
    }
}


/* Team Section */
.team-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.team-section h1 {
    font-size: 3.5em;
    color: #000;
    margin-bottom: 10px;
}

.team-section p {
    color: #555;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.team-member {
    width: 32%;
    height: auto;
    position: relative;
    text-align: center;
}

.team-image {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 450px;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-image:hover img {
    transform: scale(1.1);
}

.team-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-image:hover .overlay {
    opacity: 1;
}

.overlay .icon {
    margin: 0 10px;
    color: #d4af37;
    height: 33px;
    text-decoration: none;
}

.team-member h3 {
    margin-top: 45px;
    font-size: 1.4em;
    color: #000;
}

.team-member p {
    color: #555;
    font-size: 1em;
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .team-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .team-image img {
        height: auto;
        object-fit: cover; /* Crop neatly instead of stretching */

    }
}

/* Phones */
@media (max-width: 600px) {
    .team-section {
        padding: 10px 10px;
    }
    .team-section p {
        font-size: 1rem;
    }
    .team-grid {
        display: grid;
        grid-template-columns: 1fr; /* Force 1 column */
        gap: 20px;
    }
    .team-image {
        align-items: center;
        justify-items: center;

    }
    .team-image img {
        height: auto;
        overflow: hidden;
        object-fit: cover; /* Crop neatly instead of stretching */
    }
    .icon {
        font-size: 1rem;
        padding: 8px;
    }
    .team-member {
        width: 80%;
    }
    .team-member h3 {
        font-size: 1.1rem;
    }
    .team-member p {
        font-size: 1rem;
    }
}




/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2px;
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    max-width: 1400px;
    
}

/* Contact Form Styling */
.contact-form {
    flex: 1 1 50%;
    background: #fff;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1.8em;
}

.contact-form p {
    margin-bottom: 5px;
    color: #555;
    font-size: 1em;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
        width: 100%;

}

.form-group.full-width {
    flex: 1 1 100%;
}

label {
    display: block;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

textarea {
    resize: none;
}

.btn-primary {
    background-color: #d4af37;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b89630;
}

/* Contact Image Styling */
.contact-image {
    flex: 1 1 45%;
    text-align: center;
}

.contact-image img {
    max-width: 90%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        margin-top: 150px;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-image {
        margin: 10px;
    }

    .team-section p {
        color: #555;
        font-size: 11px;
        text-align: left;
    } 
    
    .team-image {
        border-radius: 5px;
        height: 110px;
    }
}














/* Contact Page */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact {
    padding: 50px 180px;
    text-align: center;
    background-color: #f4f4f4;
}

.contact h1 {
    font-size: 2.5em;
    color: #000;
}

.contact p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    height: 290px;
    padding: 20px;
    text-align: center;
    align-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #000;
    
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box i {
    font-size: 2em;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;
}

.contact-box h2 {
    font-size: 1.5em;
    color: #000;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 1em;
    color: #555;
}




/* Map Section Styles */
.map-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.map-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.map-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .map-title {
        font-size: 2rem;
    }

    .map-description {
        font-size: 1rem;
    }
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 80px;
    margin: 40px auto;
    width: 100%;
    max-width: 1100px;
    text-align: left;
    margin-top: 120px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.contact-form label {
    font-size: 1em;
    margin-bottom: 5px;
    color: #555;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form .btn-submit {
    background-color: #d4af37; /* Gold */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #b89630;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .contact-boxes {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 100%;
        height: auto;
        text-align: center;
        align-content: center;
        transition: transform 0.3s ease;
        text-decoration: none;
        color: #000;
    }

    .contact {
        padding: 20px;
        text-align: center;
        background-color: #f4f4f4;
    }
}




/* Insights Section */
.insights-section {
    
    text-align: center;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    
}

.insights-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insight-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 10px;
    text-align: left;
    height: auto;
    margin-bottom: 60px;
    margin-top: 90px;
    
}

.insight-item:hover {
    transform: translateY(-10px);
    border-radius: 0;
}

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b89630;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .insights-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-list {
        grid-template-columns: 1fr; /* Force 1 column */
    }

    .insight-item {
        padding: 15px;
        height: 530px;
        margin: auto;

    }

    .insight-image {
        height: 170px;
    }

    h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .insights-list {
        grid-template-columns: 1fr;
    }

    .insight-item {
        padding: 10px;
    }

    .insight-image {
        height: 120px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }
}



/* Insights 2*/
.insight-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.image-head img {
    width: 100%;
    display: block;       /* makes margin auto work */
    margin: 10px auto;    /* centers horizontally */
    height: auto;         /* keeps aspect ratio */
    border-radius: 10px;
}

.insight-header h1 {
    font-size: 2.5em;
    color: #d4af37; /* Gold */
    margin-bottom: 20px;
    text-align: center;
}

.insight-content {
    color: #333;
    font-size: 1.1em;
}

.insight-content p {
    padding: 0 80px;
    line-height: 30px;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 60px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin: 0;
}

.image-container p {
    
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;

}



@media (max-width: 900px), (max-width: 600px) {
    .insight-container {
        padding: 0;
        margin: auto;
        background-color: #fff;
        border-radius: 10px;
    }
    .insight-content {
        display: flex;
        flex-direction: column;
        margin: auto;
        gap: 20px;
    }
    .image-head img {
        width: 90%;
        display: block;       /* makes margin auto work */
        margin: 20px auto;       /* centers horizontally */
        max-width: 100%;      /* prevents overflow on small screens */
        height: auto;         /* keeps aspect ratio */
        border-radius: 10px;
    }
    
    .insight-content p {
        padding: 0 80px;
        line-height: 30px;
        font-size: 0.9rem;
    }
    .image-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .image-container img {
        width: 80%;
    }

    .image-container p {
        display: none;
    }
}








/* FAQ Page Styles */

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* FAQ Header */
.faq-header {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.8); /* fallback for transparency */
    background-blend-mode: overlay;
    text-align: center;
    padding: 20px;
}

.faq-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 1.2em;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.5em;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Footer */
.faq-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* Social Media Icons*/
.social-icon {
    font-size: 1.5em;
    color: #d4af37; /* Gold */
    transition: color 0.3s ease;
    margin-right: 20px;
}

.social-icon:hover {
    color: #b89630; /* Darker Gold */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .social-media-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .faq-item {
        padding: 15px;
    }

    .faq-header h1 {
        font-size: 2em;
    }
}
