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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge svg {
    color: #60a5fa;
}

.hero-main h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-main h1 .highlight {
    color: #60a5fa;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 1rem);
    color: #cbd5e1;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-primary {
    background: #60a5fa;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    white-space: nowrap;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    background: #3b82f6;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #cbd5e1;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.feature-item svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.floating-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    color: #1e3a8a;
}

.card-content {
    color: #1e3a8a;
}

.card-title {
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    hyphens: auto;
}

.card-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #64748b;
    word-wrap: break-word;
    hyphens: auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e3a8a;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #475569;
    margin-bottom: 4rem;
    word-wrap: break-word;
    hyphens: auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.12);
    border-color: #dbeafe;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: #1e3a8a;
}

.service-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e3a8a;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    word-wrap: break-word;
    hyphens: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

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

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-info p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phone-disclaimer {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    color: #94a3b8;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #60a5fa;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #1e3a8a;
}

.contact-details h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    hyphens: auto;
}

.contact-details a {
    color: #60a5fa;
    text-decoration: none;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-details a:hover {
    color: #93c5fd;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
        max-width: calc(100% - 80px);
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: none;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-width: 120px;
    }
    
    .feature-item svg {
        margin-bottom: 0.5rem;
    }
    
    .hero-visual {
        text-align: center;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }
    
    .services {
        padding: 80px 0;
        text-align: center;
    }
    
    .services h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        margin: 0 auto 1.5rem;
    }
    
    .contact {
        padding: 80px 0;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-method {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-image {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
        max-width: calc(100% - 32px);
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    
    .hero-cta-group {
        margin-bottom: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-width: auto;
    }
    
    .feature-item svg {
        margin-bottom: 0.5rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    
    .service-card {
        padding: 1.5rem;
    }
    
    
    .contact {
        padding: 60px 0;
    }
    
    
    .contact-method {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    
    .contact-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-card {
        padding: 1rem;
        max-width: 260px;
    }
    
    .card-title {
        font-size: clamp(0.85rem, 2vw, 0.9rem);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .card-subtitle {
        font-size: clamp(0.7rem, 1.5vw, 0.75rem);
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced scroll animations */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Add subtle bounce effect to service cards on hover */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.service-icon {
    transition: transform 0.3s ease;
}

/* Enhanced button animations */
.cta-primary {
    position: relative;
    overflow: hidden;
}

.cta-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.6s;
}

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

/* Stats counter animation enhancement */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* Contact method hover effects */
.contact-method {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.12);
}