
@import url('https://fonts.googleapis.com/css2?family=Georgia:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;600;700&family=Times+New+Roman&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --classic-blue: #1e3a8a;
    --royal-blue: #3b82f6;
    --light-blue: #dbeafe;
    --pure-white: #ffffff;
    --soft-white: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

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

/* Logo image */
.logo img {
  height: 90px;             /* Bigger logo */
  width: auto;              /* Keep proportions */
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease-in-out;
  border-radius: 12px;      /* Rounded corners (more elegant than full circle) */
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  margin-left: 1rem;;
}

/* Hover effect */
.logo img:hover {
  transform: scale(1.08);    /* Smooth zoom */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Header container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  height: 90px;              /* Adjusted to match logo */
  background: rgba(255, 255, 255, 0.08);  /* Glassy background */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo wrapper */
.logo {
  display: flex;
  align-items: center;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul li a:hover,
nav ul li a.active {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

/* Active Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #000;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #000;
}

/* Mobile Navigation Overlay - FIXED */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.nav-overlay nav {
    width: 100%;
    padding: 2rem;
}

.nav-overlay nav ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.nav-overlay nav ul li {
    width: 100%;
}

.nav-overlay nav ul li a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    color: #1e3a8a;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
}

.nav-overlay nav ul li a:hover,
.nav-overlay nav ul li a.active {
    background: rgba(30, 58, 138, 0.9);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Section */
.services {
    margin-top: 120px;
    padding: 4rem 2rem;
}

.services h1 {
    text-align: center;
    color: #1e3a8a;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Service Image */
.main-service-image {
    text-align: center;
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-service-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.main-service-image img:hover {
    transform: scale(1.02);
}

/* Intro Text */
.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin: 3rem 0;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Features Section */
.features {
    margin: 5rem 0;
    text-align: center;
}

.features h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.feature-icon {
    color: #10b981;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    text-align: left;
    color: #374151;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0;
}

.journey-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.journey-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 ease;
}

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

.journey-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.4);
}

.journey-button i {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nav {
        display: none;
    }

    .header-content {
        padding: 1rem;
    }

    .services {
        margin-top: 100px;
        padding: 2rem 1rem;
    }

    .services h1 {
        font-size: 2.2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .features h2 {
        font-size: 2rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .main-service-image img {
        height: 250px;
    }

    .intro-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Mobile navigation styling */
    .nav-overlay nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (min-width: 769px) {
    .nav-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .services h1 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .journey-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }
    
    .nav-overlay nav ul li a {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Glassy effect enhancement */
.service-card,
.feature-item,
header,
.nav-overlay {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Professional touch - subtle animations */
.service-card,
.feature-item,
.journey-button {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-scroll {
    overflow: hidden;
}
