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

:root {
    --blue-green: #2E8B57;
    --sky-blue: #87CEEB;
    --carolina-blue: #4B9CD3;
    --royal-blue: #4169E1;
    --dark-blue: #1E3A8A;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--dark-blue), var(--royal-blue));
    position: relative;
}

/* Dark overlay for darker background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -3;
    pointer-events: none;
}

/* Enhanced Starfield Background */
#stars, #stars2, #stars3, #stars4, #stars5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* First layer - Small stars (far away) */
#stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="white"/><circle cx="80" cy="40" r="0.5" fill="white"/><circle cx="40" cy="80" r="0.5" fill="white"/><circle cx="60" cy="10" r="0.5" fill="white"/><circle cx="10" cy="60" r="0.5" fill="white"/><circle cx="90" cy="90" r="0.5" fill="white"/><circle cx="30" cy="30" r="0.5" fill="white"/><circle cx="70" cy="70" r="0.5" fill="white"/></svg>') repeat top center;
    animation: move-stars 200s linear infinite;
    opacity: 1;
    filter: drop-shadow(0 0 2px white);
}

/* Second layer - Medium stars */
#stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="1" fill="white"/><circle cx="85" cy="35" r="1" fill="white"/><circle cx="45" cy="85" r="1" fill="white"/><circle cx="65" cy="15" r="1" fill="white"/><circle cx="25" cy="65" r="1" fill="white"/><circle cx="95" cy="95" r="1" fill="white"/><circle cx="35" cy="35" r="1" fill="white"/><circle cx="75" cy="75" r="1" fill="white"/><circle cx="5" cy="45" r="1" fill="white"/><circle cx="55" cy="5" r="1" fill="white"/></svg>') repeat top center;
    animation: move-stars 150s linear infinite;
    opacity: 1;
    filter: drop-shadow(0 0 3px white);
}

/* Third layer - Large stars (closer) */
#stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1.5" fill="white"/><circle cx="90" cy="30" r="1.5" fill="white"/><circle cx="50" cy="90" r="1.5" fill="white"/><circle cx="70" cy="20" r="1.5" fill="white"/><circle cx="20" cy="70" r="1.5" fill="white"/><circle cx="80" cy="80" r="1.5" fill="white"/><circle cx="40" cy="40" r="1.5" fill="white"/><circle cx="60" cy="60" r="1.5" fill="white"/><circle cx="30" cy="80" r="1.5" fill="white"/><circle cx="80" cy="10" r="1.5" fill="white"/></svg>') repeat top center;
    animation: move-stars 100s linear infinite;
    opacity: 1;
    filter: drop-shadow(0 0 4px white);
}

/* Fourth layer - Bright stars */
#stars4 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.8"/><circle cx="75" cy="45" r="2" fill="white" opacity="0.8"/><circle cx="45" cy="75" r="2" fill="white" opacity="0.8"/><circle cx="65" cy="25" r="2" fill="white" opacity="0.8"/><circle cx="15" cy="65" r="2" fill="white" opacity="0.8"/><circle cx="85" cy="85" r="2" fill="white" opacity="0.8"/><circle cx="35" cy="35" r="2" fill="white" opacity="0.8"/><circle cx="55" cy="55" r="2" fill="white" opacity="0.8"/></svg>') repeat top center;
    animation: move-stars 80s linear infinite;
    opacity: 0.9;
    filter: drop-shadow(0 0 5px white);
}

/* Fifth layer - Twinkling stars */
#stars5 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="5" cy="5" r="0.8" fill="white"/><circle cx="95" cy="25" r="0.8" fill="white"/><circle cx="55" cy="95" r="0.8" fill="white"/><circle cx="75" cy="15" r="0.8" fill="white"/><circle cx="25" cy="75" r="0.8" fill="white"/><circle cx="85" cy="85" r="0.8" fill="white"/><circle cx="35" cy="35" r="0.8" fill="white"/><circle cx="65" cy="65" r="0.8" fill="white"/><circle cx="15" cy="45" r="0.8" fill="white"/><circle cx="45" cy="15" r="0.8" fill="white"/></svg>') repeat top center;
    animation: move-stars 120s linear infinite, twinkle 3s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 3px white);
}

/* Star movement animations */
@keyframes move-stars {
    from { 
        transform: translateY(0px) translateX(0px);
    }
    to { 
        transform: translateY(-2000px) translateX(-1000px);
    }
}

/* Twinkling effect */
@keyframes twinkle {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Additional floating stars */
.floating-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: float-star 15s linear infinite;
    box-shadow: 0 0 4px white, 0 0 8px white;
    opacity: 0.8;
}

/* Additional star patterns for more density */
.star-pattern-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(1px 1px at 20px 30px, white, transparent),
                radial-gradient(1px 1px at 40px 70px, white, transparent),
                radial-gradient(1px 1px at 90px 40px, white, transparent),
                radial-gradient(1px 1px at 130px 80px, white, transparent),
                radial-gradient(1px 1px at 160px 30px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: move-stars 180s linear infinite;
    opacity: 0.6;
}

.star-pattern-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(1.5px 1.5px at 50px 20px, white, transparent),
                radial-gradient(1.5px 1.5px at 100px 60px, white, transparent),
                radial-gradient(1.5px 1.5px at 150px 10px, white, transparent),
                radial-gradient(1.5px 1.5px at 200px 50px, white, transparent),
                radial-gradient(1.5px 1.5px at 250px 90px, white, transparent);
    background-repeat: repeat;
    background-size: 300px 120px;
    animation: move-stars 160s linear infinite;
    opacity: 0.7;
}

@keyframes float-star {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--sky-blue);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sky-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 0;
    margin: 0;
}

/* Glowing Brain Icon */
.hero-brain-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-brain-icon i {
    font-size: 15rem;
    color: rgba(135, 206, 235, 0.9);
    animation: brain-float 6s ease-in-out infinite, brain-glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 35px rgba(135, 206, 235, 1)) 
            drop-shadow(0 0 70px rgba(135, 206, 235, 0.8))
            drop-shadow(0 0 105px rgba(135, 206, 235, 0.6));
}

@keyframes brain-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes brain-glow {
    0% {
        color: rgba(135, 206, 235, 0.8);
        filter: drop-shadow(0 0 30px rgba(135, 206, 235, 0.9)) 
                drop-shadow(0 0 60px rgba(135, 206, 235, 0.7))
                drop-shadow(0 0 90px rgba(135, 206, 235, 0.5));
    }
    100% {
        color: rgba(135, 206, 235, 1);
        filter: drop-shadow(0 0 40px rgba(135, 206, 235, 1)) 
                drop-shadow(0 0 80px rgba(135, 206, 235, 0.9))
                drop-shadow(0 0 120px rgba(135, 206, 235, 0.7));
    }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--sky-blue);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--carolina-blue);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--blue-green), var(--carolina-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-image::before {
    display: none;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    background: transparent;
    z-index: 1;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--sky-blue);
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

/* Services Section */
.services {
    background: rgba(30, 58, 138, 0.1);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
    border-color: var(--sky-blue);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services {
    background: rgba(46, 139, 87, 0.1);
    position: relative;
    z-index: 1;
}

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

.service-detailed-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
    border-color: var(--sky-blue);
}

.service-detailed-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detailed-card p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detailed-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detailed-card li {
    color: var(--white);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detailed-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--carolina-blue);
    font-weight: bold;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-features span {
    background: rgba(135, 206, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--sky-blue);
}

/* Pricing Section */
.pricing {
    background: rgba(75, 156, 211, 0.1);
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--sky-blue);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.pricing-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--carolina-blue);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    color: var(--white);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--carolina-blue);
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: rgba(30, 58, 138, 0.1);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

/* About Section */
.about {
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mission & Vision Section */
.mission-vision {
    background: transparent;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    color: var(--carolina-blue);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.mission-card h2, .vision-card h2 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.mission-card p, .vision-card p {
    color: var(--white);
    line-height: 1.8;
}

/* Company Story Section */
.company-story {
    background: rgba(46, 139, 87, 0.1);
    position: relative;
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values {
    background: transparent;
    position: relative;
    z-index: 1;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--blue-green);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.value-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Team Section */
.team {
    background: rgba(75, 156, 211, 0.1);
    position: relative;
    z-index: 1;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--sky-blue);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.member-title {
    color: var(--carolina-blue);
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.member-description {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-credentials span {
    color: var(--white);
    font-size: 0.9rem;
}

.member-credentials i {
    color: var(--carolina-blue);
    margin-right: 0.5rem;
}

/* Achievements Section */
.achievements {
    background: transparent;
    position: relative;
    z-index: 1;
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--carolina-blue);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.achievement-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    background: rgba(30, 58, 138, 0.1);
    position: relative;
    z-index: 1;
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.contact-icon {
    font-size: 3rem;
    color: var(--carolina-blue);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.contact-info-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--carolina-blue);
}

/* Contact Form Section */
.contact-form-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-info h2 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-info p {
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.feature i {
    color: var(--carolina-blue);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

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

.form-group label {
    display: block;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

/* FAQ Section */
.faq-section {
    background: rgba(46, 139, 87, 0.1);
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(135, 206, 235, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(135, 206, 235, 0.1);
}

.faq-question h3 {
    color: var(--sky-blue);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--carolina-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--white);
    line-height: 1.6;
}

/* Emergency Contact Section */
.emergency-contact {
    background: rgba(75, 156, 211, 0.1);
    position: relative;
    z-index: 1;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.emergency-icon {
    font-size: 3rem;
    color: #dc3545;
    animation: pulse 2s ease-in-out infinite;
}

.emergency-text h2 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.emergency-text p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emergency-number {
    color: var(--white);
    font-size: 1.1rem;
}

.emergency-number strong {
    color: #dc3545;
}

/* Features Section */
.features {
    background: rgba(46, 139, 87, 0.1);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
    border-color: var(--sky-blue);
}

.feature-icon {
    font-size: 3rem;
    color: var(--blue-green);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.feature-card h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: transparent;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    min-width: 300px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(135, 206, 235, 0.2);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--sky-blue);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--carolina-blue);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: rgba(75, 156, 211, 0.1);
    position: relative;
    z-index: 1;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(135, 206, 235, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: var(--carolina-blue);
}

.contact-item h3 {
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--white);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: rgba(30, 58, 138, 0.9);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

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

.footer-section h3 {
    color: var(--sky-blue);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Mouse Movement Effect */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--sky-blue), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    opacity: 0.7;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 58, 138, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

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

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

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

    .hero-brain-icon i {
        font-size: 8rem;
    }

    .about-content,
    .contact-content,
    .mission-vision-grid,
    .story-content,
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

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

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

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-slider {
        flex-direction: column;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
}

.service-detailed-card .service-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-detailed-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-detailed-card:hover .service-image img {
    transform: scale(1.08);
} 