/* Root Variables */
:root {
    --baby-blue: #89CFF0;
    --navy-blue: #000080;
    --light-bg: #F0F8FF;
}

/* Base Styles */
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 600px;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.3) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.5), transparent);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--baby-blue);
    border-color: var(--baby-blue);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #6eb5d9;
    border-color: #6eb5d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 207, 240, 0.4);
}

.btn-cta {
    background: #e91e8c;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #d01a7d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

/* Section Titles */
.section-title {
    color: var(--navy-blue);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.3s;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--baby-blue);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--baby-blue);
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--navy-blue);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--baby-blue);
    font-size: 1.2rem;
}

/* Contact Cards */
.contact-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.contact-card i {
    color: var(--baby-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card a {
    color: white;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--baby-blue);
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background-color: white;
}

.industry-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s;
    height: 100%;
    background: white;
    text-align: left;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--baby-blue);
}

.industry-card .service-icon {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.industry-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.industry-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Trustpilot Section */
.trustpilot-section {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trustpilot-section span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    color: #00b67a;
    font-size: 1.3rem;
}

.trustpilot-logo {
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .diagonal-overlay {
        display: none;
    }

    .hero-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .trustpilot-section {
        margin-top: 2rem;
    }
}