body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #1a365d;
}
.bg-dark-teal {
    background-color: #1a365d;
}
.bg-gradient-teal {
    background: linear-gradient(135deg, #1a365d 0%, #0f284a 100%);
}
.text-yellow-accent {
    color: #fcd34d;
}
.text-white-light {
    color: #e2e8f0;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.nav-links li a.active, .nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a.active::after, .nav-links li a:hover::after {
    width: 100%;
}

.nav-ul :hover {
    text-decoration: underline;
    color: white;

}

/* Wave Separator - Static styles */
.wave-separator {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 10;
}
.wave-separator svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.wave-top-to-white .wave-path {
    fill: #ffffff;
}
.wave-bottom-from-white .wave-path {
    fill: #1a365d;
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #2d3748;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Tabs for "Our Offerings" Section */
.tab-button.active-tab {
    background-color: #8f7e48;
    color: #1a365d;
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active-content {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MODIFIED CSS FOR FOOTER */
        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 30px 0 10px 75px;
            margin-top: auto;
        }
        .main-footer {
            border-bottom: 1px solid #4a5d72;
            padding-bottom: 30px;
            margin-bottom: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .footer-section {
            margin-bottom: 20px;
        }
        .footer-section h3 {
            color: var(--white-color);
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: bolder;
        }
        .footer-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .footer-section a {
            color: var(--white-color);
            opacity: 0.8;
            text-decoration: none;
        }
        .footer-section a:hover {
            color: var(--primary-color);
            opacity: 1;
            text-decoration: underline;
        }
        .footer-logo {
            height: 40px;
            margin-bottom: 10px;
        }
        .company-name {
            font-weight: 600;
            margin: 0;
            font-size: 0.9rem;
        }
        .address-lines {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .address-lines {
            display: flex;
            align-items: flex-start; /* Aligns the icon and text to the top of the line */
            gap: 10px; /* Adjusts the space between the icon and the text */
            flex-direction: row; /* Arranges children horizontally */
        }
        .address-lines i {
            flex-shrink: 0; /* Prevents the icon from shrinking */
            margin-top: 5px; /* Adds space above the icon to align it better with the text */
        }
        .address-lines span {
            display: block; /* Ensures the text wraps correctly */
        }
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .social-links a {
            font-size: 1rem;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.8rem;
            color: #aaa;
            padding-top: 20px;
        }
        .footer-section.quick-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }
        .footer-section.quick-links ul li {
            margin-bottom: 6px;
        }
        .footer-section.quick-links ul li a {
            font-size: 0.9rem;
        }
        /* Footer changes for mobile screens */
        @media (max-width: 768px) {
            /* Target the specific sections */
            .footer-section.quick-links,
            .footer-section.find-us {
                text-align: left !important;
            }
            
            /* Align list items and social icons to the left */
            .footer-section.quick-links ul, 
            .footer-section.find-us .social-links {
                justify-content: flex-start !important;
                align-items: flex-start !important;
                text-align: left !important;
            }
        }
        /* Footer styles for desktop and larger screens */
        .footer-section.quick-links,
        .footer-section.find-us {
            text-align: center; /* Center these sections on desktop */
        }

        .footer-section.quick-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .footer-section.find-us .social-links {
            justify-content: center; /* Center social icons on desktop */
        }

        /* Footer styles for mobile screens */
        @media (max-width: 768px) {
            .footer-section.quick-links,
            .footer-section.find-us {
                text-align: left; /* Left align these sections on mobile */
            }

            .footer-section.quick-links ul,
            .footer-section.find-us .social-links {
                text-align: left;
                justify-content: flex-start; /* Left align social icons on mobile */
            }
        }
/* MODIFIED CSS FOR SLIDESHOW - RECTANGULAR SHAPE */
        .slideshow-container {
            position: relative;
            width: 70rem;
            height: 35rem;
        }
        .slideshow-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex; /* Use Flexbox for layout */
            flex-direction: column; /* Stack image and text vertically */
            align-items: center; /* Center horizontally */
            justify-content: flex-start; /* Align to the top of the container */
            opacity: 0;
            animation: fade 8s infinite;
        }
        .slideshow-image {
            width: 100%;
            height: 80%; /* Takes up 80% of the slide height */
            object-fit: contain;
        }
        .slideshow-text {
            text-align: center;
            color: white;
            padding-top: 1rem;
            flex-grow: 1; /* Allows text section to fill remaining space */
        }
        .slideshow-text h3 {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .slideshow-text p {
            font-size: 1rem;
            font-weight: normal;
        }
        /* Animation delays for each slide */
        .slideshow-slide:nth-child(1) { animation-delay: 0s; }
        .slideshow-slide:nth-child(2) { animation-delay: 2s; }
        .slideshow-slide:nth-child(3) { animation-delay: 4s; }
        .slideshow-slide:nth-child(4) { animation-delay: 6s; }
        /* The animation itself */
        @keyframes fade {
            0%, 25% { opacity: 1; }
            30%, 100% { opacity: 0; }
        }











/* Popup overlay (unchanged) */
#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box – no fixed height; just a frame */
#popupOverlay #popupBox {
  position: relative;
  padding: 0;               /* no extra space around the image */
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.6);
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90vw;          /* fit within viewport width */
  max-height: 90vh;         /* fit within viewport height */
  overflow: hidden;         /* keeps it clean if image is smaller */
}

/* Poster image – always fully visible, no cropping */
#popupOverlay #popupBox img {
  display: block;
  max-width: 90vw;          /* never exceed viewport */
  max-height: 90vh;         /* never exceed viewport */
  width: auto;
  height: auto;
  object-fit: contain;      /* preserve full image */
}

/* Close button (unchanged) */
#popupOverlay #popupBox .closeBtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Hide overlay */
#popupOverlay.hidden { display: none !important; }
