* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Prevent visited links from changing colour */
a {
    text-decoration: none;
}
a:visited {
    color: inherit;
}

/* Prevent ALL elements except html/body from scrolling */
section, div:not(.side-menu), article, main, aside, nav:not(.side-menu) {
    overflow: visible !important;
    max-height: none !important;
}

/* Hide scrollbar for all elements in Chrome, Safari, Edge, Opera */
*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    overflow-y: scroll !important;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: auto;
    min-height: 100%;
    position: relative;
}

/* Hide scrollbar for Chrome, Safari, Edge, Opera */
html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #D1D5DB;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Hide scrollbar for Chrome, Safari, Edge, Opera */
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible !important; /* Never create scroll context */
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: static;
}

/* Header & Navigation - Sticky on Scroll */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.3s ease;
    width: 100%;
}

header.scrolled {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    padding: 5px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hide broken image icon/text */
.logo-icon img[alt] {
    font-size: 0;
    color: transparent;
}

/* Style for when image fails to load */
.logo-icon img::before {
    content: '';
    display: block;
}

.logo-icon img::after {
    content: '';
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'audiowide', cursive;
    transition: all 0.3s ease;
}

header.scrolled .company-name {
    font-size: 1.2rem;
}

.company-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'audiowide', cursive;
}

.menu-toggle {
    display: none;
}

/* Desktop main nav (Labster/Lobster font, white, shadow) */
.main-nav {
    margin-left: auto;
    display: flex;
    gap: 24px;
    align-items: center;
}

.main-nav a {
    font-family: "DM Serif Text", serif;
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.main-nav a:visited {
    color: #ffffff; /* explicit, though global rule already handles */
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Floating Menu Button - Always Visible on mobile, hidden on desktop */
.floating-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-menu-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
    transform: scale(1.1);
}

.floating-menu-btn i {
    transition: all 0.3s ease;
}

.floating-menu-btn.active i::before {
    content: "\f00d";
}

/* Hide floating menu button on desktop */
@media (min-width: 769px) {
    .floating-menu-btn {
        display: none;
    }
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1101;
}

.menu-close:hover {
    color: #25D366;
    transform: rotate(90deg);
}

.menu-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(209, 213, 219, 0.2);
}

.menu-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.menu-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.menu-nav {
    padding: 30px 0;
}

.menu-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-nav a:hover {
    background-color: rgba(255,255,255,0.1);
    border-left-color: #25D366;
    padding-left: 35px;
}

.menu-nav a i {
    margin-right: 12px;
    width: 20px;
}

.menu-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(209, 213, 219, 0.2);
    margin-top: auto;
}

.menu-footer-btn {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.menu-footer-btn:hover {
    background-color: #20bd5a;
    transform: scale(1.05);
}

.menu-contact {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.8;
}

.menu-contact i {
    margin-right: 8px;
    color: #25D366;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Glint Style */
.hero {
    /* Updated to use root /images folder */
    background-image: linear-gradient(135deg, rgba(30, 60, 114, 0.88) 0%, rgba(42, 82, 152, 0.88) 100%), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    /* Exact viewport height */
    height: 100vh !important;
    height: 100svh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100svh !important;
    max-height: 100dvh !important;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 3vh;  /* Further reduced to move content down more */
    padding-top: 80px;
    overflow: hidden;
    box-sizing: border-box;
    transition: background-image 0.3s ease; /* Smooth transition */
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    display: none;
}

.hero-tagline {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    font-family: 'Lobster', cursive;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 0, 0, 0.5);
}

.rotating-text {
    display: inline-block;
    color: #25D366;
    position: relative;
    min-width: 280px;
    text-align: left;
}

.typewriter-text {
    display: inline-block;
    color: #25D366;
    min-width: 200px;
    text-align: left;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.typewriter-text::after {
    content: '|';
    color: #25D366;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.rotating-text span {
    position: absolute;
    left: 0;
    opacity: 0;
    animation: rotateWords 12s infinite;
}

.rotating-text span:nth-child(1) {
    animation-delay: 0s;
}

.rotating-text span:nth-child(2) {
    animation-delay: 3s;
}

.rotating-text span:nth-child(3) {
    animation-delay: 6s;
}

.rotating-text span:nth-child(4) {
    animation-delay: 9s;
}

@keyframes rotateWords {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    2% {
        opacity: 1;
        transform: translateY(0);
    }
    23% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
    }
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 10px 25px;  /* Further reduced */
    text-decoration: none;
    border: 2px solid white;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;  /* Further reduced */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background-color: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

.cta-button i {
    margin-right: 8px;
}

/* Section Styling */
section {
    padding: 100px 20px 60px 20px;
    max-width: 100%;
    width: 100%;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: static;
    display: block;
    margin-top: 0 !important; /* Ensure no gap after hero */
}

/* About section starts immediately after hero */
section.about {
    margin-top: 0 !important;
}

section h2 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Lobster', cursive;
}

.section-subtitle {
    font-family: "DM Serif Text", serif;
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 1.25rem;
}

/* About Section */
.about {
    background-color: white;
}

.about h2 {
    color: #1e3c72;
}

.about .section-subtitle {
    color: #666;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
    text-align: justify;
}

.about-image {
    margin-bottom: 50px;
}

.about-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
}

.highlight-item i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* Values Grid - New Design */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #2a5298;
}

.value-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.1rem;
    color: #1e3c72;
}

.value-card h3 {
    font-size: 0.95rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-card p {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Desktop/Laptop - Show full content */
@media (min-width: 769px) {
    .hero {
        background-size: 100% auto;
    }

    /* Desktop: show header nav, hide in side-menu world only */
    .main-nav {
        display: flex;
    }
}

/* Mobile Layout - 2x2 Grid */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .value-card {
        padding: 12px 8px;
    }
    
    .value-card h3 {
        font-size: 0.85rem;
    }
    
    .value-card p {
        font-size: 0.75rem;
    }

    /* On mobile, hide header desktop nav, show hamburger */
    .main-nav {
        display: none;
    }
}

/* Team Section */
.team {
    background-color: #f5f5f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.team-photo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.team-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-content h3 {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    font-weight: 400;    
    color: #1e3c72;
    letter-spacing: 1px;    
    margin-bottom: 8px;
    
}

.team-qualifications {
    font-family: "DM Serif Text", serif;    
    font-weight: 600;
    font-size: 1.0rem;
    color: #32a852;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.team-role {
    font-family: "DM Serif Text", serif;
    font-size: 1.5rem;
    font-weight: 600; 
    color: #1e3c72;
    margin-bottom: 20px;
}

.team-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
    margin-bottom: 25px;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.team-contact a {
    width: 40px;
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-contact a i {
    color: #6b7280;
    font-size: 1.1rem;
}

.team-contact a:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.team-contact a:hover i {
    color: white;
}

/* Mobile Team Layout */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-qualifications {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .team-content h3 {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 0.95rem;
    }
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 20px;  /* Added padding */
    border-radius: 8px;  /* Added rounded corners */
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;  /* Light gray border */
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-2px);  /* Slight lift on hover */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);  /* Subtle shadow on hover */
    border-color: #d1d5db;  /* Slightly darker border on hover */
}

.service-card:hover i {
    color: #1e3c72;
    transform: scale(1.1);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 0;
    display: block;
    transition: all 0.3s ease;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 12px;
    font-weight: 700;
    min-height: 2.5em;  /* Fixed height for 2 lines - ensures alignment */
    line-height: 1.25;
    display: flex;
    align-items: center;  /* Vertically center if only 1 line */
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;  /* Remove default margin */
}

/* Contact Section - Get in Touch With Us */
.contact-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.contact-section h2 {
    color: #1e3c72;
}

.contact-section .section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #1e3c72;
}

.contact-details h4 {
    font-family: "DM Serif Text", serif;
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.office-hours-card {
    background: #1e3c72;
    color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.office-hours-card h4 {
    font-family: "DM Serif Text", serif;
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 500;
}

/* Right Side - Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.contact-form-container h3 {
    font-family: "DM Serif Text", serif;
    font-size: 1.5rem;
    color: #1e3c72;;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group .required {
    color: #dc2626;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: #1e3c72;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.submit-button i {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }

    .office-hours-card {
        padding: 20px;
    }

    .submit-button {
        padding: 12px 25px;
    }
}

/* Important Links Section */
.links {
    background-color: white;
}

.links h2 {
    font-size: 1.5rem;
}

.links p {
    font-size: 1rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #D1D5DB;
}

.link-card:hover {
    border-color: #2a5298;
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.link-card a {
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.link-card i {
    font-size: 1rem;
    color: #2a5298;
}

/* Mobile Layout - 2x2 Grid for Important Links */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .link-card {
        padding: 8px;
    }
    
    .link-card a {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 6px;
    }
    
    .link-card i {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: #1e3c72;
    color: white;
    padding: 40px 20px 25px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-disclaimer strong {
    font-weight: 700;
    opacity: 1;
}

.footer-copyright {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-info {
    margin-bottom: 25px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-info p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
    color: white;
    font-size: 1.8rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.4);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.5);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .company-subtitle {
        font-size: 0.65rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .floating-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
    }

    .floating-whatsapp i {
        font-size: 1.6rem;
    }

    .hero {
        /* Mobile/Tablet background image (Image B) - updated root path */
        background-image: linear-gradient(135deg, rgba(30, 60, 114, 0.88) 0%, rgba(42, 82, 152, 0.88) 100%), url('/images/hero-background-mobile.jpg') !important;
        padding-bottom: 2vh !important;  /* Further reduced to move content down */
        padding-top: 60px !important;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        /* Force exact viewport height */
        height: 100vh !important;
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
        max-height: 100dvh !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* Mobile: Ensure all sections are visible and don't scroll */
    section, .container, div:not(.side-menu) {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Force smooth page scrolling only */
    html {
        scroll-behavior: smooth !important;
    }

    body {
        -webkit-overflow-scrolling: touch !important;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .typewriter-text {
        min-width: 180px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;  /* Single column on mobile */
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;  /* Maintain padding on mobile */
    }

    .service-card h3 {
        min-height: 3em;  /* Slightly more space on mobile for centered titles */
        justify-content: center;  /* Center text horizontally */
    }

    /* Remove any centering for last item - not needed in single column */
    .service-card:nth-child(9):nth-last-child(1) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .service-icon {
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        flex-direction: column;
        gap: 30px;
    }

    .side-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-subtitle {
        font-size: 0.6rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .logo {
        gap: 10px;
    }

    .floating-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    .scroll-to-top {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 15px;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 75px;
        right: 15px;
    }

    .floating-whatsapp i {
        font-size: 1.4rem;
    }

    .hero {
        /* Mobile background image (Image B) - updated root path */
        background-image: linear-gradient(135deg, rgba(30, 60, 114, 0.88) 0%, rgba(42, 82, 152, 0.88) 100%), url('/images/hero-background-mobile.jpg') !important;
        padding-bottom: 2vh !important;  /* Further reduced to move content down */
        padding-top: 60px !important;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        /* Force exact viewport height */
        height: 100vh !important;
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
        max-height: 100dvh !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* Mobile: Ensure all sections are visible and don't scroll */
    section, .container, div:not(.side-menu) {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Force smooth page scrolling only */
    html {
        scroll-behavior: smooth !important;
    }

    body {
        -webkit-overflow-scrolling: touch !important;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .typewriter-text {
        min-width: 140px;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 50px 20px;
    }

    .cta-button,
    .whatsapp-button {
        padding: 10px 25px;  /* Match reduced desktop size */
        font-size: 0.8rem;  /* Slightly smaller for mobile */
        letter-spacing: 1px;
    }

    .side-menu {
        width: 100%;
        right: -100%;
    }

    .side-menu.active {
        right: 0;
    }
}
