:root {
    --primary: #ffffff;
    --secondary: #003D65;
    --skyblue: #87CEEB;
    --accent: #FFD700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.header {
    background: var(--primary);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,61,101,0.1);
}

.nav-menu {
    padding: 0 2rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 600;
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--skyblue);
}

.nav-btn {
    background: var(--skyblue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.hero-left {
    padding-right: 2rem;
    position: relative;
}

.hero-tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--skyblue);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary);
    position: relative;
}

.highlight {
    color: var(--skyblue);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -25px;
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #005c99 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 61, 101, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 61, 101, 0.3);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
    padding: 0;
    position: relative;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--skyblue);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(15deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--skyblue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.grid-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: var(--secondary);
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
    }

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

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

    .hero p {
        margin: 0 auto 2.5rem;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .grid-item {
        aspect-ratio: 16/9;
    }
}

/* Add animated background elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-element {
    position: absolute;
    background: linear-gradient(45deg, var(--skyblue), transparent);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 15s infinite;
}

.bg-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.bg-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 2rem;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-item {
        padding: 2rem;
        min-width: 250px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-text {
        font-size: 1.2rem;
    }
} 

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 600;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.btn-secondary {
    background: var(--skyblue);
    color: var(--white);
    border: none;
}

.btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Services Section */
.featured-services {
    padding: 6rem 2rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid rgba(0,61,101,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,61,101,0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.service-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--skyblue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--white);
}

.service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    margin: 0.5rem 0;
}

.service-features i {
    color: var(--skyblue);
    margin-right: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--secondary);
    margin-top: 1rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--skyblue);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,61,101,0.95), rgba(0,61,101,0.95)),
                url('cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
}

/* Footer Styles */
.footer {
    background: var(--skyblue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--skyblue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    position: relative;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--skyblue);
    border-radius: 15px;
    z-index: -1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--skyblue);
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image::after {
        display: none;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0,61,101,0.1);
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
} 

/* Add these styles for better image handling */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--skyblue);
}

.gallery-item {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo-img {
    border-radius: 5px;
} 

/* Update contact form */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--skyblue);
    outline: none;
}

/* Add these new styles for better color distribution */
.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    color: var(--secondary);
}

.service-features i {
    color: var(--skyblue);
}

.gallery-overlay {
    background: rgba(135,206,235,0.9);
}

/* Update testimonials section */
.testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    color: var(--text-dark);
}

.client-img {
    border: 3px solid var(--skyblue);
}

/* Add subtle borders and shadows */
.service-card:hover {
    border-color: var(--skyblue);
}

.contact-info .info-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item i {
    color: var(--skyblue);
} 

/* Add these new styles for better spacing */
.section-header {
    padding: 0 1rem;
}

.services-slider {
    padding: 0 1rem;
}

.gallery-grid {
    padding: 0 1rem;
}

.contact-container {
    padding: 0 1rem;
}

/* Fix footer alignment */
.footer-content {
    padding: 0 1rem;
}

/* Fix navigation alignment */
.nav-menu {
    padding: 0 2rem;
    height: 70px;
}

/* Add active state for navigation */
.nav-links a.active {
    color: var(--skyblue);
    font-weight: 600;
}

/* Center align text in stats */
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

/* Add container class for consistent width */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
} 

/* Update contact info styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    color: var(--skyblue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.info-item p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p:last-child {
    margin-bottom: 0;
} 

/* Update service image styles */
.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

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

/* Update service card styles */
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid rgba(0,61,101,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,61,101,0.15);
} 

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.1) 0%, rgba(0, 61, 101, 0.1) 100%);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--skyblue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon i {
    color: white;
    font-size: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--skyblue);
    padding: 3px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
}

.rating {
    margin: 8px 0;
    color: #FFD700;
}

.rating i {
    margin-right: 2px;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--skyblue);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Add entrance animation for testimonial cards */
.testimonial-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}

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