/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1a252f;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #2c3e50;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Carousel */
.carousel {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    height: 80vh;
    max-height: 600px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

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

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    right: 10%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 500px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.select-category {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-size: 2.5rem;
  padding: 80px 10px 10px 20px; /* Top/Bottom: 80px, Left/Right: 20px */
  background-color: #f9f9f9; /* Optional: light neutral background */
  color: #333; /* Professional dark text */
}


/* Split Section - Responsive Side-by-Side Layout */
.split-section {
    padding: 80px 0;
}

.split-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.split-image-container {
    width: 70%;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
}

.split-image {
    max-width: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content {
    text-align: center;
    padding: 0 20px;
    width: 70%;
    margin: auto;

}

.split-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50;
}

.split-content p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Adjustments */
/* Desktop/Laptop Layout - Side by Side */
@media (min-width: 992px) {
    .split-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }
    
    .split-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
        margin-bottom: 0;
        flex-direction: column;
    }
    
    .split-image-container {
        height: 300px; /* Fixed height for consistent sizing */
        margin-bottom: 30px;
    }
    
    .split-image {
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .split-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .split-content {
        padding: 0 15px;
    }
}

/* Tablet Layout - Stacked */
@media (max-width: 991px) {
    .split-section {
        display: block;
    }
    
    .split-item {
        margin-bottom: 60px;
    }
    
    .split-image-container {
        height: auto;
    }
    
    .split-image img {
        height: auto;
    }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .split-section {
        padding: 50px 0;
    }
    
    .split-item {
        margin-bottom: 50px;
    }
    
    .split-content h2 {
        font-size: 1.7rem;
    }
    
    .split-content p {
        font-size: 1rem;
    }
}

/* [Remaining CSS stays the same] */

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.gallery-section p {
    margin-bottom: 40px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #bdc3c7;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 10px;
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-icon {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .split-item {
        flex-direction: column;
    }
    
    .split-content {
        order: 2;
        padding: 20px 0;
        text-align: center;
    }
    
    .split-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .split-item:nth-child(even) .split-content,
    .split-item:nth-child(even) .split-image {
        order: unset;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .carousel {
        height: 60vh;
    }
    
    .carousel-caption {
        bottom: 10%;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        left: 5%;
        right: 5%;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}