/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    overflow-x: hidden;
}

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

/* Logo Image Styles */
.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.about-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: inline-block;
    animation: rotate 20s linear infinite;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: inline-block;
}

.logo-c-shape::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #F8FAFC;
    border-radius: 50%;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.nav-link {
    color: #64748B;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: #3B82F6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-btn {
    padding: 4px 10px;
    font-size: 0.75rem;
    min-width: 80px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1E293B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #475569;
    border: 2px solid #E2E8F0;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #F8FAFC;
    color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #CBD5E1;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: #FFFFFF;
    color: #3B82F6;
    border: 2px solid #FFFFFF;
}

.btn-white:hover {
    background: #F8FAFC;
    color: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.045) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.045) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.075), rgba(59, 130, 246, 0.03));
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* Additional floating elements */
.hero .floating-element-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.045), rgba(59, 130, 246, 0.015));
    border-radius: 50%;
    top: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero .floating-element-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.03));
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
}

.hero .floating-element-3 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.03), rgba(59, 130, 246, 0.015));
    border-radius: 50%;
    top: 60%;
    right: 20%;
    animation: float 9s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
}

.hero-title br {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    max-width: 800px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(248, 250, 252, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1E293B;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -1px;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
    border-radius: 2px;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    transform: none !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3B82F6, #1E40AF);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    background: #FFFFFF;
    border-color: #CBD5E1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
    font-family: 'Albert Sans', sans-serif;
    text-align: center;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #3B82F6;
}

.service-card p {
    color: #475569;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
}



/* Why Circulox Section */
.why {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-family: 'Albert Sans', sans-serif;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: #3B82F6;
}

.why-item p {
    color: #475569;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Slide animations for Why section */
.slide-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

.slide-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

/* Hidden state for JavaScript animation */
.slide-left.hidden {
    opacity: 0;
    transform: translateX(-100px);
}

.slide-right.hidden {
    opacity: 0;
    transform: translateX(100px);
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-left.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.slide-left.animate:nth-child(2) {
    transition-delay: 0.3s;
}

.slide-right.animate:nth-child(3) {
    transition-delay: 0.5s;
}

.slide-right.animate:nth-child(4) {
    transition-delay: 0.7s;
}

.about-story {
    margin-top: 3rem;
}

.about-story p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.about-tagline {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 2rem 0;
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-family: 'Albert Sans', sans-serif;
}

.stat p {
    color: #64748B;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

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

.about-logo {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



/* Contact Section */
.contact {
    background: #FFFFFF;
    position: relative;
}

.contact-banner {
    background: linear-gradient(90deg, #1E40AF 0%, #3B82F6 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin: 2rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.contact-banner::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Albert Sans', sans-serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content p {
    font-size: 1.2rem;
    color: #F1F5F9;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
    font-family: 'Albert Sans', sans-serif;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-method {
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-family: 'Albert Sans', sans-serif;
}

.contact-method p {
    color: #64748B;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.contact-box {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
    font-family: 'Albert Sans', sans-serif;
    line-height: 1.2;
}

.contact-box p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact-tagline {
    font-size: 1.2rem;
    color: #3B82F6;
    font-weight: 600;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    padding: 4rem 0 2rem;
    color: #1E293B;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    font-family: 'Albert Sans', sans-serif;
}

.footer-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: #3B82F6;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
    word-wrap: break-word;
    flex: 1;
}

.contact-item a {
    line-height: 1.5;
    word-wrap: break-word;
    flex: 1;
}

.footer-email-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-email-link:hover {
    color: #3B82F6;
}

.footer-heading {
    color: #3B82F6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Albert Sans', sans-serif;
}

.footer-services,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-services li,
.footer-links li {
    margin: 0;
}

.footer-services a,
.footer-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.footer-services a:hover,
.footer-links a:hover {
    color: #3B82F6;
}

.footer-services a.highlighted {
    color: #3B82F6;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.legal-link:hover {
    color: #3B82F6;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        justify-content: flex-start;
    }
    
    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-banner {
        margin: 1rem;
        padding: 3rem 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

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



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



    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-column {
        padding: 0 1rem;
    }
    
    .footer-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .footer-contact {
        gap: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
        gap: 12px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        margin-top: 3px;
        margin-bottom: 0;
    }
    
    .contact-item span {
        line-height: 1.5;
        word-wrap: break-word;
        flex: 1;
    }
    
    .contact-item a {
        line-height: 1.5;
        word-wrap: break-word;
        flex: 1;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-services,
    .footer-links {
        gap: 1rem;
    }
    
    .footer-services a,
    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1rem 1rem;
    }
    
    .footer-bottom-right {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .legal-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .btn {
        min-width: 200px;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .hero-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .about-logo-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .hero-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .about-logo-img {
        width: 100px;
        height: 100px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #0A1428;
}

::-webkit-scrollbar-thumb {
    background: #F8FAFC;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF;
}