/* =========================================
   AFRITIC DEVELOPMENT SERVICES
   Main Website Styles
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


/* =========================================
   Global Variables
   ========================================= */

:root {
    --navy-color: #071a33;
    --navy-light: #0d294d;

    --cyan-color: #00b8d9;
    --cyan-dark: #0097b2;

    --grey-color: #8a929a;
    --light-grey-color: #f4f6f8;

    --white-color: #ffffff;
    --dark-color: #1d2733;

    --border-radius-s: 8px;
    --border-radius-m: 30px;

    --site-max-width: 1300px;

    --font-small: 0.9rem;
    --font-normal: 1rem;
    --font-medium: 1.1rem;
    --font-large: 1.5rem;
    --font-xl: 2rem;
}


/* =========================================
   Global Reset
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark-color);
    background: var(--white-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =========================================
   Header / Navigation
   ========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: var(--navy-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar {
    max-width: var(--site-max-width);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 20px;
}


/* =========================================
   Logo
   ========================================= */

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 190px;
    height: auto;
    display: block;
}


/* =========================================
   Navigation Menu
   ========================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: block;

    padding: 10px 16px;

    color: var(--white-color);
    font-size: var(--font-normal);
    font-weight: 500;

    border-radius: var(--border-radius-m);

    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--white-color);
    background: var(--cyan-color);
}


/* =========================================
   Mobile Menu Buttons
   ========================================= */

#menu-open-button,
#menu-close-button {
    display: none;
}


/* =========================================
   Mobile Navigation
   ========================================= */

@media screen and (max-width: 900px) {

    .nav-menu {
        position: fixed;

        left: -300px;
        top: 0;

        width: 300px;
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding-top: 100px;

        background: var(--white-color);

        transition: left 0.3s ease;
    }

    body.show-mobile-menu .nav-menu {
        left: 0;
    }

    .nav-link {
        color: var(--dark-color);
        font-size: var(--font-large);

        margin-top: 15px;
    }

    .nav-link:hover {
        color: var(--cyan-color);
        background: transparent;
    }

    #menu-open-button {
        display: block;
        color: var(--white-color);
        font-size: 1.5rem;
    }

    #menu-close-button {
        display: block;

        position: absolute;
        right: 25px;
        top: 25px;

        color: var(--dark-color);
        font-size: 1.5rem;
    }

    body.show-mobile-menu header::before {
        content: "";

        position: fixed;
        left: 0;
        top: 0;

        width: 100%;
        height: 100%;

        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(5px);

        z-index: -1;
    }
}


/* =========================================
   Small Screens
   ========================================= */

@media screen and (max-width: 640px) {

    .navbar {
        padding: 10px 15px;
    }

    .logo-image {
        width: 165px;
    }

    .nav-menu {
        width: 280px;
        left: -280px;
    }
}
/* =========================================
   Hero Section
   ========================================= */

.hero-section {
    min-height: 100vh;
    padding: 140px 20px 80px;

    background:
        linear-gradient(
            120deg,
            var(--navy-color) 0%,
            var(--navy-light) 100%
        );

    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--site-max-width);
    min-height: calc(100vh - 220px);

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.hero-details {
    max-width: 650px;
}

.hero-tagline {
    color: var(--cyan-color);
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 20px;
}

.hero-title {
    color: var(--white-color);

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);

    max-width: 600px;

    font-size: 1.05rem;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-button {
    display: inline-block;

    padding: 13px 28px;

    border-radius: var(--border-radius-m);

    font-size: 0.95rem;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-button {
    color: var(--navy-color);
    background: var(--cyan-color);
}

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

.secondary-button {
    color: var(--white-color);
    border: 2px solid var(--cyan-color);
}

.secondary-button:hover {
    color: var(--navy-color);
    background: var(--cyan-color);
    transform: translateY(-3px);
}


/* =========================================
   Hero Visual
   ========================================= */

.hero-visual {
    flex: 1;

    display: flex;
    justify-content: center;
}

.hero-image-container {
    width: 460px;
    height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--cyan-color),
            var(--navy-light)
        );

    padding: 10px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--navy-color);

    color: var(--cyan-color);
}

.hero-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 15px;
}

.hero-image-placeholder span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
}


/* =========================================
   Hero Responsive Design
   ========================================= */

@media screen and (max-width: 900px) {

    .hero-section {
        padding-top: 130px;
    }

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

        justify-content: center;

        gap: 50px;
    }

    .hero-details {
        max-width: 750px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image-container {
        width: 330px;
        height: 330px;
    }

    .hero-image-placeholder i {
        font-size: 4rem;
    }
}


@media screen and (max-width: 640px) {

    .hero-section {
        padding: 120px 15px 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-button {
        width: 100%;
        max-width: 260px;
    }

    .hero-image-container {
        width: 260px;
        height: 260px;
    }
}
/* =========================================
   Hero Image
   ========================================= */

.hero-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}
/* =========================================
   About Section
   ========================================= */

.about-section {
    padding: 100px 20px;

    background: var(--white-color);
}

.section-container {
    max-width: var(--site-max-width);
    margin: auto;
}


/* Section Heading */

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--cyan-dark);

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.section-title {
    color: var(--navy-color);

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.2;
}

.section-title::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 5px;

    background: var(--cyan-color);
}


/* About Content */

.about-content {
    display: flex;

    align-items: center;

    gap: 70px;
}


/* About Image */

.about-image-wrapper {
    flex: 1;

    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 500px;

    height: 500px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);
}


/* About Text */

.about-details {
    flex: 1;
}

.about-details h3 {
    color: var(--navy-color);

    font-size: 1.8rem;

    margin-bottom: 25px;
}

.about-details p {
    color: #555;

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 18px;
}


/* About Button */

.about-button {
    display: inline-block;

    margin-top: 15px;

    padding: 13px 26px;

    color: var(--white-color);

    background: var(--navy-color);

    border-radius: var(--border-radius-m);

    font-weight: 600;

    transition: 0.3s ease;
}

.about-button:hover {
    background: var(--cyan-color);

    color: var(--navy-color);

    transform: translateY(-3px);
}


/* =========================================
   About Responsive Design
   ========================================= */

@media screen and (max-width: 900px) {

    .about-section {
        padding: 80px 20px;
    }

    .about-content {
        flex-direction: column;

        gap: 45px;

        text-align: center;
    }

    .about-image {
        max-width: 450px;
        height: 400px;
    }

    .about-details h3 {
        font-size: 1.5rem;
    }
}


@media screen and (max-width: 640px) {

    .about-section {
        padding: 70px 15px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .about-image {
        height: 320px;
    }

    .about-details p {
        font-size: 0.95rem;
    }
}
/* =========================================
   Services Section
   ========================================= */

.services-section {
    padding: 110px 20px;

    background: var(--light-grey-color);
}

.services-heading {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    max-width: 700px;

    margin: 25px auto 0;

    color: #666;

    font-size: 1rem;

    line-height: 1.8;
}


/* Services Grid */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Service Card */

.service-card {
    position: relative;

    padding: 35px 30px;

    background: var(--white-color);

    border-radius: 15px;

    border: 1px solid #e4e8ec;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--cyan-color);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}


/* Service Icon */

.service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    color: var(--white-color);

    background: var(--navy-color);

    font-size: 1.5rem;

    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--cyan-color);

    color: var(--navy-color);

    transform: rotateY(180deg);
}


/* Service Number */

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #e5e9ed;

    font-size: 2.5rem;

    font-weight: 800;
}


/* Service Heading */

.service-card h3 {
    position: relative;

    color: var(--navy-color);

    font-size: 1.2rem;

    line-height: 1.4;

    margin-bottom: 15px;

    padding-right: 30px;
}


/* Service Text */

.service-card p {
    color: #666;

    font-size: 0.93rem;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* Service Link */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--cyan-dark);

    font-size: 0.9rem;

    font-weight: 700;

    transition: 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--navy-color);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   Services Responsive
   ========================================= */

@media screen and (max-width: 1000px) {

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


@media screen and (max-width: 640px) {

    .services-section {
        padding: 80px 15px;
    }

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

        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }
}
/* =========================================
   Why Choose Us
   ========================================= */

.why-us-section {
    padding: 110px 20px;

    background: var(--navy-color);
}

.why-us-section .section-label {
    color: var(--cyan-color);
}

.why-us-section .section-title {
    color: var(--white-color);
}

.why-us-section .section-intro {
    color: rgba(255, 255, 255, 0.75);
}


/* Why Us Grid */

.why-us-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Why Us Card */

.why-us-card {
    padding: 40px 30px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.05);

    transition: 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.09);
}


/* Why Us Icon */

.why-us-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    color: var(--navy-color);

    background: var(--cyan-color);

    font-size: 1.6rem;
}

.why-us-card h3 {
    color: var(--white-color);

    font-size: 1.25rem;

    margin-bottom: 15px;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.7);

    line-height: 1.7;

    font-size: 0.95rem;
}


/* =========================================
   Our Approach
   ========================================= */

.approach-section {
    padding: 110px 20px;

    background: var(--white-color);
}

.approach-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}

.approach-card {
    position: relative;

    padding: 35px 22px;

    text-align: center;

    border-radius: 15px;

    border: 1px solid #e4e8ec;

    background: var(--white-color);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);

    transition: 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.1);
}


/* Approach Number */

.approach-number {
    color: var(--cyan-color);

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 15px;
}


/* Approach Icon */

.approach-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: var(--white-color);

    background: var(--navy-color);

    font-size: 1.3rem;
}

.approach-card h3 {
    color: var(--navy-color);

    font-size: 1rem;

    line-height: 1.4;

    margin-bottom: 15px;
}

.approach-card p {
    color: #666;

    font-size: 0.85rem;

    line-height: 1.7;
}


/* =========================================
   Why Us & Approach Responsive
   ========================================= */

@media screen and (max-width: 1000px) {

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 700px) {

    .why-us-section,
    .approach-section {
        padding: 80px 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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


@media screen and (max-width: 500px) {

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

    .approach-card {
        padding: 30px 25px;
    }
}
/* =========================================
   Projects Section
   ========================================= */

.projects-section {
    padding: 110px 20px;

    background: var(--light-grey-color);
}


/* Projects Grid */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* Project Card */

.project-card {
    overflow: hidden;

    background: var(--white-color);

    border-radius: 15px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.13);
}


/* Project Image */

.project-image {
    position: relative;

    width: 100%;
    height: 250px;

    overflow: hidden;

    background: var(--navy-color);
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}


/* Placeholder */

.project-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--cyan-color);

    font-size: 4rem;

    background:
        linear-gradient(
            135deg,
            var(--navy-color),
            var(--navy-light)
        );
}


/* Project Overlay */

.project-overlay {
    position: absolute;

    left: 0;
    bottom: 0;

    padding: 15px 20px;

    width: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.75)
        );

    padding-top: 50px;
}

.project-overlay span {
    display: inline-block;

    padding: 6px 12px;

    color: var(--navy-color);

    background: var(--cyan-color);

    border-radius: 20px;

    font-size: 0.75rem;

    font-weight: 700;
}


/* Project Details */

.project-details {
    padding: 25px;
}

.project-category {
    color: var(--cyan-dark);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.project-details h3 {
    color: var(--navy-color);

    font-size: 1.25rem;

    margin-bottom: 12px;
}

.project-details p:last-child {
    color: #666;

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================
   Projects Responsive
   ========================================= */

@media screen and (max-width: 1000px) {

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


@media screen and (max-width: 640px) {

    .projects-section {
        padding: 80px 15px;
    }

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

    .project-image {
        height: 230px;
    }
}
/* =========================================
   Contact Section
   ========================================= */

.contact-section {
    padding: 110px 20px;

    background: var(--navy-color);
}

.contact-heading .section-label {
    color: var(--cyan-color);
}

.contact-heading .section-title {
    color: var(--white-color);
}

.contact-heading .section-intro {
    color: rgba(255, 255, 255, 0.75);
}


/* Contact Content */

.contact-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: start;
}


/* Contact Information */

.contact-info {
    padding: 40px 0;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--white-color);

    font-size: 1.6rem;

    margin-bottom: 15px;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.7);

    line-height: 1.7;

    margin-bottom: 35px;
}


/* Contact Item */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--navy-color);

    background: var(--cyan-color);
}

.contact-item span {
    display: block;

    color: var(--cyan-color);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    display: block;

    color: var(--white-color);

    line-height: 1.6;

    margin: 0 0 3px;

    transition: 0.2s ease;
}

.contact-item a:hover {
    color: var(--cyan-color);
}


/* Social Links */

.contact-socials {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.contact-socials a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white-color);

    border: 1px solid rgba(255, 255, 255, 0.3);

    transition: 0.3s ease;
}

.contact-socials a:hover {
    color: var(--navy-color);

    background: var(--cyan-color);

    border-color: var(--cyan-color);

    transform: translateY(-3px);
}


/* =========================================
   Contact Form
   ========================================= */

.contact-form-wrapper {
    padding: 40px;

    background: var(--white-color);

    border-radius: 15px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    color: var(--navy-color);
}


/* Form Group */

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

.form-group label {
    display: block;

    color: var(--navy-color);

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d8dee4;

    border-radius: 7px;

    background: #f8fafb;

    color: #333;

    font-family: inherit;

    font-size: 0.95rem;

    outline: none;

    transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan-color);

    background: var(--white-color);

    box-shadow:
        0 0 0 3px rgba(0, 190, 210, 0.12);
}

.form-group textarea {
    resize: vertical;
}


/* Submit Button */

.contact-submit {
    width: 100%;

    padding: 14px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 7px;

    color: var(--navy-color);

    background: var(--cyan-color);

    font-family: inherit;

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-submit:hover {
    background: var(--navy-color);

    color: var(--white-color);

    transform: translateY(-2px);
}


/* =========================================
   Contact Responsive
   ========================================= */

@media screen and (max-width: 900px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-info {
        padding: 0;

        text-align: center;
    }

    .contact-item {
        justify-content: center;

        text-align: left;
    }

    .contact-socials {
        justify-content: center;
    }
}


@media screen and (max-width: 640px) {

    .contact-section {
        padding: 70px 15px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-item {
        gap: 12px;
    }
}
/* =========================================
   Footer
   ========================================= */

.footer-section {
    padding: 70px 20px 0;

    background: #071a2b;

    color: var(--white-color);
}


/* Footer Content */

.footer-content {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;

    gap: 50px;

    padding-bottom: 50px;
}


/* Footer Logo */

.footer-logo {
    width: 190px;

    height: auto;

    display: block;

    margin-bottom: 20px;

    border-radius: 5px;
}


/* Footer Description */

.footer-description {
    max-width: 330px;

    color: rgba(255, 255, 255, 0.65);

    line-height: 1.7;

    font-size: 0.9rem;
}


/* Footer Headings */

.footer-column h3 {
    color: var(--white-color);

    font-size: 1.1rem;

    margin-bottom: 22px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 35px;

    height: 3px;

    margin-top: 8px;

    border-radius: 5px;

    background: var(--cyan-color);
}


/* Footer Links */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.9rem;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--cyan-color);

    padding-left: 5px;
}


/* Footer Contact */

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.9rem;

    line-height: 1.6;
}

.footer-contact i {
    width: 18px;

    margin-top: 4px;

    color: var(--cyan-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);

    transition: 0.2s ease;
}

.footer-contact a:hover {
    color: var(--cyan-color);
}


/* Footer Socials */

.footer-socials {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white-color);

    border: 1px solid rgba(255, 255, 255, 0.25);

    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: var(--navy-color);

    background: var(--cyan-color);

    border-color: var(--cyan-color);
}


/* Footer Bottom */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.8rem;
}


/* =========================================
   Footer Responsive
   ========================================= */

@media screen and (max-width: 900px) {

    .footer-content {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }
}


@media screen and (max-width: 600px) {

    .footer-section {
        padding: 55px 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }
}
/* Hero headline cyan second line */
.hero-title span {
    color: var(--cyan-color);
    display: block;
}
/* =========================================
   About Us Section
   ========================================= */

.about-section {
    padding: 110px 20px;

    background: var(--white-color);
}

.about-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* About Image */

.about-image-wrapper {
    position: relative;

    display: flex;

    justify-content: center;
}

.about-image-wrapper::before {
    content: "";

    position: absolute;

    width: 85%;
    height: 85%;

    border: 4px solid var(--cyan-color);

    border-radius: 50%;

    z-index: 0;
}

.about-image {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 430px;

    aspect-ratio: 1;

    object-fit: cover;

    border-radius: 50%;

    border: 10px solid var(--white-color);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);
}


/* About Details */

.about-details .section-label {
    margin-bottom: 10px;
}

.about-details .section-title {
    text-align: left;

    padding: 0;

    margin-bottom: 25px;

    color: var(--navy-color);

    line-height: 1.2;
}

.about-details .section-title::after {
    margin: 12px 0 0;
}

.about-text {
    color: #555;

    line-height: 1.8;

    font-size: 0.95rem;

    margin-bottom: 18px;
}


/* About Features */

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.about-feature {
    padding: 18px;

    background: #f5fafb;

    border-radius: 10px;

    border-left: 3px solid var(--cyan-color);
}

.about-feature > i {
    color: var(--cyan-color);

    font-size: 1.4rem;

    margin-bottom: 10px;
}

.about-feature h3 {
    color: var(--navy-color);

    font-size: 0.9rem;

    margin-bottom: 7px;
}

.about-feature p {
    color: #666;

    font-size: 0.75rem;

    line-height: 1.5;
}


/* About Button */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 13px 22px;

    color: var(--navy-color);

    background: var(--cyan-color);

    border-radius: 6px;

    font-weight: 700;

    transition: 0.3s ease;
}

.about-button:hover {
    color: var(--white-color);

    background: var(--navy-color);

    transform: translateY(-2px);
}


/* =========================================
   About Responsive
   ========================================= */

@media screen and (max-width: 900px) {

    .about-section {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        max-width: 350px;
    }

    .about-details .section-title {
        text-align: center;
    }

    .about-details .section-title::after {
        margin: 12px auto 0;
    }

    .about-details .section-label {
        text-align: center;
    }

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


@media screen and (max-width: 640px) {

    .about-section {
        padding: 70px 15px;
    }

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

    .about-image {
        max-width: 280px;
    }
}
/* About image - show full photograph */
.about-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.about-image {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    border: none;
    border-radius: 12px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/* Final About Image Fix */

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-image-wrapper::before {
    display: none !important;
}

.about-image {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    aspect-ratio: auto;

    object-fit: contain;

    border: none !important;

    border-radius: 12px !important;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/* About Image - Final Proportion */

.about-image-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.about-image-wrapper::before {
    display: none !important;
}

.about-image {
    display: block;

    width: 100%;
    height: 390px;

    object-fit: cover;
    object-position: center;

    border: none !important;
    border-radius: 14px !important;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 640px) {

    .about-image {
        height: 280px;
    }
}
/* =========================================
   Services Section
   ========================================= */

.services-section {
    padding: 110px 20px;

    background: #f5fafb;
}


/* Services Grid */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Service Card */

.service-card {
    position: relative;

    padding: 35px 30px;

    background: var(--white-color);

    border-radius: 12px;

    border: 1px solid #e4edf0;

    overflow: hidden;

    transition: 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: var(--cyan-color);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.1);
}

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


/* Service Icon */

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    color: var(--navy-color);

    background: rgba(0, 190, 210, 0.12);

    font-size: 1.5rem;

    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white-color);

    background: var(--cyan-color);

    transform: scale(1.05);
}


/* Service Number */

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #e8f1f3;

    font-size: 2.2rem;

    font-weight: 800;
}


/* Service Title */

.service-card h3 {
    max-width: 260px;

    margin-bottom: 15px;

    color: var(--navy-color);

    font-size: 1.15rem;

    line-height: 1.4;
}


/* Service Description */

.service-card p {
    color: #666;

    font-size: 0.9rem;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* Service Link */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--navy-color);

    font-size: 0.85rem;

    font-weight: 700;

    transition: 0.2s ease;
}

.service-link i {
    color: var(--cyan-color);

    transition: 0.2s ease;
}

.service-link:hover {
    color: var(--cyan-color);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   Services Responsive
   ========================================= */

@media screen and (max-width: 1000px) {

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


@media screen and (max-width: 640px) {

    .services-section {
        padding: 80px 15px;
    }

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

        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }
}
/* =========================================
   Service Cards With Images
   ========================================= */

.service-card {
    padding: 0;

    overflow: hidden;

    background: var(--white-color);

    border-radius: 12px;

    border: 1px solid #e4edf0;

    transition: 0.3s ease;
}


/* Service Image */

.service-image {
    width: 100%;

    height: 220px;

    overflow: hidden;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

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


/* Service Content */

.service-content {
    position: relative;

    padding: 28px 30px 30px;
}


/* Number */

.service-content .service-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #e8f1f3;

    font-size: 2rem;

    font-weight: 800;
}


/* Title */

.service-content h3 {
    max-width: 270px;

    margin-bottom: 14px;

    color: var(--navy-color);

    font-size: 1.1rem;

    line-height: 1.4;
}


/* Description */

.service-content p {
    color: #666;

    font-size: 0.88rem;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* Link */

.service-content .service-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--navy-color);

    font-size: 0.85rem;

    font-weight: 700;
}

.service-content .service-link i {
    color: var(--cyan-color);

    transition: 0.2s ease;
}

.service-content .service-link:hover {
    color: var(--cyan-color);
}

.service-content .service-link:hover i {
    transform: translateX(5px);
}


/* Hover */

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);
}


/* =========================================
   Service Image Responsive
   ========================================= */

@media screen and (max-width: 1000px) {

    .service-image {
        height: 210px;
    }
}

@media screen and (max-width: 640px) {

    .service-image {
        height: 230px;
    }

    .service-content {
        padding: 25px;
    }
}
/* =========================================
   Final Services Card Layout
   ========================================= */

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.service-content {
    position: relative;
    padding: 25px 30px 28px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    margin-bottom: 18px;
}

.service-card {
    height: auto;
}


/* Mobile */

@media screen and (max-width: 640px) {

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 24px 25px 26px;
    }
}
/* =========================================
   Contact Section
   ========================================= */

.contact-section {
    padding: 110px 20px;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}


/* Contact Information */

.contact-info h3 {
    color: var(--navy-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-description {
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 35px;
}


/* Contact Details */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--navy-color);
    background: rgba(0, 190, 210, 0.12);

    font-size: 1rem;
}

.contact-detail span {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
    display: block;

    margin: 3px 0;

    color: var(--navy-color);

    font-size: 0.95rem;

    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--cyan-color);
}


/* Contact Form */

.contact-form {
    padding: 35px;

    background: #f5fafb;

    border-radius: 14px;

    border: 1px solid #e3edef;
}

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

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy-color);

    font-size: 0.85rem;

    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d7e3e6;

    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: #333;

    font-family: inherit;

    font-size: 0.9rem;

    transition: 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan-color);

    box-shadow: 0 0 0 3px rgba(0, 190, 210, 0.1);
}


/* Submit Button */

.submit-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 25px;

    border: none;

    border-radius: 6px;

    background: var(--cyan-color);

    color: var(--navy-color);

    font-size: 0.9rem;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.submit-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* Responsive */

@media screen and (max-width: 800px) {

    .contact-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-form {
        padding: 28px 22px;
    }
}

@media screen and (max-width: 640px) {

    .contact-section {
        padding: 80px 15px;
    }
}
/* =========================================
   Thank You Page
   ========================================= */

.thank-you-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    background: #f5fafb;
}

.thank-you-card {
    width: 100%;
    max-width: 600px;

    padding: 50px 40px;

    text-align: center;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.thank-you-logo {
    width: 180px;
    max-width: 80%;

    margin-bottom: 30px;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cyan-color);

    color: var(--navy-color);

    font-size: 2rem;
    font-weight: 800;
}

.thank-you-card h1 {
    margin-bottom: 12px;

    color: var(--navy-color);

    font-size: 2.2rem;
}

.thank-you-card p {
    color: #555;

    line-height: 1.7;
}

.thank-you-text {
    max-width: 450px;

    margin: 10px auto 30px;
}

.return-home-button {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 6px;

    background: var(--cyan-color);

    color: var(--navy-color);

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.return-home-button:hover {
    transform: translateY(-2px);
}
.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 24px;
    background: #087ea4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #065f7d;
    transform: translateY(-2px);
}
/* =========================================
   Projects in Action
   ========================================= */

.project-videos-section {
    padding: 80px 7%;
    background: #f7fbfc;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading span {
    display: block;
    margin-bottom: 10px;
    color: #087ea4;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-bottom: 15px;
    color: #0b2438;
    font-size: 2.4rem;
}

.section-heading p {
    color: #555;
    line-height: 1.7;
}

.project-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-video-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-video-content {
    padding: 22px 24px 25px;
}

.project-video-content h3 {
    margin-bottom: 10px;
    color: #0b2438;
    font-size: 1.3rem;
}

.project-video-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}


/* Mobile */
@media (max-width: 768px) {

    .project-videos-section {
        padding: 60px 5%;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .project-videos-grid {
        grid-template-columns: 1fr;
    }
}