/* Basic Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #003366; /* Deep Blue */
}

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

/* Header & Navigation */
header {
    background-color: rgba(0, 34, 68, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ffffff;
    transform: scale(1.03);
}

#nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 24px;
}

#nav-links li {
    margin-left: 0;
    position: relative;
}

#nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    padding: 10px 12px;
    position: relative;
    border-radius: 8px;
}

#nav-links a:focus-visible {
    outline: 2px solid #4fc3f7;
    outline-offset: 4px;
    border-radius: 8px;
}

#nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4fc3f7;
    transition: width 0.3s ease;
}

#nav-links a:hover {
    color: #4fc3f7;
}

#nav-links a:hover::after,
#nav-links a.active::after {
    width: 100%;
}

#nav-links a.active {
    color: #4fc3f7;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger .bar:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger .bar:nth-child(3) {
    transform: translateY(8px);
}

/* X Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
}

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

    #nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: auto;
        right: 0;
        bottom: auto;
        width: min(320px, 85vw);
        background-color: #002244;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.25);
        border-radius: 12px 0 0 12px;
        transform: translateX(105%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    #nav-links.show {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    #nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    #nav-links li:last-child {
        border-bottom: 0;
    }

    #nav-links a {
        padding: 12px 14px;
        width: 100%;
        text-align: left;
        border-radius: 10px;
    }

    #nav-links a:hover {
        background-color: transparent;
    }

    #nav-links a::after {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.primary {
    background-color: #003366; /* Deep Blue */
    color: #ffffff;
    border: 2px solid #003366;
}

.btn.primary:hover {
    background-color: #002244;
    border-color: #002244;
}

.btn.secondary {
    background-color: transparent;
    color: #003366; /* Deep Blue */
    border: 2px solid #003366;
}

.btn.secondary:hover {
    background-color: #003366;
    color: #ffffff;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #002244 0%, #004080 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFucm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #b3e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #4fc3f7;
    color: #002244;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
    background-color: #29b6f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4fc3f7;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by {
    padding: 2rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.trusted-by p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.client-logos span {
    color: #6c757d;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logos span:hover {
    opacity: 1;
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    color: #4fc3f7;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #002244;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #4fc3f7;
}

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

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #29b6f6;
    transform: translateX(5px);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.featured-project {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.featured-project h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #002244;
}

.project-details {
    margin-top: 1rem;
}

.project-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    color: #4a5568;
    line-height: 1.7;
}

.project-features li {
    position: relative;
    padding-left: 1.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-features li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.project-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4fc3f7;
    font-weight: 800;
}

.project-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    color: #6c757d;
    font-size: 0.95rem;
    word-break: break-word;
}

@media (max-width: 768px) {
    .featured-project {
        padding: 2rem 1.5rem;
    }

    .project-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 34, 68, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s, background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background: #4fc3f7;
    color: #002244;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 200px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #e2e8f0;
}

.testimonial-author h4 {
    margin: 0 0 0.2rem;
    color: #002244;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002244 0%, #004080 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFucm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-light {
    background-color: #fff;
    color: #002244;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 15px 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-section {
        padding: 3rem 15px;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
    clear: both;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .service-card {
        min-height: auto;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    min-height: 400px;
    box-sizing: border-box;
    break-inside: avoid;
    overflow: hidden;
}

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

.service-card.featured {
    border: 2px solid #4fc3f7;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4fc3f7;
    color: #002244;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #4fc3f7;
}

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

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-features li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.service-features i {
    color: #4fc3f7;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Maintenance Section */
.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.maintenance-content h2 {
    font-size: 2.2rem;
    margin: 1rem 0 1.5rem;
    color: #002244;
}

.maintenance-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: #4fc3f7;
    margin-right: 1.2rem;
    margin-top: 0.3rem;
}

.feature-item h4 {
    margin: 0 0 0.5rem;
    color: #002244;
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

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

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 34, 68, 0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #002244;
}

.process-step p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .maintenance-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

.faq-question h4 {
    margin: 0;
    color: #002244;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4fc3f7;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #4fc3f7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.section-subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #4fc3f7;
    border-radius: 3px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #002244 0%, #004080 100%);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #b3e0ff);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    max-width: 58ch;
}

.about-text p {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #4fc3f7;
    color: #002244;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #4fc3f7;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #4fc3f7;
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #002244;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 34, 68, 0.9);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.team-member:hover .social-links {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4fc3f7;
    transform: translateY(-3px);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: #002244;
}

.member-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .experience-badge {
        width: 100px;
        padding: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.trusted-by p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.client-logos span {
    color: #6c757d;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logos span:hover {
    opacity: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #4fc3f7;
}

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

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #29b6f6;
    transform: translateX(5px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 34, 68, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s, background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
    transform: translateY(0);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 200px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #e2e8f0;
}

.testimonial-author h4 {
    margin: 0 0 0.2rem;
    color: #002244;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002244 0%, #004080 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFucm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-light {
    background-color: #fff;
    color: #002244;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

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

.btn-outline:hover {
    background: #4fc3f7;
    color: #002244;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
#hero {
    background: linear-gradient(135deg, #003366 0%, #007bff 100%); /* Deep Blue to Lighter Blue Gradient */
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Make hero section taller */
}

#hero h1 {
    color: #ffffff;
    font-size: 4em; /* Larger heading */
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Featured Services Preview */
#services-preview {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

#services-preview h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-cards .card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.service-cards .card:hover {
    transform: translateY(-10px);
}

.service-cards .card .icon {
    font-size: 3em;
    color: #FFC107; /* Accent Yellow */
    margin-bottom: 15px;
}

.service-cards .card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.service-cards .card p {
    font-size: 1.1em;
    color: #555;
}

/* Mini Portfolio Carousel/Grid */
#mini-portfolio {
    padding: 60px 20px;
    text-align: center;
}

#mini-portfolio h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #002244;
    color: #ffffff;
    padding: 40px 0 20px;
    font-size: 0.95rem;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #4fc3f7;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #4fc3f7;
}

.footer-section p {
    margin: 10px 0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4fc3f7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4fc3f7;
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: #4fc3f7;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        margin-bottom: 15px;
    }
}

/* Testimonials */
#testimonials {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card h4 {
    color: #003366; /* Deep Blue */
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* General Section Styling */
main section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main section:nth-child(even) {
    background-color: #f9f9f9;
}

/* About Page */
#about-me h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
}

#about-me .bio-content,
#about-me .approach-content,
#about-me .why-hire {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

#about-me .bio-content h2,
#about-me .approach-content h2,
#about-me .why-hire h2 {
    color: #FFC107; /* Accent Yellow */
    margin-bottom: 20px;
}

#about-me .why-hire ul {
    list-style: none;
    padding-left: 0;
}

#about-me .why-hire ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFC107"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Services Page */
#services h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
}

.services-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.services-list li {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.services-list li:hover {
    transform: translateY(-5px);
}

.services-list h3 {
    color: #003366;
    margin-top: 0;
}

.pricing-table {
    margin-top: 60px;
    text-align: center;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden; /* For rounded corners */
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.pricing-table th {
    background-color: #003366; /* Deep Blue */
    color: #ffffff;
    font-weight: bold;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cta-services {
    text-align: center;
    margin-top: 50px;
}

/* Portfolio Page */
#portfolio h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 50px;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1em;
}

.interactive-demos h2,
.image-carousel h2,
.blog-section h2,
.highlight-features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FFC107; /* Accent Yellow */
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.demo-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
}

.demo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.demo-card h3 {
    margin: 20px 0 10px;
    color: #003366;
}

.demo-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.demo-card .btn {
    margin-bottom: 20px;
}

.image-carousel {
    margin-top: 60px;
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.carousel-image {
    width: 100%;
    display: none;
    object-fit: cover;
    height: 400px;
}
.carousel-image.active {
    display: block;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-nav button {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.carousel-nav button:hover {
    background-color: #002244;
}

.blog-section {
    margin-top: 60px;
}

.blog-post {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.blog-post h3 {
    color: #003366;
    margin-top: 0;
}

.blog-post .read-more {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

.blog-post .read-more:hover {
    text-decoration: underline;
}

.highlight-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.highlight-features li {
    background-color: #e6f2ff; /* Light Blue */
    color: #003366;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1em;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-section h2 {
    color: #002244;
    text-align: left;
    margin: 0 0 1.25rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #002244;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.15), 0 4px 12px rgba(79, 195, 247, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-section button {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.contact-form-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 34, 68, 0.2);
}

.contact-form-section button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 34, 68, 0.15);
}

.direct-contact-links {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.direct-contact-links h2 {
    color: #002244;
    margin: 0 0 1.25rem;
}

.direct-contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05em;
}

.direct-contact-links ul li {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.direct-contact-links ul li:hover {
    background-color: #e8f4fd;
    transform: translateX(4px);
}

.contact-separator {
    color: rgba(0, 34, 68, 0.35);
    padding: 0 0.5rem;
}

.direct-contact-links ul li a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.direct-contact-links ul li a:hover {
    text-decoration: none;
    color: #0066cc;
    transform: scale(1.02);
}

.direct-contact-links ul li a i {
    font-size: 1.1em;
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: transparent;
    color: #6c757d;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    border-color: #4fc3f7;
    color: #4fc3f7;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #4fc3f7;
    border-color: #4fc3f7;
    color: #002244;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
        justify-content: center;
    }
}
.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #4fc3f7;
    margin-bottom: 2rem;
}

.thank-you-content h2 {
    color: #002244;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.next-steps {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #002244;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #4a5568;
}

.next-steps ul li i {
    color: #4fc3f7;
    font-size: 1.2rem;
}

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

@media (max-width: 768px) {
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .thank-you-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section,
    .direct-contact-links {
        padding: 2rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3em;
    }

    #hero p {
        font-size: 1.2em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-cards .card {
        max-width: 90%;
    }

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

    .pricing-table th, .pricing-table td {
        padding: 10px;
        font-size: 0.9em;
    }

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

    .carousel-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1em;
    }

    .logo {
        font-size: 24px;
    }
}

/* News Section Styles */
.news-highlight {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.news-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-content h3 {
    color: #002244;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-details {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.news-tag {
    background: #4fc3f7;
    color: #002244;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-image {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}


    

