/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: bold;
}
/* Header Styles */
header {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(15, 14, 14, 0) !important; /* Transparent background */
    padding: 15px 0;
    z-index: 10;
}

header:hover {
    background: rgba(15, 14, 14, 0.58) !important;
}

.logo {
    margin-right: auto; /* Pushes the menu to the center */
}

.logo img {
    height: 50px;
    width: 120%; /* Adjust based on your logo */
}

.submenu {
    width: 1430px;
    right: 0; /* Align to the right */
    transform: translateX(-50px); /* Move dropdown towards the left */
}

.dropdown-menu-lg-start[data-bs-popper] {
    left: -415px;
    padding-left: 50px;
    padding: 30px;
}

.cat_img {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Ensures it's a perfect circle */
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the image fills the circle properly */
    border: 2px solid #c49050; /* Optional: Adds a border */
    padding: 5px; /* Optional: Adds spacing inside the border */
    text-align: center;
}
/* Carousel Container */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.carousel-caption {
    margin-bottom: 200px;
}
.carousel-caption h1 {
    font-weight: bold;
}

/* Carousel Animation */
@keyframes slide {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-100%); }
    40% { transform: translateX(-200%); }
    60% { transform: translateX(-300%); }
    80% { transform: translateX(-400%); }
}

/* Footer Styles */
footer {
    background-color: #111;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Social Media Section */
.social-media p {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons i {
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.icons i:hover {
    color: #ccc;
}

/* Footer Content */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 15px;
    text-align: left;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 31px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ccc;
}

/* Contact Info */
.footer-column p {
    font-size:15px;
    margin-bottom: 8px;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}

/* Divider Line */
hr {
    border: 1px solid white;
    background: #444;
    margin: 30px 10px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }
}

.nav-link {
    color: inherit !important;
    text-decoration: none;
    max-width: 150px;
    font-size: 14px;
}

.cat-img {
    width: 80px;
    height: 60px;
    margin-left: 20px;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 300px !important; /* Adjust as needed */
}

.image-container img {
    width: 235%;
    height: auto;
    display: flex;
}

.image-container:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the area */
}

.video-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-90%, -10%);
    color: black;
    text-align: left;
    background: rgba(255, 255, 255, 0.307); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
}

/* Section Styling */
.insights {
    text-align: center;
    padding: 40px;
    background: #fff;
}

.insights h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Insight Cards */
.insight-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.insight-card {
    width: 300px;
    height: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(35, 31, 31, 0.20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card img {
    width: 100%;
    height: 50%;
    display: block;
    border-radius: 8px;
}

.insight-card h3 {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* View All Button */
.view-all {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 10px;
    border: 2px solid black;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: black;
    transition: background 0.3s;
    text-align: center;
}

.view-all:hover {
    background: white;
    color: black;
    cursor: pointer;
}


/* Testimonial Section Layout */
.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1265px;
    margin: auto;
    padding: 40px 20px;
    background: #f5f3ee;
    margin-bottom: 20px;
}

/* Left Side - Image & Rating */
.testimonial-left {
    position: relative;
    width: 50%;
}

.testimonial-left img {
    width: 100%;
    border-radius: 10px;
}

/* Right Side - Content */
.testimonial-right {
    width: 50%;
    padding: 20px;
}

.sub-heading {
    font-size: 14px;
    color: #d4a356;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-right h2 {
    font-size: 32px;
    margin: 10px 0;
}

/* Testimonials Grid */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.location {
    font-size: 14px;
    color: gray;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 18px;
    color: #d4a356;
}

.stars {
    color: gold;
}

.why-section {
    max-width: 700px;
    padding: 70px;
    margin-top: 60px;
}
.why-section h1 {
    font-size: 35px;
    font-weight: bold;
}
.feature {
    display: flex;
    align-items: center;
    margin: 20px 0;
    margin-top: 40px;
}
.feature i {
    font-size: 30px;
    margin-right: 15px;
}
.feature-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.feature-content p {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 576px) {
    .testimonial-section {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-left, .testimonial-right {
        width: 100%;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    .carousel-caption {
        font-size: 12px; /* Smaller font for mobile */
        padding: 5px;
        bottom: 5px; /* Adjust for mobile */
    }
}