/* ===== custom-style.css ===== */
/* AMC Concrete Project - Main Stylesheet */

/*  Generic CSS start */
/** Font Family  Css Start **/
/* DRUCK */
@font-face {
    font-family: 'Druk';
    src: url('../fonts/druck/Druk-Medium.woff2') format('woff2'),
        url('../fonts/druck/Druk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk';
    src: url('../fonts/druck/Druk-Bold.woff2') format('woff2'),
        url('../fonts/druck/Druk-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk';
    src: url('../fonts/druck/Druk-Heavy.woff2') format('woff2'),
        url('../fonts/druck/Druk-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* SATOSHI */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-MediumItalic.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-Regular.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-Black.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/satoshi/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/** Font Family  Css End **/
/* -------------------- */
/* CSS Variables (Tokens) */
/* -------------------- */



:root {

    /* Typography tokens from Figma */
    --font-heading: "Druk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-content: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Color Palette*/
    --primary-color: #3A3642;
    --secondary-color: linear-gradient(133deg, #0785CA, #0882C5, #085892);
    --slider-scroll-color: #086BA9;
    --map-top-text: #095992;


    /* Text Colors*/
    --text-dark: #1B1B1B;
    --text-light: #FFFFFF;
    --gd-text-hero: linear-gradient(138deg, #FFFFFF 0%, #C8C5D1 80%);
    --gd-text-magic: linear-gradient(to bottom, #868686 -35%, transparent 81%);
    --gd-text-about: linear-gradient(to bottom, #3A3642 3%, transparent 100%);

    /* Card Blur Container */
    --blur-color: #000000a3;
    --blur-value: blur(5px);

    /* Card Colors */
    --card-backs: #F6F6F6;
    --card-text: #1B1B1B;

    /* Section blur Background */
    --about-container-blur: linear-gradient(to bottom, #2B2F3A 2%, transparent 100%);

    /* Radius */
    --border-radius-30: 30px;
    --border-radius-20: 20px;
    --border-radius-39: 39px;
    --border-radius-50: 50px;

    /* Font Sizes*/
    --text-lg: 146px;
    --text-md: 86px;
    --text-p: 18px;
    --text-card: 36px;
    --blog-card-h2: 56px;
    --text-magic: 456px;
    --text-numbers: 100px;
    --text-menu: 16px;
    --text-btn: 10px;

}

/** General Css **/
/* *:focus {
    outline: unset !important;
    box-shadow: unset !important;
}

* {
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--text-p);
    font-family: var(--font-content);
    background-color: var(--bg-light);
} */

/** General Css Updated **/
*:focus {
    outline: unset !important;
    box-shadow: unset !important;
}

* {
    margin: 0;
    padding: 0;
}


body,
html {
    /* height: 100%;  */
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--text-p);
    font-family: var(--font-content);
    background-color: var(--bg-light);
    width: 100%;
    position: relative;
}

/* -------------------- */
/* Typography */
/* -------------------- */


p,
a,
button,
div,
ul,
li,
span {
    font-family: var(--font-content);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    text-transform: uppercase;
}



h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: var(--text-lg);
}

h2 {
    font-size: var(--text-md);
    font-weight: 500;
}

a,
p {
    font-size: var(--text-p);
}

a {
    color: var(--slider-scroll-color);
    text-decoration: none;
    outline: none !important;
}

button,
input {
    outline: 0 !important;
}

input[type=submit]:hover {
    background-color: unset !important;
}

div:focus {
    border: none !important;
}


a:focus {
    border: none !important;
}

/* .row {
    margin: 0 !important;
    padding: 0 !important;
}

.row>* {
    margin: 0;
    padding: 0;
} */

.container-fluid {
    padding: 0 !important;
}

.displayNone {
    display: none;
}

/* .margin {
    margin: 0 auto !important;
} */

.mb-30 {
    margin-bottom: 30px !important;
}

.margin-top {
    margin-top: 70px !important;
}

.pRelative {
    position: relative !important;
}

.pAbsolute {
    position: absolute !important;
}

.pointer {
    cursor: pointer;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    border: 1px solid #01a2dd;
    background-color: #01a2dd !important;
    color: white !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border: 1px solid;
    background-color: white !important;
}

.inlineBlock {
    display: inline-block !important;
    width: auto;
}

/** Composer Css **/

.vc_row-fluid {
    left: 0 !important;
}

.wpb_content_element {
    margin-bottom: 0 !important;
}

.vc_row {
    margin-left: auto !important;
    margin-right: auto !important;
}

.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.vc_column_container>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0 !important;
}

.vc_col-has-fill>.vc_column-inner {
    padding-top: 0 !important;
}

.wrapper {
    padding: 0;
}

.fullImage.wpb_single_image .vc_figure {
    display: block !important;
}

.fullImage.wpb_single_image .vc_single_image-wrapper {
    display: block !important;
}

.fullImage.wpb_single_image img {
    width: 100% !important;
}

.fullImage.wpb_single_image .vc_figure {
    display: block !important;
}

.aligncenter.size-full {
    width: 100%;
}

.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner {
    padding-top: 0 !important;
}

.wpb_single_image img {
    width: 100%;
}

.vc_element-icon {
    background-image: url("https://devstren.com/wp-content/themes/understrap/images/center-logo.png") !important;
}


/** Theme Css Override **/

.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-primary:hover {
    color: #000;
    border-color: #000000;
}

.bg-primary {
    background-color: #000 !important;
}

.btn-outline-primary,
.wpcf7 input[type=submit] {
    border-color: #000 !important;
}

.btn-outline-primary:hover,
.wpcf7 input:hover[type=submit] {
    color: #fff !important;
    background-color: #000;
    border-color: #000;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle,
.wpcf7 .show>input.dropdown-toggle[type=submit],
.wpcf7 input:not(:disabled):not(.disabled).active[type=submit],
.wpcf7 input:not(:disabled):not(.disabled):active[type=submit] {
    background-color: #000;
    border-color: #000;
}

/*  Generic CSS end */

/* -------------------- */
/* Layout Components */
/* -------------------- */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

a:hover {
    color: black;
}

/* btn custom  */
.amc-btn {
    padding: 15px 30px;
    font-size: var(--text-menu);
    border-radius: 15px;
    background: var(--secondary-color);
    color: var(--text-light);
    width: max-content;
    /* border: 1px solid white ; */
    transition: 0.5s;


}

.amc-btn-primary {
    background: transparent;
    color: white;
    /* border: 1px solid white; */
}

.hs-card .entry-content a.btn:hover,
.amc-btn:hover {
    background: linear-gradient(to right, black 100%, transparent 100%);
    color: white;
    transform: translateY(-3px);
}

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


.amc-navbar {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: var(--border-radius-20);
    padding: 15px 15px 15px 30px;
    position: relative;
    top: 30px;
}

.amc-navbar a.navbar-brand {
    width: 140px;
}

.amc-navbar a.nav-link {
    text-transform: capitalize;
    color: #001D38;
    font-size: var(--text-p);
    letter-spacing: -0.6px;
}

.amc-navbar a.nav-link:hover,
.amc-navbar a.nav-link:focus {
    color: #001D38;
    text-decoration: underline;
}

.amc-navbar .custom-logo-link {
    margin: 0;
}

.amc-navbar .dropdown-toggle::after {
    content: url('data:image/svg+xml,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.5L4 3.5L7 0.5" stroke="%23000000" stroke-linecap="round"/></svg>');
    border: none;
    margin-left: 0.4em;
    vertical-align: 0px;
}

/* ======================================================================================================================== */
/* ============================================================= Hero Section =================================================== */
/* ======================================================================================================================== */

/* The Frosted Glass Card */
.about_hero .content-of-hero,
.hero-section .content-of-hero {
    background: linear-gradient(to bottom, #2B2F3A 2%, transparent 100%);
    border-radius: var(--border-radius-39);
    z-index: 0;
}

.hero-section {
    color: white;
    padding-top: 100px;
    height: 1000px;
}

.hero-section .back {
    object-fit: cover;
    object-position: top;
    z-index: -1;
}

.hero-section .add {
    z-index: 0;
    top: 18% !important;
    object-fit: cover;
    object-position: top;
}

.about_hero .hero-title,
.hero-section .hero-title {
    line-height: 0.9;
    letter-spacing: 1px;
    color: transparent;
    background: var(--gd-text-hero);
    -webkit-background-clip: text;
}

.hero-section .hero-subtitle {
    font-size: var(--text-card);
    margin-top: 1rem;
    opacity: 1.2;
    line-height: 1.2;
    color: white;
}

.about_hero .glass-card,
.hero-section .glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 3rem;
}

.hero-section .hero-footer {
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 3rem;
}

/* Scroll Circle UI */
.hero-section .scroll-indicator {
    position: absolute;
    right: 5%;
    bottom: 0%;
    z-index: 1;
    transition-duration: 1s;
}

.hero-section .scroll-indicator:hover {
    transform: rotate(25deg);
}

.hero-section .scroll-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: url("https://h32.12e.myftpupload.com/wp-content/uploads/2026/03/Group-38664-1.png") center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}

.hero-section .scroll-circle:hover {
    transform: rotate(21deg);
    transition-duration: 0.6s;
    color: white;
}

.hero-section .scroll-text {
    font-size: 20px;
    line-height: 1.2;
}

.hero-section .arrow {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.about_hero .gradient-section,
.hero-section .gradient-section {
    background: linear-gradient(0deg, #3A3642 30%, transparent 100%);
    z-index: 20;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* about section Custom Colors & Fonts */
.about-section {
    background-color: #3A3642;
    color: white;
    padding: 50px 0px 100px 0px;
    border-radius: 0px 0px 50px 50px;
}

.about-section h2 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}


/* Background "AMC" Watermark */
.bg-watermark {
    position: absolute;
    bottom: -20px;
    font-size: 15rem;
    font-weight: 900;
    color: transparent;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    font-family: var(--font-heading);
    font-size: var(--text-magic);
    background: var(--gd-text-magic);
    -webkit-background-clip: text;
}

/* Styling the image to match the proportions */
.second-area .image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.second-area {
    margin-top: 30px !important;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .bg-watermark {
        font-size: 8rem;
    }
}

/* services slider */
.services_Slider.swiper {
    width: 100%;
    height: fit-content;
}

.hs-card .entry-content,
.services_Slider.swiper .content {
    position: absolute;
    background: #0000009e;
    width: 93%;
    padding: 15px;
    bottom: 0;
    z-index: 1;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    left: 50%;
    top: 80%;
    height: max-content;
    transform: translate(-50%, -50%);
}

.services_Slider.swiper .content h3 {
    font-size: 20px !important;
    color: var(--text-light);
    letter-spacing: 1px;
}

.services_Slider.swiper .content .amc-btn {
    padding: 5px;
    font-size: 12px;
    border-radius: 8px;
}

.services_Slider .swiper-slide {
    background: transparent;
    border-radius: 24px;
}

.services_Slider .swiper-slide img {
    display: block;
    height: 357px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid white;
}

.services_Slider .swiper-button-next,
.services_Slider .swiper-button-prev {
    padding: 15px !important;
    background: #086BA9;
    width: 25px;
    height: 25px;
    border-radius: 10rem;
    color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: unset !important;
}

/* why choose card */
.whychoosecard .hero-title {
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
}

.whychoosecard .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
}

.whychoosecard .feature-card {
    border: none;
    border-radius: 30px;
    padding: 1.2rem 1.2rem 2rem 1.2rem;
    transition: all 0.3s ease;
    background-color: #f6f6f6f1;
}

.whychoosecard .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.whychoosecard h5 {
    font-size: var(--text-card);
}

.whychoosecard .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #088AD0, #095289);
    color: white;
}

.whychoosecard .feature-card:hover .icon-circle {
    background-color: white;
}

.whychoosecard .feature-card:hover h5 {
    color: white;
}

.whychoosecard .roof-container {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

/* process slider */
.process-container .section-title {
    font-weight: 700;
    line-height: 1.1;
}

.process-container .process-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.process-container .swiper-slide {
    opacity: 0.5;
}

.process-container .swiper-slide-active {
    opacity: 1;
    height: auto !important;
}

.process-container .process-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    padding: 15px;
    background: #F6F6F6 !important;
    width: 90%;
}

.process-container .gradient-section {
    background: linear-gradient(0deg, #ffffff 0%, transparent 80%);
    z-index: 20;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.process-container .process-image {
    height: 320px;
    object-fit: cover;
    width: 100%;
    border-radius: 25px;
}

.process-container .process-content {
    padding: 25px;
}

.process-container .process-subtitle {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: var(--text-card);
}

.process-container .process-text {
    color: #666;
    line-height: 1.6;
}

.process-container .blue-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.process-container .blue-button:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.process-container .vertical-swiper {
    height: 800px;
    padding-left: 20px;
}

.process-container .swiper-pagination-bullets-dynamic {
    background: #a0a0a0;
    height: 100% !important;
    right: auto !important;
    left: 0px !important;
    top: 0 !important;
    border-radius: 10rem;
}

.process-container .swiper-pagination-bullet {
    top: 0 !important;
    margin: 0 !important;
    background: #000000;
    opacity: 1;
}

.process-container .swiper-pagination-bullet-active {
    top: 0px !important;
    height: 200px;
    border-radius: 10rem;
    margin: 0 !important;
    display: flex !important;
    background: #086BA9;
}

/* start projects */
.start_project {
    background: #3A3642;
    color: white;
    padding: 100px 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.start_project .section-title {
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-light);
}

.start_project .cta-content p {
    line-height: 1.7;
    opacity: 0.9;
}

.start_project .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
}

.start_project .stat-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.start_project .stat-number {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.start_project .stat-label {
    font-size: var(--text-card);
    font-weight: 600;
    color: #cbd5e1;
    margin-top: 8px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.start_project .image-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.start_project .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.start_project .image-container:hover img {
    transform: scale(1.05);
}


/* Gradient section */
.gradient-section h2 {
    font-size: var(--text-magic);
    font-weight: 900;
    line-height: 1;
    background: var(--gd-text-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: -150px;
    text-transform: uppercase;
}

/* gallery section */
.gallery-section .swiper-gallery {
    padding: 30px 0;
}

.gallery-section .gallery-slide {
    padding: 6px;
}

.gallery-section .gallery-card {
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 440px;
}

.gallery-section .gallery-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-section .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 40px;
}

.gallery-section .gallery-card:hover img {
    transform: scale(1.08);
}

/* Progress Bar */
.gallery-section .progress-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-section .progress-bar-custom {
    flex: 1;
    height: 5px;
    background: #e5e7eb;
    border-radius: 10rem;
    overflow: hidden;
}

.gallery-section .progress-fill {
    height: 100%;
    background: #086BA9;
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10rem;
}

.gallery-section .slide-counter {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.gallery-section .slide-counter .swiper-pagination {
    position: relative;
}


.gallery-section .view-all-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.gallery-section .view-all-btn:hover {
    background: #0052a3;
    transform: translateX(5px);
}

/* faq section */
.faq-section .faq-title {
    text-align: center;
    margin-bottom: 30px;
}

.faq-section .faq-item {
    margin-bottom: 12px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .faq-question {
    /* font-family: var(--font-heading); */
    background: #f1f5f9;
    padding: 22px 28px;
    font-size: var(--text-card);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
}

.faq-section .faq-answer {
    background: var(--text-light);
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #475569;
    line-height: 1.7;
    font-size: var(--text-p);
}

.faq-section .faq-answer.show {
    padding: 0px 28px 22px 28px;
    max-height: 300px;
}

.faq-section .faq-toggle svg path {
    font-size: 1.5rem;
    stroke: #011D38;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-toggle svg {
    transform: rotate(270deg);
}

.faq-section .faq-item.active .faq-toggle svg path {
    stroke: #fff;
}

/* Highlighted First Item */
.faq-section .faq-item.active {
    background: var(--secondary-color);
    color: white;
}

.faq-section .faq-item.active .faq-question {
    background: transparent;
    color: white;
}

.faq-section .faq-item.active .faq-answer {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
}

/* service map section */
.service-section .main-title {
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-section .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-bottom: 20px;
}

.service-section .servlink {
    color: #1B1B1B !important;
}

.service-section .service-tag {
    padding: 0px 10px;
    font-size: var(--text-p);
    font-weight: 500;
}

.service-section .service-tag:nth-child(odd) {
    border-right: 1px solid black;
    border-left: 1px solid black;
}

.service-section .service-tag.b-none {
    border-left: none;

}

.service-section .service-tag.b-r-none {
    border-right: none;

}

.service-section .hours-text {
    font-family: var(--font-heading);
    font-size: var(--text-card);
    font-weight: 700;
    color: #095992;
    text-transform: uppercase;
    margin: 40px 0 50px 0;
}

.service-section .map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 503px;
}

.service-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* footer */
.footer-wrapper .footerbottom {
    height: 479px;
    background: linear-gradient(180deg, #AFD7ED 30%, #EBEBEB 80%);
    ;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-top: 200px;
    margin-bottom: -200px;
}

.footer-wrapper .footerbottom .content {
    padding-left: 50px !important;
    z-index: 1;
}

.footer-wrapper .house-image {
    position: absolute;
    right: 0;
    bottom: 0;
}

img.house-image.house-1 {
    z-index: 0;
    right: 0px;
    bottom: 0px;
    height: 633px;
}

.footer-wrapper .footer-title {
    line-height: 1.1;
    color: #1B1B1B;
}

.footer-wrapper .footer-text {
    color: #1B1B1B;
    max-width: 550px;
    margin-top: 0px;
}

/* vetran footer */
.footer-wrapper .mainFooter {
    flex-direction: column;
}

.footer-wrapper .f2 {
    padding-top: 300px;
    padding-bottom: 70px;
    gap: 15px;
    display: flex;
    border-bottom: 1px solid #fff;
}

.footer-wrapper .f1,
.footer-wrapper .f2 {
    margin-left: 15px;
    margin-right: 15px;
    color: #fff;
}

/* mlf */
.footer-wrapper .mlf {
    width: 40%;
}

.footer-wrapper .mlf img {
    max-width: 85%;
    margin-bottom: 40px;
}

.footer-wrapper .mlf p {
    font-size: var(--text-p);
}

.footer-wrapper .mlf h2 {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 22px;
}

/* .quicklinks */
.footer-wrapper .quicklinks {
    gap: 0px;
    width: 15%;
}

.footer-wrapper .contactinfo,
.footer-wrapper .quicklinks {
    display: flex;
    flex-direction: column;
}

.footer-wrapper .contactinfo2 h2,
.footer-wrapper .quicklinks h2 {
    margin-bottom: 25px;
    font-size: var(--text-card);
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-wrapper .quicklinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-wrapper .contactinfo a,
.footer-wrapper .quicklinks ul li a {
    color: #fff;
    text-decoration: none;
    font-size: var(--text-p);
    display: block;
    margin-bottom: 15px;
}

/* contact info  */
.footer-wrapper .contactinfo {
    width: 20%;
}

.footer-wrapper .contactinfo h3 {
    margin-bottom: 25px;
    margin-top: 30px;
    font-size: var(--text-card);
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-wrapper .contactinfo p,
.footer-wrapper .contactinfo2 p,
.footer-wrapper .quicklinks p,
.footer-wrapper .rating-5 .text {
    font-size: var(--text-p);
}

/* social icons */
.footer-wrapper .social-icons {
    display: flex;
    gap: 15px;
}

.footer-wrapper .contactinfo h2 {
    margin-bottom: 25px;
    font-size: var(--text-card);
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-wrapper .contactinfo2 {
    width: 25%;
}

.footer-wrapper .aboutCardText,
.footer-wrapper .contactinfo2,
.footer-wrapper .financeCardText,
.footer-wrapper .financecard {
    flex-direction: column;
    display: flex;
}

.footer-wrapper .contactinfo2 .social-icons {
    transform: translateY(6rem);
}

.footer-wrapper .social-icons {
    display: flex;
    gap: 15px;
}

/* anter tag */
.footer-wrapper .social-icons a {
    background: transparent;
    padding: 0px;
    border: 1px solid white;
    border-radius: 10rem;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-wrapper .social-icons-mob {
    display: none;
}

.footer-wrapper .estimate-btn .arrow,
.footer-wrapper .rcf-card h2,
.footer-wrapper .social-icons-mob h2 {
    font-size: 22px;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol,
ul {
    padding-left: 2rem;
}

.footer-wrapper .icon-footer li {
    list-style: none;
    width: 50px !important;
    padding-left: 5px !important;
}

.footer-wrapper .f3 {
    padding: 50px 15px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.footer-wrapper .f3 h2 {
    text-align: center;
    font-size: var(--text-p);
    font-family: var(--font-content);
    color: var(--text-light);
    text-transform: capitalize;
}

.footer-wrapper .RCF-banner a:hover,
.footer-wrapper .aboutcardSection,
.footer-wrapper .city-S a:hover,
.footer-wrapper .f2,
.footer-wrapper .f3,
.footer-wrapper .f3 h2 a,
.footer-wrapper .sd-repair-banner a:hover {
    color: var(--text-light);
}

.footer-wrapper .contactinfo p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

/* popup */
#popupGallery {
    position: absolute;
    width: 100%;
    background: #000000ad;
    top: 0;
    z-index: 999;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    flex-direction: column;
}

#popupGallery img {
    height: 100%;
}

#popupGallery .header {
    cursor: pointer;
}

/* about hero section */
section.about_hero {
    height: 900px;
}

.about_hero img {
    object-fit: cover;
    object-position: top;
    z-index: -1;
}

.about_hero .content-of-hero {
    z-index: 0;
    /* position: absolute; */
    margin-top: 15% !important;
}

.about_hero p {
    color: white;
    line-height: 1.2;
}

/* about section */
.about-section-for-about {
    background-color: #3A3642;
    color: white;
    padding: 50px 0px 100px 0px;
    border-radius: 0px 0px 50px 50px;
}

.about-section-for-about .left-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.about-section-for-about .left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-section-for-about .left-image:hover img {
    transform: scale(1.05);
}

.about-section-for-about .section-title {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 35px;
}

.about-section-for-about .about-text p {
    margin-bottom: 1.4rem;
}

/* repeated Hero section */
.repeated-hero {
    background-size: cover !important;
    background-position: center !important;
    height: 800px;
}

.repeated-hero .banner-grad {
    background: linear-gradient(to bottom, #2B2F3A 0%, #00000045 75%);
    backdrop-filter: blur(5px);
    padding: 60px;
    border-radius: 50px;
}

/* contact box */
section.contactBox {
    height: fit-content;
    overflow: hidden;
}

section.contactBox .container {
    border-radius: 39px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    padding: 20px 30px;
}

/* contact form 7 */
/* Contact Form 7 - Modern Style */
.wpcf7 {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
}

.wpcf7-form {
    margin: 0;
}

.cf7-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cf7-column {
    flex: 1;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    outline: none;
}

.wpcf7 textarea {
    resize: none;
    height: 230px;
}

/* Labels */
.wpcf7 label,
.wpcf7-form p {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

/* Submit Button */
.btn-outline-primary,
.wpcf7 input[type=submit] {
    border-color: #000 !important;
    border: none;
    color: white !important;
    background: var(--secondary-color);
    width: fit-content;
    border-radius: 15px;
    padding: 15px 30px;
}

.btn-outline-primary,
.wpcf7 input[type=submit]:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.boxCode {
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* blog card  */
.single-post .hs-card.col-lg-4,
.hs-bloger .hs-card.col-lg-4 {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.single-post .hs-card article,
.hs-bloger .hs-card article {
    height: 100%;
}

.single-post .hs-card article img,
.hs-bloger .hs-card article img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-card .entry-content {
    top: 75%;
}

.hs-card .entry-content h3,
.hs-card .entry-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs-card .entry-content h3 {
    -webkit-line-clamp: 1;
    font-weight: 200;
    font-size: var(--text-card);
}

.hs-card .entry-content a.btn:focus-visible,
.hs-card .entry-content a.btn:focus,
.hs-card .entry-content a.btn {
    background: transparent;
    border: 1px solid white !important;
    padding: 15px 20px;
    border-radius: 15px;
}

.blog nav[aria-labelledby="posts-nav-label"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    margin-top: 30px;
}

.blog nav[aria-labelledby="posts-nav-label"] .pagination {
    margin: 0;
}

.page-link {
    color: #0969A6;
}

.blog nav[aria-labelledby="posts-nav-label"] .active>.page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #0969A6;
    border-color: #0969A6;
}


@media (min-width: 992px) {

    .single-post .hs-card.col-lg-4,
    .hs-bloger .hs-card.col-lg-4 {
        width: 31% !important;
        height: 533px;
    }
}

.blog-inner-first h1 {
    font-size: var(--text-md);
}

.hs-blog-inner a {
    color: var(--map-top-text);
    text-decoration: underline;
    font-weight: 700;
}

.hs-blog-inner .entry-content h3 {
    font-size: var(--text-card);
}

.hs-blog-inner .entry-content h2 {
    font-size: var(--blog-card-h2);
}


/* Developer 2 and 3 */

.banner-grad {
    background: linear-gradient(to bottom, #2B2F3A 2%, #00000045 100%);
    backdrop-filter: blur(4.5px);
    padding: 60px;
    border-radius: 50px;
}



.expert-concrete-driveway {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 130px 0px 130px 0px;
    border-radius: 0px 0px 50px 50px;
}


.expert-concrete-driveway .left-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.expert-concrete-driveway .left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-concrete-driveway .left-image:hover img {
    transform: scale(1.05);
}

.expert-concrete-driveway .section-title {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 35px;
}

.expert-concrete-driveway .about-text p {
    margin-bottom: 1.4rem;
}

.professional-concrete-driveway {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 50px 0px 100px 0px;
    border-radius: 0px 0px 50px 50px;
}


.professional-concrete-driveway .left-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.professional-concrete-driveway .left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.professional-concrete-driveway .left-image:hover img {
    transform: scale(1.05);
}

.professional-concrete-driveway .section-title {
    width: 100%;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 35px;
}

.professional-concrete-driveway .about-text p {
    margin-bottom: 1.4rem;
}


.repair-solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}


.repair-solution-img {
    height: 500px;
    width: 100%;
}



/* ---------------------------------------------------------why choose us sectoin--------------------------- */


.why-choose-section h2 {
    color: var(--text-dark);
    line-height: 100%;
}

.section-desc {

    font-size: var(--text-p);
    color: var(--text-dark);
}

.amc-feature-card {
    background-color: var(--card-backs);
    border-radius: var(--border-radius-30);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.amc-feature-card h3 {
    font-size: 36px;
    color: var(--text-dark);
}

.amc-feature-card p {

    color: var(--text-dark);
    margin-bottom: 0;
}

.amc-icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color) !important;
    /* color: var(--text-light); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}


.amc-feature-card:hover {
    background: var(--secondary-color);
    transform: translateY(-10px);
}

.amc-feature-card:hover h3,
.amc-feature-card:hover p {
    color: var(--text-light);
}

.amc-feature-card:hover .amc-icon-circle {
    color: #086BA9;
}

.amc-feature-card:hover .amc-icon-circle svg path {
    fill: white;
}



/* -------------------------------------------------------------SERVICES-PAGE-------------------------------- */
/* -------------------------------------------------------------SERVICES-SECTION------------------------------ */

.rounded-30 {
    border-radius: var(--border-radius-30);
}

.expert-services-section {
    background-color: #ffffff;
}


.big-number {
    font-family: var(--font-heading);
    font-size: var(--text-magic);
    line-height: 1;
    background: var(--gd-text-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    user-select: none;
}


.big-number.left,
.big-number.right {
    text-align: center;
}




.service-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* height: 550px;  */
}


.service-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-overlay-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--blur-color);
    backdrop-filter: var(--blur-value);
    border-radius: var(--border-radius-20);
    transition: all 0.3s ease;
}

.card-overlay-content h4 {
    font-size: var(--text-card);
    margin: 0;
    line-height: 1.1;
}


.btn-outline-white {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    font-size: var(--text-btn);
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000000;
}



/* ----------------------------------------------------GALLERY-PAGE----------------------------- */

/* -----------------------------------------------------GALLERY-HERO-SECTION---------------------- */
/* .gallery-hero {
    background-image: url(./Images/gallery-hero.webp);
    background-size: cover;
    background-position: center;
    height: 670px;
} */

.gallery-hero h1 {
    font-size: 86px;
}

.gallery-hero .banner-grad {
    padding: 100px 0px;

}

/* -------------------------------------------------------------GALLERY-SECTION----------------------------- */



.gallery-section {
    background-color: #ffffff;
}

.rounded-20 {
    border-radius: var(--border-radius-20);
}


.gallery-ghost-text {
    font-family: var(--font-heading);
    font-size: 300px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    background: var(--gd-text-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 1;
    width: 100%;
    letter-spacing: 15px;
}

.gallery-title {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}


.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-20);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    /* height: 410px;  */
    object-fit: cover;
    transition: scale 0.5s ease;
}

.gallery-item:hover img {
    scale: 1.1;
}


.btn-secondary-gd {
    background: linear-gradient(to right, #088AD0, #095289);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-content);
    font-size: var(--text-menu);
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-secondary-gd:hover {
    opacity: 0.9;
    color: var(--text-light);
}

.view-all-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    text-decoration: none;

}

.gallery-img {
    object-fit: cover;
    transition: transform 0.3s ease;
}


.gallery-item:hover .gallery-img {
    transform: scale(1.03);
}


/* ----------------------------------------------------------TESTIMONIALS-PAGE------------------------------------ */

.testimonial-hero {
    background-image: url(./Images/testimonial-hero.webp);
    background-size: cover;
    background-position: center;
    height: 670px;
}

.testimonial-hero h1 {
    font-size: 86px;
}

.testimonial-hero .banner-grad {
    padding: 120px 0px;

}


/* ----------------------------------------------------------FAQ-PAGE------------------------------------ */

.FAQs-hero {
    background-image: url(./Images/faqs-hero.webp);
    background-size: cover;
    background-position: center;
    height: 670px;
}

.FAQs-hero h1 {
    font-size: 86px;
}

.FAQs-hero .banner-grad {
    padding: 120px 0px;

}



/* ----------------------------------------------------------SERVICES-AREAS-PAGE------------------------------------ */

.Services-areas-hero {
    background-image: url(/Images/services-areas-hero.webp);
    background-size: cover;
    background-position: center;
    height: 670px;
}

.Services-areas-hero h1 {
    font-size: 86px;
}

.Services-areas-hero .banner-grad {
    padding: 120px 0px;

}


.Services-areas-hero .banner-grad {
    background: linear-gradient(to bottom, #2B2F3A 2%, #00000045 80%);
    backdrop-filter: blur(1.5px);
    border-radius: 39px;
}

.service-area-map-section h3 {
    font-size: 36px;
}


/* ------------------------------------------CITIES-SERVED-SECTION------------------------------------ */


.cities-served-section {
    background-color: #ffffff;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -1px;
}


.city-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-20);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
}

.city-name {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 30PX;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}


/* ----------------------------------------------SERVICE AREA INNER PAGE------------------------ */

/* ----------------------------------------------SERVICES-AREAS-HERO------------------------ */
.Services-area-inner-hero {
    background-image: url(/Images/service-area-inner-hero.webp);
    background-size: cover;
    background-position: center;
    height: 670px;
}

.Services-area-inner-hero h1 {
    font-size: 86px;
}

.Services-area-inner-hero .banner-grad {
    padding: 100px 0px;

}


.Services-area-inner-hero .banner-grad {
    background: linear-gradient(to bottom, #2B2F3A 2%, #00000045 80%);
    backdrop-filter: blur(1.5px);
    border-radius: 39px;
}



/* ---------------------------------------------------service-area-intro------------------------ */


.introduction-section .intro-image-wrapper {
    width: 100%;
}


/* ---------------------------------------------------service-area-inner-services------------------------ */

.s-a-in-services {
    background-color: var(--primary-color);
}


.s-a-in-services .swiper {
    width: 100%;
    height: 100%;
}

.s-a-in-services .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-a-in-services .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.s-a-in-services .custom-service-card {
    position: relative;
    width: 100%;
    aspect-ratio: 427 / 533;
    max-width: 427px;
    border-radius: var(--border-radius-30);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.s-a-in-services .custom-service-card:hover {
    transform: translateY(-5px);
}

.s-a-in-services .service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.s-a-in-services .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.60) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
}


.s-a-in-services .custom-service-card .text-box {
    background-color: rgba(27, 27, 27, 0.8);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: var(--text-card);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    padding: 12px 20px;
}




/* ---------------------------------------------------BLOG-SECTION---------------------------------- */


.blog-section .service-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width: 427px; */
    aspect-ratio: 427 / 533;
}


.blog-section.service-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-section .card-overlay-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--blur-color);
    backdrop-filter: var(--blur-value);
    border-radius: var(--border-radius-20);
    transition: all 0.3s ease;
}

.blog-section .card-overlay-content h4 {
    font-size: var(--text-card);
    margin: 0;
    line-height: 1.1;
}


.blog-section .btn-outline-white {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    font-size: var(--text-btn);
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}

.blog-section .btn-outline-white:hover {
    background: #ffffff;
    color: #000000;
}


.hero-banner-s-inner h1 {
    font-size: 86px;
}


/* gallery image */



/* Modal/Popup Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-modal-close:hover {
    color: #e67e22;
}

.gallery-modal-caption {
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    margin-top: 15px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-modal-content {
        width: 95%;
    }

    .gallery-modal-close {
        top: -30px;
        right: 10px;
        font-size: 30px;
    }

    .gallery-modal-caption {
        font-size: 14px;
    }
}


.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}


.home-h{
    font-size: 86px;
}

.hero-subtitle{
    font-size: 20px !important;
}

.response-time-text{
    font-size: 12px;
}