/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    display: block; /* Ensure full clickable area */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-content a::after {
    display: none; /* Remove underline from dropdown items */
}

.hamburger {
    display: none; /* Hidden by default, shown in media query */
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001; /* Above nav links in mobile */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 106, 193, 0.25);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 106, 193, 0.25);
}

/* Header Styles */
header {
    background: linear-gradient(to right, rgba(255,255,255,0.98), rgba(248,250,253,0.98));
    box-shadow: 0 2px 15px rgba(44, 106, 193, 0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* For hamburger positioning */
}

.logo {
    max-width: 160px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-content a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../Images/sir\ speech.JPG');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-banner {
    background: linear-gradient(rgba(220, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../Images/office1.JPG') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Services Highlight Section */
.services-highlight {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(44, 106, 193, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 106, 193, 0.12);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(58,123,213,0.1), rgba(92,149,227,0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Services Page Specific Styles */
.services-container {
    padding: var(--section-padding, 80px) 0; /* Use CSS variable or default */
    background-color: #fff; /* White background for content area */
}

.service-category {
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.2rem; /* Slightly larger */
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block; /* To make border only as wide as text */
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.service-item ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
}

.service-item ul li::before {
    content: '\f058'; /* Font Awesome check circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; /* Required for solid icons */
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px; /* Adjust vertical alignment */
    font-size: 1.1em;
}

.service-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Styling for About Us, Team, Vision-Mission, Careers pages */
.about-section, .team-section, .vision-mission-section, .careers-section {
    padding: var(--section-padding, 80px) 0;
    background-color: #fff;
}

.about-content-grid, .team-grid, .vision-mission-grid, .careers-grid {
    display: grid;
    gap: 40px;
}

/* Generic card styling for these pages */
.content-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.content-card h2, .content-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-card p, .content-card ul li {
    color: var(--text-light);
    line-height: 1.7;
}

.content-card ul {
    padding-left: 20px;
    list-style: disc;
}

/* Services Specific Styles */
.services-container {
    padding: 60px 0;
    background-color: #fff; /* White background for content area */
}

.service-category {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem; /* Increased size */
    color: var(--primary-color);
    margin-bottom: 30px; /* Increased spacing */
    position: relative;
    padding-bottom: 15px; /* Space for underline */
    border-bottom: 2px solid var(--accent-color);
    display: inline-block; /* To make border only as wide as text */
}

.category-title::before {
    content: ""; /* Removed icon for cleaner look */
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 1.4rem; /* Slightly larger */
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.service-item h3::before {
    content: '\f0da'; /* FontAwesome right arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 10px;
}

.service-item ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.service-item ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem; /* Standardized font size */
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
}

.service-item ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.8rem;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

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

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background-color: white;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 250px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    position: relative;
    display: flex;
    overflow: hidden;
}

.testimonial {
    flex: 0 0 100%;
    padding: 30px;
    text-align: center;
}

.quote {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote i {
    color: var(--accent-color);
    font-size: 24px;
}

.quote p {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0;
}

.client h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client p {
    color: var(--text-light);
}

.slider-controls {
    text-align: center;
    margin-top: 30px;
}

.prev-slide, .next-slide {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-light);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, var(--dark-color), #1a365d);
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

.registration {
    margin-top: 10px;
    font-size: 12px;
    color: var(--accent-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.link-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

/* Interactive Elements */
.animated-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.animated-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(9, 30, 66, 0.15);
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.rotate-on-hover {
    transition: transform 0.3s ease;
}

.rotate-on-hover:hover {
    transform: rotate(360deg);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero h2 {
        font-size: 1.3rem;
    }
    .about-content, .contact-grid, .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-title {
        font-size: 28px;
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        /* Removed flex-direction: column; align-items: flex-start; */
    }
    .logo {
        max-width: 130px; /* Slightly smaller logo on mobile */
    }
    .logo img {
        height: 40px;
    }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    .nav-links li {
        width: 100%;
        text-align: left; /* Align text to left */
    }

    .nav-links a {
        padding: 12px 20px; /* Adjust padding for mobile */
        border-bottom: 1px solid var(--border-color); /* Separator lines */
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none; /* No underline for mobile nav items */
    }

    .dropdown-content {
        position: static; /* Static positioning for mobile */
        display: none; /* Hidden by default */
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px; /* Indent dropdown items */
        opacity: 1;
        transform: none;
        border-top: none;
        background-color: #fdfdfd; /* Slightly different bg for mobile dropdown */
    }

    .dropdown.active .dropdown-content {
        display: block; /* Show when parent dropdown is active */
    }

    .dropdown-content a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .hero h2 {
        font-size: 1.1rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Stack service cards on mobile */
    }
    .service-category {
        padding: 20px;
    }
    .category-title {
        font-size: 1.6rem;
    }
    .service-item h3 {
        font-size: 1.2rem;
    }
    .service-item ul li {
        font-size: 0.9rem;
    }
    .about-preview .about-content {
        flex-direction: column;
    }
    .about-preview .about-image {
        margin-top: 30px;
    }
    .photo-gallery .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .contact-preview .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-preview .map-container {
        margin-top: 30px;
        height: 300px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links .link-column {
        margin-bottom: 10px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
