/* Add Font Awesome CDN link to the head of your HTML file */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hero-section {
    position: relative;
    min-height: 110vh;
    background-image: linear-gradient(rgba(36, 42, 86, 0.9), rgba(36, 42, 86, 0.9)), url('https://websitedemos.net/agency-02/wp-content/uploads/sites/30/2020/06/home-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    width: 3px;
    height: 70%;
    background-color: #ff5151;
    transform: translateY(-50%) skewX(-15deg);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5151;
    transform: scaleX(0.7);
    transition: transform 0.3s ease;
}

.logo a:hover .logo-text::after {
    transform: scaleX(1);
}

.logo-text span {
    color: #ff5151;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.logo-text span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.logo a:hover .logo-text::before {
    height: 90%;
    transition: height 0.3s ease;
}

.logo a:hover .logo-text span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.logo a:hover .logo-text span::before {
    background-color: #ff5151;
    transition: background-color 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff5151;
}

.hero-content {
    max-width: 600px;
    margin: 0;
    text-align: left;
    padding: 10rem 10rem 15rem;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff5151;
    margin: 0;
    font-weight: 500;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #ff5151;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #ff3838;
}

.button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.button-secondary:hover {
    background-color: #ffffff;
    color: #242a56;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: #ff5151;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 1.5rem;
    color: #242a56;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-section .section-header {
    max-width: 1200px;
}

.services-section .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(36, 42, 86, 0.1);
    /* border-color: #242a56; */
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-icon {
    font-size: 2.2rem;
    display: inline-block;
    padding: 1rem;
    color: #ff5151;
}

.service-card h3 {
    color: #242a56;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.service-list li::before {
    width: 8px;
    height: 8px;
    background-color: #ff5151;
    box-shadow: 0 0 0 2px rgba(255, 81, 81, 0.2);
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 10rem 2rem 4rem;
    }
}
/* Footer Styles */
.main-footer {
    background-color: #242a56;
    color: #ffffff;
    padding: 1rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 2rem;
}

.footer-info .footer-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-info .address,
.footer-info .contact {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff5151;
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: #ff5151;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 81, 81, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links ul li {
        margin-bottom: 0;
    }

    .footer-social {
        align-items: center;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Strengths Section */
.strengths-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #242a56 0%, #1a1f40 100%);
    color: #ffffff;
}

.strengths-section .section-title,
.strengths-section .section-description {
    color: #ffffff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.strength-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff5151, transparent);
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.strength-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.strength-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.strength-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.strength-highlight {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 81, 81, 0.1);
    color: #ff5151;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Services section specific styles */
.services-section .section-description {
    margin-bottom: 3rem;
    padding: 0;
    color: #555;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(36, 42, 86, 0.03) 0%, rgba(255, 81, 81, 0.03) 100%);
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(255, 81, 81, 0.1);
    border-radius: 50%;
    color: #ff5151;
}

.mission-content h2 {
    color: #242a56;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ff5151;
}

.mission-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 0 2rem;
    text-align: left;
}


/* Add to Mission Section styles */
.mission-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    /* background: rgba(36, 42, 86, 0.02); */
    border-radius: 8px;
}

.point-item {
    text-align: left;
    padding: 1rem;
    background: #ffffff;
    border-radius: 6px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(36, 42, 86, 0.1);
}

.point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.point-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.point-icon {
    font-size: 1.2rem;
    margin-bottom: 0;
    display: inline-block;
}

.point-item h3 {
    color: #242a56;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1;
}

.point-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.projects-section .section-description {
    margin: 0 auto 2rem;
    text-align: left;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.projects-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 600px;
}

.projects-table th,
.projects-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(36, 42, 86, 0.1);
}

.projects-table th {
    background: #242a56;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.projects-table th:first-child {
    border-top-left-radius: 10px;
}

.projects-table th:last-child {
    border-top-right-radius: 10px;
}

.projects-table tr:last-child td {
    border-bottom: none;
}

.projects-table tbody tr {
    transition: all 0.3s ease;
}

.projects-table tbody tr:hover {
    background: rgba(36, 42, 86, 0.02);
}

.projects-table td {
    color: #666;
}

.projects-table td:first-child {
    color: #242a56;
    font-weight: 600;
}

/* Add styles for active navigation link */
nav ul li a.active {
    color: #ff5151;
}

/* Add padding to sections to account for fixed header */
section {
    padding-top: 80px;
    margin-top: -80px;
    scroll-margin-top: 80px;
}

/* Adjust for fixed header */
@media (max-width: 768px) {
    .mission-section,
    .strengths-section,
    .services-section,
    .projects-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
