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

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a2332 15%, #2d3e50 30%, #4a5a6a 50%, #c8d0d8 70%, #e0e0e0 100%);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 96, 145, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(42, 123, 184, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(45, 62, 80, 0.1) 0%, transparent 50%),
        url('https://i.imgur.com/oJLma8N.png');
    background-position: 
        0% 0%,
        100% 100%,
        50% 100%,
        center;
    background-repeat: no-repeat;
    background-size: 
        150% 150%,
        150% 150%,
        150% 150%,
        800px auto;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: subtlePulse 15s infinite ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(30, 96, 145, 0.03) 50px, rgba(30, 96, 145, 0.03) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(42, 123, 184, 0.03) 50px, rgba(42, 123, 184, 0.03) 100px);
    pointer-events: none;
    z-index: 0;
}

@keyframes subtlePulse {
    0%, 100% { 
        opacity: 0.35;
    }
    50% { 
        opacity: 0.45;
    }
}

body > * {
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(30, 96, 145, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    max-width: 250px;
}

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

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-top {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-text-bottom {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Mobile Menu Toggle Button - HIDDEN ON DESKTOP */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(30, 96, 145, 0.4) 0%, rgba(42, 123, 184, 0.3) 100%);
    border: 2px solid rgba(30, 96, 145, 0.5);
    color: white;
    font-size: 1.8rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(42, 123, 184, 0.5) 0%, rgba(30, 96, 145, 0.4) 100%);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a, .nav-links .services-dropdown-btn {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1.0rem;
    border-radius: 9px;
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 4px),
        linear-gradient(135deg, rgba(30, 96, 145, 0.3) 0%, rgba(42, 123, 184, 0.2) 100%);
    border: 3px solid rgba(30, 96, 145, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-links .services-dropdown-btn {
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 4px),
        linear-gradient(135deg, rgba(30, 96, 145, 0.4) 0%, rgba(42, 123, 184, 0.3) 100%);
}

.nav-links a:hover, .nav-links .services-dropdown-btn:hover {
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 4px),
        linear-gradient(135deg, rgba(42, 123, 184, 0.5) 0%, rgba(30, 96, 145, 0.4) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 96, 145, 0.4);
}

.services-dropdown {
    position: relative;
}

.services-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(15px);
    min-width: 250px;
    border-radius: 8px;
    margin-top: 0;
    padding-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(30, 96, 145, 0.3);
    padding-bottom: 1.5rem;
    z-index: 1001;
}

.services-dropdown:hover .services-dropdown-menu {
    display: block;
}

.services-dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s;
}

.services-dropdown-menu a:first-child {
    margin-top: 0.5rem;
}

.services-dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(30, 96, 145, 0.3) 0%, rgba(42, 123, 184, 0.2) 100%);
    padding-left: 2rem;
    transform: none;
    box-shadow: none;
}

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

.hero {
    background: transparent;
    backdrop-filter: blur(0px);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 96, 145, 0.25), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -50%; }
    100% { left: 100%; }
}

.logo-animation {
    display: none;
}

.hero-logo {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e6091 0%, #2a7bb8 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 96, 145, 0.3);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2a7bb8 0%, #1e6091 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 96, 145, 0.4);
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(30, 96, 145, 0.6), rgba(42, 123, 184, 0.4), transparent);
}

section::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #1e6091, #2a7bb8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(30, 96, 145, 0.5);
}

h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e6091, #2a7bb8);
    border-radius: 2px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* New Hexagonal Services Layout */
.services-container {
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(75, 80, 85, 0.95) 0%, rgba(65, 70, 75, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(30, 96, 145, 0.3);
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    text-decoration: none;
    background:  
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(200, 200, 200, 0.85) 0%, rgba(180, 180, 180, 0.8) 100%);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(30, 96, 145, 0.1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 350px;
}

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.service-card-content {
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e6091, #2a7bb8, #1e6091);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 96, 145, 0.25);
    border-color: rgba(30, 96, 145, 0.3);
    background:  
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(210, 210, 210, 0.9) 0%, rgba(190, 190, 190, 0.85) 100%);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1e6091, #2a7bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.0rem;
    margin-bottom: 1.0rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #333;
}

.service-icon {
    display: none;
}

.about {
    background: rgba(45, 62, 80, 0.05);
    backdrop-filter: blur(5px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(200, 200, 200, 0.85) 0%, rgba(180, 180, 180, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 3px solid #1e6091;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 96, 145, 0.2);
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(210, 210, 210, 0.9) 0%, rgba(190, 190, 190, 0.85) 100%);
}

.value-item h3 {
    color: #1e6091;
    margin-bottom: 0.5rem;
}

.contact {
    background: rgba(30, 96, 145, 0.08);
    backdrop-filter: blur(5px);
    color: #333;
}

.contact h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(200, 200, 200, 0.9) 0%, rgba(180, 180, 180, 0.85) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(30, 96, 145, 0.2);
}

.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(30, 96, 145, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e6091;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.1);
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #1e6091 0%, #2a7bb8 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2a7bb8 0%, #1e6091 100%);
    box-shadow: 0 4px 15px rgba(30, 96, 145, 0.3);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(200, 200, 200, 0.85) 0%, rgba(180, 180, 180, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #1e6091;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 96, 145, 0.2);
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(210, 210, 210, 0.9) 0%, rgba(190, 190, 190, 0.85) 100%);
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.contact-item a {
    color: #1e6091;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-item p {
    color: #333;
    font-size: 1.1rem;
}

footer {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid rgba(30, 96, 145, 0.3);
}

/* Service Page Styles */
.service-page {
    padding-top: 90px;
}

.service-hero {
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 4px),
        linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #1a1a1a 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(30, 96, 145, 0.5);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 96, 145, 0.1), transparent);
    animation: shimmer 8s infinite;
}

.service-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.service-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-description h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(200, 200, 200, 0.8) 0%, rgba(180, 180, 180, 0.75) 100%);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1e6091;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(30, 96, 145, 0.2);
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(145deg, rgba(210, 210, 210, 0.85) 0%, rgba(190, 190, 190, 0.8) 100%);
}

.feature-box h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.gallery-section {
    background: rgba(42, 123, 184, 0.05);
    backdrop-filter: blur(5px);
    padding: 4rem 2rem;
}

.gallery-section h2 {
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
}

.gallery-instruction {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    background: 
        repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.05) 0px, rgba(120, 120, 120, 0.05) 10px, transparent 10px, transparent 20px),
        linear-gradient(135deg, rgba(30, 96, 145, 0.7) 0%, rgba(42, 123, 184, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

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

.gallery-placeholder {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
}

.back-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.back-button:hover {
    background: linear-gradient(135deg, #1e6091 0%, #2a7bb8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 96, 145, 0.3);
}

.button-container {
    text-align: center;
    margin: 3rem 0 1rem;
}

/* Service Areas Section */
.service-areas {
    background: rgba(30, 96, 145, 0.05);
    backdrop-filter: blur(5px);
}

.service-areas-container {
    max-width: 1000px;
    margin: 0 auto;
}

.towns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.6rem;
    margin: 2rem 0 3rem;
}

.town-item {
    background: repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.02) 0px, rgba(120, 120, 120, 0.02) 10px, transparent 10px, transparent 20px),
                linear-gradient(145deg, rgba(220, 220, 220, 0.8) 0%, rgba(200, 200, 200, 0.75) 100%);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    border-left: 3px solid #1e6091;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
}

.town-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(30, 96, 145, 0.15);
    background: repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
                linear-gradient(145deg, rgba(230, 230, 230, 0.9) 0%, rgba(210, 210, 210, 0.85) 100%);
    border-left-color: #2a7bb8;
}

.service-areas-text {
    background: repeating-linear-gradient(45deg, rgba(120, 120, 120, 0.03) 0px, rgba(120, 120, 120, 0.03) 10px, transparent 10px, transparent 20px),
                linear-gradient(145deg, rgba(200, 200, 200, 0.85) 0%, rgba(180, 180, 180, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #1e6091;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-areas-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d2d2d;
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
    /* SHOW mobile menu toggle button on mobile */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    /* Hide desktop nav, make it a slide-in menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        z-index: 999;
        overflow-y: auto;
    }
    
    /* Show menu when active class is added */
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-links a, .nav-links .services-dropdown-btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Services dropdown on mobile */
    .services-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0;
        background: rgba(30, 96, 145, 0.1);
        border: none;
        border-left: 3px solid #1e6091;
    }
    
    .services-dropdown.active .services-dropdown-menu {
        display: block !important;
    }
    
    .services-dropdown:hover .services-dropdown-menu {
        display: none;
    }
    
    .services-dropdown.active:hover .services-dropdown-menu {
        display: block !important;
    }
    
    .logo-image {
        height: 60px;
    }
    
    @media (max-width: 900px) {
        .logo-text {
            display: none;
        }
    }
    
    .hero {
        margin-top: 70px;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .services-container {
        padding: 2rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        max-height: none;
    }
    
    .service-page {
        padding-top: 70px;
    }
    
    .service-hero h1 {
        font-size: 1.6rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 2rem 1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .towns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .town-item {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 1.4rem;
    }
}