

        :root {
            --primary: #0b2d4d;
            --primary-dark: #061d33;
            --accent: #e5a72c;
            --light: #f6f8fb;
            --white: #ffffff;
            --text: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: #fff;
        }

        a {
            text-decoration: none;
        }

        /* =====================================
           TOP BAR
        ===================================== */

        .top-bar {
            background: var(--primary-dark);
            color: #fff;
            padding: 9px 0;
            font-size: 13px;
        }

        .top-bar a {
            color: #fff;
        }

        .top-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .top-left,
        .top-right {
            display: flex;
            gap: 22px;
            align-items: center;
        }

        /* =====================================
           NAVBAR
        ===================================== */

        .main-header {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 3px 20px rgba(0,0,0,.08);
        }

        .navbar {
            padding: 13px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary);
            font-weight: 800;
            font-size: 21px;
        }

        .brand:hover {
            color: var(--primary);
        }

        .brand-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .brand-name {
            line-height: 1.1;
        }

        .brand-name small {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-top: 4px;
            color: #777;
        }

        .navbar-nav {
            gap: 5px;
        }

        .navbar-nav .nav-link {
            color: #222;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 15px !important;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent);
        }

        .nav-btn {
            background: var(--primary);
            color: #fff !important;
            border-radius: 5px;
            padding: 11px 20px !important;
        }

        .nav-btn:hover {
            background: var(--accent);
        }

        /* =====================================
           HERO SLIDER
        ===================================== */

        .hero-section {
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            height: 650px;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        

       
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-text {
            max-width: 700px;
            color: #fff;
        }

        .hero-tag {
            display: inline-block;
            border-left: 4px solid var(--accent);
            padding-left: 13px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 5vw, 72px);
            line-height: 1.08;
            margin-bottom: 22px;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255,255,255,.9);
            max-width: 620px;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-main {
            background: var(--accent);
            color: #fff;
            padding: 14px 27px;
            border-radius: 4px;
            font-weight: 700;
            border: 2px solid var(--accent);
        }

        .btn-main:hover {
            background: #fff;
            color: var(--primary);
        }

        .btn-outline-light-custom {
            color: #fff;
            border: 2px solid #fff;
            padding: 14px 27px;
            border-radius: 4px;
            font-weight: 700;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--primary);
        }

        .carousel-indicators [data-bs-target] {
            width: 35px;
            height: 4px;
            border: 0;
            margin: 0 4px;
        }

        /* =====================================
           SECTION COMMON
        ===================================== */

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-heading {
            margin-bottom: 50px;
        }

        .section-heading .small-title {
            color: var(--accent);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-heading p {
            max-width: 650px;
            margin: auto;
            color: #666;
            line-height: 1.8;
        }

        /* =====================================
           INTRO
        ===================================== */

        .intro-box {
            padding: 20px 0;
        }

        .intro-box h3 {
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            margin-bottom: 20px;
        }

        .intro-box p {
            color: #666;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .intro-image {
            min-height: 430px;
            border-radius: 8px;
            background-image: url("images/about.jpg");
            background-size: cover;
            background-position: center;
        }

        /* =====================================
           STATS
        ===================================== */

        .stats-section {
            background: var(--primary);
            padding: 45px 0;
            color: #fff;
        }

        .stat-item {
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.15);
        }

        .stat-item:last-child {
            border-right: 0;
        }

        .stat-item h3 {
            font-size: 34px;
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-item p {
            margin: 0;
            font-size: 14px;
            opacity: .85;
        }

        /* =====================================
           PRODUCTS
        ===================================== */

        .product-card {
            height: 100%;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e9edf2;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 35px rgba(0,0,0,.10);
        }

        .product-image {
            height: 230px;
            background-size: cover;
            background-position: center;
        }

        .product-1 {
            background-image: url("images/product1.jpg");
        }

        .product-2 {
            background-image: url("images/product2.jpg");
        }

        .product-3 {
            background-image: url("images/product3.jpg");
        }

        .product-4 {
            background-image: url("images/product4.jpg");
        }

        .product-content {
            padding: 24px;
        }

        .product-content h4 {
            color: var(--primary);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .product-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* =====================================
           WHY CHOOSE US
        ===================================== */

        .why-card {
            padding: 30px 25px;
            height: 100%;
            background: #fff;
            border-radius: 7px;
            border: 1px solid #e8edf2;
            transition: .3s;
        }

        .why-card:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,.08);
        }

        .why-icon {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(229,167,44,.13);
            color: var(--accent);
            font-size: 26px;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .why-card h4 {
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .why-card p {
            color: #666;
            line-height: 1.7;
            font-size: 14px;
            margin: 0;
        }

        /* =====================================
           MARKETS
        ===================================== */

        .market-box {
            background: var(--primary);
            border-radius: 10px;
            padding: 50px;
            color: #fff;
        }

        .market-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 35px;
            margin-bottom: 15px;
        }

        .market-box p {
            line-height: 1.8;
            opacity: .85;
        }

        .market-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }

        .market-list span {
            padding: 11px 20px;
            border: 1px solid rgba(255,255,255,.25);
            border-radius: 30px;
            font-size: 14px;
        }

        /* =====================================
           CTA
        ===================================== */

        .cta-section {
            background:
                linear-gradient(
                    90deg,
                    rgba(7,30,50,.96),
                    rgba(7,30,50,.82)
                ),
                url("images/cta.jpg") center/cover;
            padding: 80px 0;
            color: #fff;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            margin-bottom: 15px;
        }

        .cta-section p {
            opacity: .85;
            max-width: 700px;
            margin: 0 auto 25px;
            line-height: 1.8;
        }

        /* =====================================
           CONTACT
        ===================================== */

        .contact-card {
            padding: 30px;
            background: #fff;
            border: 1px solid #e5e8ec;
            border-radius: 8px;
            height: 100%;
        }

        .contact-icon {
            font-size: 25px;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .contact-card h4 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .contact-card p {
            color: #666;
            line-height: 1.7;
            margin: 0;
                text-align: center;
        }

        /* =====================================
           FOOTER
        ===================================== */

        footer {
            background: #061b2e;
            color: rgba(255,255,255,.75);
            padding-top: 65px;
        }

        .footer-brand {
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        footer p {
            font-size: 14px;
            line-height: 1.8;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,.7);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 45px;
            padding: 20px 0;
            font-size: 13px;
            text-align: center;
        }

        /* =====================================
           MOBILE RESPONSIVE
        ===================================== */

        @media (max-width: 991px) {

            .top-bar {
                display: none;
            }

            .navbar-nav {
                padding-top: 15px;
            }

            .navbar-nav .nav-link {
                padding: 10px 5px !important;
            }

            .nav-btn {
                display: inline-block;
                margin-top: 5px;
            }

            .hero-slide {
                height: 560px;
            }

            .hero-text {
                max-width: 90%;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .section {
                padding: 70px 0;
            }

            .intro-image {
                min-height: 350px;
                margin-bottom: 30px;
            }

            .stat-item {
                margin-bottom: 25px;
                border-right: 0;
            }

        }

        @media (max-width: 767px) {

            .brand {
                font-size: 17px;
            }

            .brand-logo {
                width: 42px;
                height: 42px;
            }

            .hero-slide {
                height: 500px;
                background-position: center;
            }

           

            .hero-content {
                align-items: center;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-tag {
                font-size: 11px;
                margin-bottom: 14px;
            }

            .hero-text h1 {
                font-size: 37px;
                line-height: 1.15;
                margin-bottom: 15px;
            }

            .hero-text p {
                font-size: 14px;
                line-height: 1.7;
                margin-bottom: 22px;
            }

            .hero-buttons {
                gap: 8px;
            }

            .btn-main,
            .btn-outline-light-custom {
                padding: 11px 18px;
                font-size: 13px;
            }

            .section-heading h2 {
                font-size: 32px;
            }

            .section-heading {
                margin-bottom: 35px;
            }

            .intro-box h3 {
                font-size: 30px;
            }

            .market-box {
                padding: 30px 22px;
            }

            .market-box h3 {
                font-size: 29px;
            }

            .cta-section {
                padding: 60px 20px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

        }

       
                /* =====================================
                GALLERY SECTION
                ===================================== */

                .gallery-section {
                    background: #fff;
                }

                .gallery-item {
                    position: relative;
                    height: 280px;
                    overflow: hidden;
                    border-radius: 8px;
                    background: #eee;
                    cursor: pointer;
                }

                .gallery-image {
                    width: 100%;
                    height: 100%;
                    display: block;
                    object-fit: cover;
                    transition: transform .5s ease;
                }

                .gallery-overlay {
                    position: absolute;
                    inset: 0;
                    background: rgba(7, 29, 51, .72);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    transition: .35s ease;
                }

                .gallery-content {
                    text-align: center;
                    color: #fff;
                    transform: translateY(15px);
                    transition: .35s ease;
                }

                .gallery-content i {
                    width: 52px;
                    height: 52px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    border: 2px solid #fff;
                    border-radius: 50%;
                    font-size: 22px;
                    margin-bottom: 12px;
                }

                .gallery-content h5 {
                    margin: 0;
                    font-size: 17px;
                    font-weight: 700;
                }

                .gallery-item:hover .gallery-image {
                    transform: scale(1.08);
                }

                .gallery-item:hover .gallery-overlay {
                    opacity: 1;
                }

                .gallery-item:hover .gallery-content {
                    transform: translateY(0);
                }


                /* =====================================
                GALLERY MODAL
                ===================================== */

                .gallery-modal .modal-content {
                    background: transparent;
                    border: 0;
                }

                .gallery-modal .modal-body {
                    padding: 0;
                    text-align: center;
                    position: relative;
                }

                .gallery-modal img {
                    max-width: 100%;
                    max-height: 85vh;
                    object-fit: contain;
                    border-radius: 6px;
                }

                .gallery-close {
                    position: absolute;
                    right: 10px;
                    top: 10px;
                    z-index: 10;
                    width: 40px;
                    height: 40px;
                    border: 0;
                    border-radius: 50%;
                    background: rgba(0,0,0,.7);
                    color: #fff;
                    font-size: 20px;
                }


                /* =====================================
                GALLERY MOBILE
                ===================================== */

                @media (max-width: 767px) {

                    .gallery-item {
                        height: 220px;
                    }

                    .gallery-content i {
                        width: 44px;
                        height: 44px;
                        font-size: 18px;
                    }

                    .gallery-content h5 {
                        font-size: 14px;
                    }

                }

                @media (max-width: 480px) {

                    .gallery-item {
                        height: 180px;
                    }

                }
                /* =====================================
                CONTACT FORM
                ===================================== */

                .contact-form-wrapper {
                    background: #f7f9fc;
                    border: 1px solid #e5e9ef;
                    border-radius: 12px;
                    padding: 45px;
                    overflow: hidden;
                }

                .contact-form-info {
                    padding-right: 20px;
                }

                .contact-form-info .small-title {
                    color: var(--accent);
                    font-size: 13px;
                    font-weight: 800;
                    letter-spacing: 2px;
                    text-transform: uppercase;
                    margin-bottom: 12px;
                }

                .contact-form-info h3 {
                    color: var(--primary);
                    font-family: 'Playfair Display', serif;
                    font-size: 36px;
                    line-height: 1.2;
                    margin-bottom: 18px;
                }

                .contact-form-info p {
                    color: #666;
                    font-size: 14px;
                    line-height: 1.8;
                    margin-bottom: 25px;
                }

                .form-info-item {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 16px;
                    color: #444;
                    font-size: 14px;
                    font-weight: 600;
                }

                .form-info-icon {
                    color: var(--accent);
                    font-size: 18px;
                }


                /* FORM LABEL */

                .contact-form-wrapper .form-label {
                    color: var(--primary);
                    font-size: 13px;
                    font-weight: 700;
                    margin-bottom: 7px;
                }

                .contact-form-wrapper .form-label span {
                    color: #dc3545;
                }


                /* INPUT */

                .custom-input {
                    position: relative;
                }

                .custom-input > i {
                    position: absolute;
                    left: 15px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: #8a929c;
                    font-size: 17px;
                    z-index: 2;
                }

                .custom-input .form-control {
                    min-height: 50px;
                    border: 1px solid #dce2e8;
                    border-radius: 5px;
                    padding-left: 45px;
                    font-size: 14px;
                    box-shadow: none;
                    background: #fff;
                }

                .custom-input .form-control:focus {
                    border-color: var(--accent);
                    box-shadow: 0 0 0 3px rgba(229,167,44,.10);
                }

                .custom-input .form-control::placeholder {
                    color: #a4abb3;
                }


                /* TEXTAREA */

                .textarea-input > i {
                    top: 19px;
                    transform: none;
                }

                .textarea-input textarea {
                    resize: vertical;
                    min-height: 125px !important;
                    padding-top: 14px;
                }


                /* SUBMIT BUTTON */

                .contact-submit-btn {
                    width: 100%;
                    min-height: 52px;
                    border: 0;
                    border-radius: 5px;
                    background: var(--primary);
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    font-size: 14px;
                    font-weight: 700;
                    transition: .3s;
                }

                .contact-submit-btn:hover {
                    background: var(--accent);
                    transform: translateY(-2px);
                }

                .contact-submit-btn i {
                    font-size: 18px;
                }


                /* =====================================
                MOBILE
                ===================================== */

                @media (max-width: 991px) {

                    .contact-form-wrapper {
                        padding: 35px 25px;
                    }

                    .contact-form-info {
                        padding-right: 0;
                    }

                }

                @media (max-width: 767px) {

                    .contact-form-wrapper {
                        padding: 28px 18px;
                        border-radius: 8px;
                    }

                    .contact-form-info h3 {
                        font-size: 29px;
                    }

                    .contact-form-info {
                        margin-bottom: 10px;
                    }

                    .contact-card {
                        padding: 25px 20px;
                    }

                }

                @media (max-width: 480px) {

                    .contact-form-wrapper {
                        padding: 22px 15px;
                    }

                    .contact-form-info h3 {
                        font-size: 27px;
                    }

                    .custom-input .form-control {
                        min-height: 48px;
                        font-size: 13px;
                    }

                }
                /* =====================================
                    FOOTER LOGO
                    ===================================== */

                    .footer-company {
                        max-width: 430px;
                    }

                    .footer-logo {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 15px;
                    }

                    .footer-logo img {
                        width: 75px;
                        height: 75px;
                        object-fit: contain;
                        display: block;
                    }

                    .footer-brand {
                        color: #fff;
                        font-size: 22px;
                        font-weight: 800;
                        margin-bottom: 14px;
                    }

                    .footer-company p {
                        color: rgba(255,255,255,.70);
                        font-size: 14px;
                        line-height: 1.8;
                        margin-bottom: 0;
                    }


                    /* FOOTER CONTACT */

                    footer .col-lg-4 p {
                        display: flex;
                        align-items: flex-start;
                        gap: 10px;
                    }

                    footer .col-lg-4 p i {
                        color: var(--accent);
                        font-size: 17px;
                        margin-top: 2px;
                    }


                    /* MOBILE */

                    @media (max-width: 767px) {

                        .footer-logo img {
                            width: 65px;
                            height: 65px;
                        }

                        .footer-brand {
                            font-size: 20px;
                        }

                    }

                    /* =====================================
   PRODUCT CARD
===================================== */

.product-card {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9edf2;
    transition: .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}


/* PRODUCT IMAGE */

.product-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #f1f1f1;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}


/* PRODUCT CONTENT */

.product-content {
    padding: 24px;
}

.product-content h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h4 {
        font-size: 18px;
    }

}

@media (max-width: 480px) {

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 17px;
    }

    .product-content h4 {
        font-size: 17px;
    }

    .product-content p {
        font-size: 13px;
        line-height: 1.6;
    }

}
/* =========================
   ABOUT IMAGE
========================= */

.intro-image {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transition: transform 0.5s ease;
    background: #f5f5f5;
}

/* Hover Effect */
.intro-image:hover img {
    transform: scale(1.04);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .intro-image {
        height: 450px;
        border-radius: 20px;
    }

    .intro-image img {
        border-radius: 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .intro-image {
        height: 350px;
        border-radius: 18px;
    }

    .intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 18px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .intro-image {
        height: 300px;
        border-radius: 16px;
    }

    .intro-image img {
        border-radius: 16px;
    }

}
@media (max-width: 767px) {
    p {
        text-align: justify;
    }
}
p {
        text-align: justify;
    }

    /* =========================
   REMOVE HORIZONTAL SCROLL
========================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
   
}

.container,
.container-fluid {
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Bootstrap columns ko viewport se bahar jaane se rokna */
[class*="col-"] {
    min-width: 0;
}

/* Carousel overflow fix */
.carousel,
.carousel-inner,
.carousel-item {
    max-width: 100%;
    overflow: hidden;
}

/* Hero section */
.hero-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Images */
.intro-image,
.intro-image img {
    max-width: 100%;
}
.product-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 8px;
    padding: 10px 18px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    color: #fff;
    background: var(--primary-color, #198754);

    transition: all 0.3s ease;
}

.product-read-more span {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.product-read-more:hover {
    color: #fff;
    transform: translateY(-2px);
}

.product-read-more:hover span {
    transform: translateX(4px);
}
/* =========================
   CONTACT CARDS
========================= */

.contact-card {
    height: 100%;
    padding: 30px 20px;

    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;

    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.contact-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-color, #198754);
    color: #fff;

    font-size: 24px;
}

.contact-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    word-break: break-word;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-box {
    padding: 45px;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.form-heading h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.form-heading p {
    color: #777;
    margin-bottom: 0;
}


/* =========================
   FORM LABEL
========================= */

.contact-form-box .form-label {
    display: block;

    margin-bottom: 8px;

    font-weight: 600;
    color: #333;
}


/* =========================
   INPUT
========================= */

.input-group-custom {
    position: relative;
}

.input-group-custom > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: var(--primary-color, #198754);
}

.input-group-custom .form-control {
    min-height: 52px;

    padding-left: 45px;

    border: 1px solid #ddd;
    border-radius: 8px;

    box-shadow: none;

    transition: all 0.3s ease;
}

.input-group-custom .form-control:focus {
    border-color: var(--primary-color, #198754);

    box-shadow: 0 0 0 3px
        rgba(25, 135, 84, 0.10);
}


/* =========================
   TEXTAREA
========================= */

.input-group-custom.textarea-wrap > i {
    top: 20px;
    transform: none;
}

.input-group-custom textarea.form-control {
    min-height: 150px;
    resize: vertical;
    padding-top: 14px;
}


/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit {
    border: none;
    cursor: pointer;
    min-width: 180px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .contact-form-box {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .form-heading h3 {
        font-size: 25px;
    }

    .contact-card {
        padding: 25px 15px;
    }

}
   