/* comman class */
.mb-20{
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}

/* comman class */


/* header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

/* Container */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;

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

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.logo-icon {
    height: 82px;
    width: 145px;
}
.logo-icon img{
    height: 100%;
    width: 100%;
}

.logo-text {
    font-size: 18px;
    color: #333;
}

/* Navigation */

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #FDC609;
}

/* Actions */

.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.btn {
    background: #212529;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #FDC609;
}

/* Mobile Menu */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Tablet */

@media (max-width: 992px) {

    .nav {
        gap: 20px;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        background: white;

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

        gap: 18px;
        padding: 20px;

        display: none;
    }

    .nav.active {
        display: flex;
    }

    .actions {
        display: none;
    }

}

/* Small Mobile */

@media (max-width: 480px) {

    .container {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 16px;
    }

}
/* header */



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

body {
    font-family: 'Poppins', sans-serif;
    
}

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

.taxi-banner {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)),
        url('your-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional Glow Effect */

.taxi-banner::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 183, 0, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.banner-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sub-heading {
    color: #ffb700;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.main-heading {
    font-size: 78px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.main-heading span {
    color: #ffb700;
    text-shadow: 0 0 15px rgba(255, 183, 0, 0.5);
}

.banner-text {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
}

/* BUTTON */

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #111;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.4s ease;
    box-shadow:
        0 10px 30px rgba(255, 183, 0, 0.35);
}

.banner-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(255, 183, 0, 0.45);
}

.banner-btn svg {
    width: 20px;
    height: 20px;
    fill: #111;
}

/* =========================
       FLOATING CARDS
    ========================== */

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-1 {
    left: 50px;
    bottom: 80px;
}

.card-2 {
    right: 60px;
    top: 120px;
}

.floating-card h4 {
    color: #ffb700;
    font-size: 14px;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 14px;
    opacity: 0.8;
}

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

@media(max-width:991px) {

    .main-heading {
        font-size: 58px;
    }

    .banner-text {
        font-size: 16px;
    }

}

@media(max-width:768px) {

    .taxi-banner {
        min-height: auto;
        padding: 120px 20px;
    }

    .main-heading {
        font-size: 42px;
    }

    .sub-heading {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .banner-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .banner-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .floating-card {
        display: none;
    }

}

@media(max-width:480px) {

    .main-heading {
        font-size: 34px;
    }

    .banner-text {
        font-size: 14px;
    }

}


/* about section */
/* =========================
       ABOUT SECTION
    ========================== */

.about-section {
    width: 100%;
    padding: 100px 7%;
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* Glow Effect */

.about-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 183, 0, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* =========================
       LEFT CONTENT
    ========================== */

.about-content {
    flex: 1;
}

.section-tag {
    color: #ffb700;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80px;
    height: 3px;
    background: #ffb700;
    border-radius: 20px;
}

.about-heading {
    font-size: 52px;
    line-height: 1.15;
    color: #212529;
    font-weight: 800;
    margin-bottom: 28px;
    max-width: 650px;
}

.about-heading span {
    color: #ffb700;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgb(33 37 41);
    margin-bottom: 35px;
    max-width: 650px;
}

/* FEATURES */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    min-width: 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
    box-shadow: 0 5px 20px rgba(255, 183, 0, 0.3);
}

.feature-text {
    color: rgb(0 0 0 / 82%);
    font-size: 17px;
    line-height: 1.7;
}

.feature-text strong {
    color: #ffa900;
    font-weight: 600;
}

/* =========================
       RIGHT IMAGE
    ========================== */

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 183, 0, 0.18),
            rgba(255, 183, 0, 0.03),
            transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

@media(max-width:1100px) {

    .about-heading {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-heading {
        font-size: 44px;
    }

    .about-features {
        width: 100%;
        max-width: 700px;
    }

    .feature-item {
        text-align: left;
    }

    .about-image {
        margin-top: 40px;
    }

}

@media(max-width:768px) {

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

    .about-heading {
        font-size: 36px;
    }

    .about-text {
        font-size: 16px;
    }

    .feature-text {
        font-size: 15px;
    }

    .circle-glow {
        width: 380px;
        height: 380px;
    }

}

@media(max-width:480px) {

    .about-heading {
        font-size: 30px;
    }

    .section-tag {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .about-text {
        font-size: 15px;
    }

    .feature-item {
        gap: 12px;
    }

}
/* about section */



/* how it works */
/* ===================================
       HOW IT WORKS SECTION
    ==================================== */

.ride-process {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 110px 7%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.82)),
        url('your-background-image.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Glow Effect */

.ride-process::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 183, 0, 0.10);
    border-radius: 50%;
    filter: blur(120px);
    top: -150px;
    left: -100px;
}

.ride-process::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 183, 0, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -120px;
    right: -80px;
}

.process-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* ===================================
       LEFT CONTENT
    ==================================== */

.process-left {
    flex: 1;
}

.section-subtitle {
    color: #ffb700;
    font-size: 15px;
    letter-spacing: 5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.section-title {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 22px;
    max-width: 650px;
}

.section-title span {
    color: #ffb700;
}

.section-description {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 45px;
    max-width: 650px;
}

/* PROCESS STEPS */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.step-box:hover {
    transform: translateX(10px);
    border-color: rgba(255, 183, 0, 0.4);
    background: rgba(255, 183, 0, 0.05);
}

.step-icon {
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 3px;
    box-shadow: 0 8px 20px rgba(255, 183, 0, 0.25);
}

.step-content h3 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 15px;
}

/* ===================================
       RIGHT IMAGE
    ==================================== */

.process-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Floating Glow Circle */

.phone-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 183, 0, 0.22),
            rgba(255, 183, 0, 0.05),
            transparent);

    filter: blur(10px);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }

}

/* Floating Phone Animation */

.phone-image {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    animation: floatPhone 4s ease-in-out infinite;
    filter:
        drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
}

@keyframes floatPhone {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* Rotating Ring */

.ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 5px dashed rgba(255, 183, 0, 0.18);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

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

@media(max-width:1100px) {

    .section-title {
        font-size: 42px;
    }

}

@media(max-width:991px) {

    .process-container {
        flex-direction: column;
    }

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

    .section-title,
    .section-description {
        margin-left: auto;
        margin-right: auto;
    }

    .process-right {
        margin-top: 50px;
    }

    .step-box {
        text-align: left;
    }

}

@media(max-width:768px) {

    .ride-process {
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 15px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 14px;
    }

    .phone-image {
        max-width: 300px;
    }

    .ring {
        width: 350px;
        height: 350px;
    }

    .phone-glow {
        width: 300px;
        height: 300px;
    }

}

@media(max-width:480px) {

    .section-title {
        font-size: 28px;
    }

    .step-box {
        padding: 16px;
    }

    .step-content h3 {
        font-size: 18px;
    }

}
/* how it works */



/* what we offer */
/* ==========================
   WHAT WE OFFER SECTION
========================== */

#offer-section {
    background: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
}

.offer-container {
    max-width: 1250px;
    margin: auto;
}

.offer-heading {
    margin-bottom: 60px;
}

.offer-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.offer-heading span {
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00, #ff9800);
    border-radius: 50px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.offer-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s ease;
    cursor: pointer;
    border: 1px solid #efefef;
    position: relative;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 204, 0, 0.08),
            rgba(255, 255, 255, 0));
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(255, 204, 0, 0.12);
}

.offer-image {
    height: 270px;
    overflow: hidden;
}

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

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}

.offer-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    transition: 0.3s;
}

.offer-card:hover h3 {
    color: #ffb800;
}

.offer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {

    .offer-heading h2 {
        font-size: 42px;
    }

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

    .offer-image {
        height: 240px;
    }
}

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

@media (max-width: 768px) {

    #offer-section {
        padding: 70px 18px;
    }

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

    .offer-heading span {
        margin: auto;
    }

    .offer-heading h2 {
        font-size: 34px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-image {
        height: 230px;
    }

    .offer-content {
        padding: 22px;
    }

    .offer-content h3 {
        font-size: 24px;
    }

    .offer-content p {
        font-size: 15px;
    }
}
/* what we offer */

/* download */
/* =========================
   APP DOWNLOAD SECTION
========================= */

.download-section {
    background: #ffffff;
    
}

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

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
}

/* Center Divider */

.download-grid::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80%;
    background: #e5e5e5;
}

/* Card */

.download-card {
    text-align: center;
    padding: 50px 35px;
    border-radius: 24px;
    background: #fff;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 193, 7, .08),
            transparent);
    opacity: 0;
    transition: .4s;
}

.download-card:hover::before {
    opacity: 1;
}

.download-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
}

/* Icon */

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    transition: .4s;
}

.card-icon img {
    width: 70px;
    transition: .5s;
}

.download-card:hover .card-icon {
    background: #fff8e1;
    transform: scale(1.05);
}

.download-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

/* Content */

.download-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.download-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 28px;
}

/* Button */

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #ffcb05;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .3s;
}

.download-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .download-card h3 {
        font-size: 26px;
    }

    .download-grid {
        gap: 30px;
    }
}

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

@media(max-width:768px) {

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

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

    .download-grid::after {
        display: none;
    }

    .download-card {
        padding: 40px 25px;
    }

    .card-icon {
        width: 100px;
        height: 100px;
    }

    .card-icon img {
        width: 60px;
    }

    .download-card h3 {
        font-size: 24px;
    }

    .download-card p {
        font-size: 16px;
    }
}
/* download */


/* cta */
/* ===========================
       CONTACT INFO SECTION
    ============================ */

.contact-info-section {
    width: 100%;
    padding: 90px 7%;
    background:
        url(../img/banner/banner.jpg);
    position: relative;
    overflow: hidden;
        background-repeat: no-repeat;
            background-size: cover;
}

/* Background Glow */

.contact-info-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 183, 0, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    top: -120px;
    left: -120px;
}

.contact-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

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

.contact-card {
    background:
        rgba(255, 255, 255, 0.03);

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

    border-radius: 24px;

    padding: 45px 35px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: 0.4s ease;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 183, 0, 0.35);

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

/* Glow Line */

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;

    background:
        linear-gradient(90deg,
            transparent,
            #ffb700,
            transparent);

    transition: 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

/* ICON */

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

    margin: auto auto 25px;

    border-radius: 50%;

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

    background:
        linear-gradient(135deg, #ffcc00, #ff9900);

    color: #111;

    font-size: 30px;

    box-shadow:
        0 10px 30px rgba(255, 183, 0, 0.3);

    transition: 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(180deg) scale(1.08);
}

/* TEXT */

.contact-subtitle {
    color: #ffb700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-weight: 500;
}

.contact-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.contact-text a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-text a:hover {
    color: #ffb700;
}

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

@media(max-width:991px) {

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

}

@media(max-width:768px) {

    .contact-info-section {
        padding: 70px 20px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

}

@media(max-width:480px) {

    .contact-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-subtitle {
        font-size: 12px;
    }

}
/* cta */


/* footer */
  footer {
      width: 100%;
      background: #000;
      padding: 18px 60px;
  }

  .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
  }

  .copyright {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
  }

  .windows-text {
      text-align: right;
      color: #7a7a7a;
      line-height: 1.4;
  }

  .windows-text h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 2px;
  }

  .windows-text p {
      font-size: 14px;
      color: #6d6d6d;
  }

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

      footer {
          padding: 20px;
      }

      .footer-container {
          flex-direction: column;
          align-items: flex-start;
      }

      .windows-text {
          text-align: left;
      }

      .copyright {
          font-size: 15px;
      }

      .windows-text h3 {
          font-size: 16px;
      }

      .windows-text p {
          font-size: 13px;
      }
  }
/* footer */