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

/* ===========================
   RESET
=========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f9fa;
    color: #222;
}

/* ===========================
   HEADER
=========================== */

header {
    width: 100%;
    /* background: #1E293B;
     */background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

/* Logo */

.logo img {
    height: 85px;
}

/* Navigation */

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    /* color: #ffffff; */
    color: #000;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Hover Effect */
nav ul li a:hover {
    background: #d62828;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(214, 40, 40, 0.35);
    transform: translateY(-2px);
}

/* Active Page */
nav ul li a.active {
    background: #d62828;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(214, 40, 40, 0.35);
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(17, 24, 39, .85),
            rgba(17, 24, 39, .85)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 8% 80px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    color: white;
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    color: #dddddd;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 40px;
}

/* ===========================
   BUTTONS
=========================== */

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #D61F26;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: white;
    color: #D61F26;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn-secondary:hover {
    background: white;
    color: #111827;
}

/* ===========================
   COMMON SECTION
=========================== */

section {
    padding: 80px 8%;
}

section h2 {
    text-align: center;
    font-size: 40px;
    color: #111827;
    margin-bottom: 20px;
}

section p {
    text-align: center;
    color: #555;
    font-size: 18px;
    line-height: 32px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

    /* HEADER */
    header {
        padding: 12px 5%;
        flex-direction: column;
        gap: 10px;
        background-color: white;
    }

    .logo img {
        height: 65px;
        width: auto;
    }

    /* NAVIGATION */
    nav {
        width: 100%;
    }

    nav ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        margin: 0;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 14px;
        padding: 8px 12px;
        color: black;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 150px 6% 80px;
    }

    .hero-content {
        width: 100%;
        max-width: 750px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.7;
    }

    /* BUTTONS */
    .buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 220px;
        text-align: center;
    }

}


/* ===========================
   MOBILE PHONES
=========================== */

@media (max-width: 576px) {

    /* GENERAL */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        padding: 60px 20px;
    }


    /* ===========================
       HEADER
    =========================== */

    header {
        position: relative;
        width: 100%;

        padding: 12px 15px;

        display: flex;
        flex-direction: column;
background-color: white;
        gap: 10px;
    }

    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 55px;
        width: auto;
        max-width: 150px;
    }


    /* ===========================
       NAVIGATION
    =========================== */

    nav {
        width: 100%;
    }

    nav ul {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

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

        gap: 6px 8px;

        margin: 0;
        padding: 0;
    }

    nav ul li {
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 11px;
color: black;
        padding: 7px 9px;

        white-space: nowrap;
    }


    /* ===========================
       HERO
    =========================== */

    .hero {
        width: 100%;

        min-height: calc(100vh - 130px);
        height: auto;

        padding: 65px 20px 60px;

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

        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;

        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;

        margin-bottom: 30px;
    }


    /* ===========================
       BUTTONS
    =========================== */

    .buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;

        padding: 13px 20px;

        font-size: 15px;

        text-align: center;
    }


    /* ===========================
       SECTION HEADINGS
    =========================== */

    section h2 {
        font-size: 29px;
        line-height: 1.3;

        margin-bottom: 18px;
    }

    section p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* ===========================
       ABOUT PREVIEW
    =========================== */

    .about-preview {
        width: 100%;
        padding: 60px 20px;
    }

    .about-preview p {
        width: 100%;
        margin: 15px auto 25px;
    }

    .read-more {
        padding: 12px 28px;
        font-size: 14px;
    }


    /* ===========================
       SERVICES
    =========================== */

    .services {
        width: 100%;
        padding: 60px 20px;
    }

    .services-container {
        width: 100%;
    }

    .services-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 18px;
    }

    .service-card {
        width: 100%;

        padding: 25px 20px;

        text-align: center;
    }

    .service-card i {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* ===========================
       WHY CHOOSE AHAD
    =========================== */

    .why {
        width: 100%;
        padding: 60px 20px;
    }

    .why-container {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .why-container>div {
        text-align: center;
    }

    .why-container i {
        font-size: 26px;
    }

    .why-container h3 {
        font-size: 14px;
        line-height: 1.4;
    }


    /* ===========================
       CAREER
    =========================== */

    .career {
        width: 100%;
        padding: 60px 20px;

        text-align: center;
    }

    .career h2 {
        font-size: 29px;
    }

    .career p {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-btn {
        display: inline-block;

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

        padding: 13px 20px;

        font-size: 14px;
    }


    /* ===========================
       CONTACT
    =========================== */

    .contact-home {
        width: 100%;
        padding: 60px 20px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-item {
        width: 100%;
        text-align: center;

        margin-bottom: 25px;
    }

    .contact-item p {
        font-size: 14px;
        line-height: 1.7;

        word-break: break-word;
    }

    .contact-btn {
        display: block;

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

        margin: 20px auto 0;

        text-align: center;
    }


    /* ===========================
       FOOTER
    =========================== */

    footer {
        width: 100%;
        padding: 30px 15px;

        text-align: center;
    }

    footer p {
        font-size: 12px;
        line-height: 1.6;
    }

    .social {
        display: flex;

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

        gap: 20px;

        margin-top: 15px;
    }

    .social a {
        font-size: 19px;
    }

}


/* ===========================
   EXTRA SMALL PHONES
=========================== */

@media (max-width: 360px) {

    .logo img {
        height: 50px;
    }

    nav ul {
        gap: 5px;
    }

    nav ul li a {
        font-size: 10px;
        padding: 6px 7px;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 27px;
    }

    .hero p {
        font-size: 13px;
    }

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

}

/* ===========================
   ABOUT PREVIEW
=========================== */

.about-preview {
    background: #ffffff;
    text-align: center;
}

.about-preview p {
    max-width: 900px;
    margin: 20px auto 35px;
}

.read-more {
    display: inline-block;
    background: #D61F26;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.read-more:hover {
    background: #111827;
}

/* ===========================
   SERVICES
=========================== */

.services {
    padding: 90px 0;
    background: #ffffff;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    color: #17233c;
    margin-bottom: 60px;
    position: relative;
}

.services h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #c72c48;
    display: block;
    margin: 15px auto 0;
    border-radius: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 35px;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card i {
    font-size: 50px;
    color: #c72c48;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #17233c;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px) {

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

    .services h2 {
        font-size: 34px;
    }
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why {
    background: #ffffff;
}

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

.why-container div {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.why-container div:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-8px);
}

.why-container i {
    font-size: 45px;
    color: #D61F26;
    margin-bottom: 15px;
}

.why-container div:hover i {
    color: #fff;
}

.why-container h3 {
    font-size: 20px;
}

/* ===========================
   CAREER SECTION
=========================== */

.career {
    background: #111827;
    color: #fff;
    text-align: center;
}

.career h2 {
    color: #fff;
    margin-bottom: 20px;
}

.career p {
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 35px;
}

.career-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #D61F26;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.career-btn:hover {
    background: #fff;
    color: #111827;
}

/* ===========================
   CONTACT SECTION
=========================== */

/* ===========================
   CONTACT SECTION
=========================== */

.contact-home {
    padding: 90px 10%;
    text-align: center;
    background: #ffffff;
}

.contact-home h2 {
    font-size: 48px;
    color: #17233c;
    margin-bottom: 45px;
    font-weight: 700;
}

.contact-info {
    max-width: 700px;
    margin: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 28px;
    color: #c72c48;
    margin-top: 6px;
}

.contact-item p {
    font-size: 22px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 42px;
    background: #1E3A8A;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #0F2A6B;
    transform: translateY(-3px);
}

/* ===========================
   FOOTER
=========================== */

footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    color: #d1d5db;
    margin-bottom: 20px;
}

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

.social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: .3s;
    font-size: 20px;
}

.social a:hover {
    background: #D61F26;
    transform: translateY(-5px);
}

/* ===========================
   SIMPLE ANIMATIONS
=========================== */

.card,
.why-container div,
.career-btn,
.contact-btn,
.read-more {
    transition: all .3s ease;
}

.card:hover,
.why-container div:hover {
    transform: translateY(-8px);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media(max-width:768px) {

    .service-container,
    .why-container {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        padding: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }

    nav ul li {
        margin: 10px;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 45px;
    }

    .hero p {
        font-size: 16px;
        line-height: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 220px;
        text-align: center;
    }

}

@media(max-width:480px) {

    .logo img {
        height: 55px;
    }

    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .hero p {
        font-size: 15px;
    }

}



/* SERVICES PAGE CSS */

/* ==========================
   SERVICES PAGE
========================== */

.page-banner {
    background: linear-gradient(135deg, #111, #1b1b1b, #c4002f);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.page-banner h1 {
    font-size: 50px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-banner p {
    font-size: 20px;
    color: #ddd;
}

.services {
    width: 90%;
    max-width: 1200px;
    margin: 70px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: .4s;
}

.service-box:hover {
    transform: translateY(-10px);
    border-top: 5px solid #d50032;
}

.service-box h2 {
    color: #d50032;
    margin-bottom: 15px;
    font-size: 26px;
}

.service-box p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.quote-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    text-align: center;
    padding: 90px 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.quote-section h2 {
    max-width: 950px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b263b;
    letter-spacing: 0.5px;
}

.quote-section p {
    margin-top: 35px;
    font-size: 28px;
    font-weight: 700;
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 35px 20px;
}

footer h3 {
    color: #fff;
    margin-bottom: 10px;
}

footer p {
    margin: 8px 0;
}

@media(max-width:768px) {

    .page-banner h1 {
        font-size: 38px;
    }

    .quote-section h2 {
        font-size: 25px;
    }

    .service-box {
        padding: 25px;
    }

}

/*    CAREEERS CSS */

/* ===========================
   CAREERS PAGE
=========================== */

.career-banner {
    background: linear-gradient(135deg, #111, #1b1b1b, #c4002f);
    color: #fff;
    text-align: center;
    padding: 140px 20px 80px;

}

.career-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.career-banner p {
    max-width: 800px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #f2f2f2;
}

.career-section {
    padding: 80px 10%;
    background: #fff;
}

.career-section h2 {
    text-align: center;
    font-size: 38px;
    color: #111;
    margin-bottom: 50px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.career-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.career-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.career-box h3 {
    color: #c70039;
    margin-bottom: 18px;
    font-size: 24px;
}

.career-box p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.career-apply {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.career-apply h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: red;
}

.career-apply p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ddd;
}

.career-apply .btn-primary {
    display: inline-block;
    background: #c70039;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.career-apply .btn-primary:hover {
    background: #ff1744;
    transform: translateY(-3px);
}

@media(max-width:768px) {

    .career-banner {
        padding: 120px 20px 70px;
    }

    .career-banner h1 {
        font-size: 34px;
    }

    .career-banner p {
        font-size: 17px;
    }

    .career-section {
        padding: 60px 7%;
    }

    .career-section h2 {
        font-size: 30px;
    }

    .career-apply h2 {
        font-size: 32px;
    }

}

/* ===========================
   ABOUT US PAGE
=========================== */

.about-banner {
    background: linear-gradient(135deg, #111, #1b1b1b, #c4002f);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px;
}

.about-banner h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-banner p {
    font-size: 22px;
    max-width: 900px;
    margin: auto;
    color: #e5e5e5;
}

.about-company {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

.about-company h2 {
    font-size: 40px;
    color: #111;
    margin-bottom: 25px;
}

.about-company p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

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

.vm-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vm-box h2 {
    color: #c4002f;
    margin-bottom: 20px;
}

.vm-box p {
    color: #555;
    line-height: 1.8;
}

.core-values,
.why-about {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.core-values h2,
.why-about h2 {
    font-size: 42px;
    margin-bottom: 45px;
    color: #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

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

.value-card h3 {
    color: #c4002f;
    margin-bottom: 15px;
    font-size: 24px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* ==========================
   ABOUT CTA
========================== */

/* ==========================
   ABOUT CTA SECTION
========================== */

.about-cta {
    background: linear-gradient(135deg, #071a35 0%, #0b2b59 45%, #081528 100%);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Soft blue glow */
.about-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.25);
    border-radius: 50%;
    filter: blur(80px);
}

/* Bottom left glow */
.about-cta::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.18);
    border-radius: 50%;
    filter: blur(90px);
}

.about-cta h2 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-cta p {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto 40px;
    color: #dbeafe;
    font-size: 21px;
    line-height: 1.8;
}

.about-cta .btn-primary {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 42px;
    background: #d90445;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(217, 4, 69, .35);
}

.about-cta .btn-primary:hover {
    background: #ffffff;
    color: #d90445;
    transform: translateY(-4px);
}

/* ===========================
   CONTACT US PAGE
=========================== */

.contact-banner {
    background: linear-gradient(135deg, #111, #1b1b1b, #c4002f);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px;
}

.contact-banner h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.contact-banner p {
    font-size: 22px;
    max-width: 900px;
    margin: auto;
    color: #e5e5e5;
}

.contact-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    color: #111;
    margin-bottom: 20px;
    font-size: 36px;
}

.contact-info p {
    color: #555;
    line-height: 1.8;
}

.info-box {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.info-box h3 {
    color: #c4002f;
    margin-bottom: 10px;
}

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c4002f;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.social-section {
    text-align: center;
    padding: 70px 20px;
    background: #f7f7f7;
}

.social-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.social-section p {
    color: #555;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    background: #c4002f;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.social-links a:hover {
    background: #111;
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 25px;
    font-size: 16px;
}

/* Responsive */

@media(max-width:768px) {

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-banner h1 {
        font-size: 40px;
    }

    .contact-banner p {
        font-size: 18px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 30px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

}