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


/*==================================================
    ROOT
==================================================*/

:root {

    --primary: #bd1717;
    --dark-blue: #002653;

    --white: #ffffff;
    --black: #111111;

    --text: #5d6472;
    --border: #e8ebef;

    --transition: .35s ease;

    --shadow: 0 15px 45px rgba(0, 0, 0, .12);

}


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

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Montserrat', sans-serif;

    background: var(--white);

    color: var(--black);

    overflow-x: hidden;

}

h1 {

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

}


h2 {

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

}


h3 {

    font-size: clamp(1.5rem, 3vw, 2.5rem);

}


h4 {

    font-size: clamp(1.25rem, 2.5vw, 2rem);

}


h5 {

    font-size: clamp(1.1rem, 2vw, 1.5rem);

}


h6 {

    font-size: clamp(1rem, 1.5vw, 1.25rem);

}


p {

    font-size: 15px;

    font-weight: 400;

    line-height: 1.4;

    color: var(--text);

}

button {
    font-size: 14px;
}

a {
    font-size: 14px;
}

img {

    width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    border: 0;

    cursor: pointer;

    font-family: inherit;

}


ul {

    list-style: none;

}


/*==================================================
    CONTAINER
==================================================*/

.container {

    width: min(1320px, 92%);

    margin-left: auto;

    margin-right: auto;

}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    z-index: 1000;

    /* overflow: hidden; */

    background: #03101f;

    box-shadow: 0 0 0 rgba(0, 0, 0, 0);

    transform: translateY(0);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/*==================================================
    HEADER SCROLLED STATE
==================================================*/

.site-header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, .25);
}


/*==================================================
    HEADER HIDDEN ON SCROLL DOWN
==================================================*/

.site-header.header-hidden {
    transform: translateY(-100%);
}


/*==================================================*
* NAVBAR BACKGROUND IMAGE
*==================================================*/

.site-header .header-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}


/*==================================================*
* DARK OVERLAY
*==================================================*/

.site-header .header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 10, 23, .78);
    z-index: -1;
}


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

.site-header .container {
    height: 100%;
}

.site-header .header-inner {
    height: 100%;
    width: 100%;
}


/*==================================================*
* LOGO
*==================================================*/

.header-logo {
    flex: 0 0 auto;
    width: 180px;
    /* height: 70px; */
    /* background: var(--white); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}


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

.main-navigation {
    margin-left: auto;
    margin-right: 28px;
}

.navigation-list {
    margin: 0;
    padding: 0;
}

.navigation-item {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.navigation-list>.navigation-item>a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;

    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .1px;
    text-transform: uppercase;

    white-space: nowrap;

    transition: var(--transition);
}


/*==================================================*
* NAV HOVER
*==================================================*/

.navigation-list>.navigation-item>a:hover {
    color: #d20418;
}



/*==================================================*
* ACTIVE NAV
*==================================================*/

.navigation-list>.navigation-item.active>a {
    color: var(--white);
}


.navigation-list>.navigation-item.active>a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 18px;

    width: 32px;
    height: 3px;

    margin: auto;

    background: #d20418;

    border-radius: 5px;
}



/*==================================================*
* QUOTE BUTTON
*==================================================*/

.header-action {
    flex: 0 0 auto;
}

.quote-button {
    min-width: 123px;
    height: 38px;

    padding: 0 9px 0 16px;

    justify-content: space-between;

    gap: 10px;

    background: #d20418;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    border-radius: 3px;

    transition: var(--transition);
}

.quote-button h5 {
    font-size: 14px;
    font-weight: 500;
}


.quote-button:hover {
    background: #e96d00;
    color: var(--white);
    transform: translateY(-1px);
}


/*==================================================*
* QUOTE ICON
*==================================================*/

.quote-icon {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    font-size: 10px;

    transition: var(--transition);
}

.quote-button:hover .quote-icon {
    transform: translateX(2px);
}


/*==================================================*
* MOBILE MENU TOGGLE
*==================================================*/

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition: var(--transition);
}


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

.mobile-sidebar {
    position: fixed;

    top: 0;
    right: -100%;

    width: min(360px, 88%);

    height: 100vh;

    padding: 20px;

    background: #061426;

    z-index: 2001;

    overflow-y: auto;

    transition: right .4s ease;
}


/* OPEN STATE */

.mobile-sidebar.active {
    right: 0;
}


/*==================================================*
* MOBILE SIDEBAR HEADER
*==================================================*/

.mobile-sidebar-head {
    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-logo {
    width: 75px;
    height: 50px;

    background: var(--white);
}

.mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}


.mobile-sidebar-close {
    width: 38px;
    height: 38px;

    display: inline-flex;

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

    background: #d20418;

    color: var(--white);

    border-radius: 3px;

    font-size: 18px;
}


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

.mobile-navigation {
    padding-top: 20px;
}

.mobile-navigation ul {
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-navigation a {
    display: flex;

    align-items: center;

    min-height: 52px;

    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .2px;

    text-transform: uppercase;

    transition: var(--transition);
}

.mobile-navigation li.active a,
.mobile-navigation a:hover {
    color: #d20418;
}


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

.mobile-sidebar-action {
    padding-top: 30px;
}

.mobile-sidebar-action .quote-button {
    width: 100%;
}


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

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .65);

    z-index: 2000;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


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

.services-menu-item {
    position: relative;
}


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

.services-menu-link {
    gap: 7px;
}

.services-arrow {
    font-size: 9px;
    margin-top: 1px;
    transition: transform .35s ease;
}


/* Rotate arrow on hover */

.services-menu-item:hover .services-arrow {
    transform: rotate(180deg);
}


/*==================================================
    DROPDOWN WRAPPER
==================================================*/

.services-dropdown {
    position: absolute;

    top: 80px;
    left: 50%;

    width: 850px;

    transform: translateX(-50%) translateY(15px);

    background: #061426;

    border-top: 3px solid #d20418;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;

    z-index: 3000;

    /* IMPORTANT */
    height: auto;
    min-height: 0;
    overflow: visible;
}



/*==================================================
    SHOW DROPDOWN
==================================================*/

.services-menu-item:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/*==================================================
    DROPDOWN INNER
==================================================*/
.services-dropdown-inner {
    display: grid;

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

    gap: 0;

    padding: 28px 25px;

    height: auto;
    min-height: 0;

    align-items: start;
}



/*==================================================
    SERVICE CATEGORY
==================================================*/

.service-category {
    padding: 0 18px;

    border-right: 1px solid rgba(255, 255, 255, .10);
}

.service-category:first-child {
    padding-left: 0;
}

.service-category:last-child {
    padding-right: 0;

    border-right: 0;
}


/*==================================================
    CATEGORY TITLE
==================================================*/

.service-category-title {
    min-height: 45px;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 8px;

    height: auto !important;

    color: #ffffff;

    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1.35;

    text-transform: uppercase;

    transition: .3s ease;

}

.service-category-title i {
    margin-top: 2px;

    color: #d20418;

    font-size: 10px;

    transition: .3s ease;
}


/* Category hover */

.service-category-title:hover {
    color: #d20418 !important;
}

.service-category-title:hover i {
    transform: translateX(3px);
}


/*==================================================
    SUB MENU
==================================================*/
.service-submenu {
    display: block;

    margin: 8px 0 0;
    padding: 0;

    height: auto !important;
}

.service-submenu li {
    display: block;

    margin-bottom: 8px;

    height: auto !important;
}

.service-submenu li:last-child {
    margin-bottom: 0;
}

.service-submenu a {
    display: block;

    width: 100%;
    height: auto !important;
    min-height: 0 !important;

    color: rgba(255, 255, 255, .68) !important;

    font-size: 14px !important;
    font-weight: 500 !important;

    line-height: 1.45;

    text-transform: none;

    white-space: normal;

    transition: .3s ease;
    text-align: start;
}


.service-submenu a:hover {
    color: #ffffff !important;

    /* padding-left: 2px; */
}

.service-submenu a:hover::before {
    opacity: 1;

    transform: translateX(0);
}


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

@media (max-width: 1199px) {

    .services-dropdown {
        width: 780px;
    }

    .services-dropdown-inner {
        padding: 25px 18px;
    }

    .service-category {
        padding: 0 12px;
    }

    .service-category-title {
        font-size: 11px !important;
    }

    .service-submenu a {
        font-size: 10px !important;
    }

}

/*==================================================
    MOBILE SERVICES MENU
==================================================*/

.mobile-services-item {
    padding: 0;
}


/*==================================================
    MOBILE SERVICES MAIN LINK
==================================================*/

.mobile-services-link {
    min-height: 52px;

    display: flex;

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

/*==================================================
    MOBILE SERVICES MAIN TOGGLE
==================================================*/

.mobile-services-main-toggle {
    flex: 1;

    width: 100%;
    min-height: 52px;

    display: flex;

    align-items: center;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--white);

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .2px;

    text-transform: uppercase;

    text-align: left;

    cursor: pointer;

    transition: var(--transition);
}

.mobile-services-main-toggle:hover {
    color: #d20418;
}


.mobile-services-item.open .mobile-services-main-toggle {
    color: #d20418;
}



/*==================================================
    MOBILE SERVICES TOGGLE
==================================================*/

.mobile-services-toggle {
    width: 45px;
    height: 45px;

    display: inline-flex;

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

    background: transparent;

    color: rgba(255, 255, 255, .75);

    font-size: 11px;

    transition: .3s ease;
}

.mobile-services-toggle:hover {
    color: #d20418;
}

.mobile-services-item.open>.mobile-services-link .mobile-services-toggle {
    color: #d20418;
}

.mobile-services-item.open>.mobile-services-link .mobile-services-toggle i {
    transform: rotate(180deg);
}


/*==================================================
    MOBILE SERVICES SUBMENU
==================================================*/

.mobile-services-submenu {
    display: none;

    margin: 0;
    padding: 0 0 8px 12px;

    border-left: 1px solid rgba(210, 4, 24, .35);
}

.mobile-services-item.open>.mobile-services-submenu {
    display: block;
}


/*==================================================
    MOBILE SERVICE CATEGORY
==================================================*/

.mobile-service-category {
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
}

.mobile-service-category:last-child {
    border-bottom: 0 !important;
}


/*==================================================
    MOBILE CATEGORY TOGGLE
==================================================*/

.mobile-category-toggle {
    width: 100%;
    min-height: 45px;

    display: flex;

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

    padding: 0 5px 0 10px;

    background: transparent;

    color: rgba(255, 255, 255, .9);

    text-align: left;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .2px;

    text-transform: uppercase;

    transition: .3s ease;
}

.mobile-category-toggle:hover {
    color: #d20418;
}

.mobile-category-toggle i {
    font-size: 9px;

    transition: .3s ease;
}

.mobile-service-category.open .mobile-category-toggle {
    color: #d20418;
}

.mobile-service-category.open .mobile-category-toggle i {
    transform: rotate(180deg);
}


/*==================================================
    MOBILE CATEGORY SUBMENU
==================================================*/

.mobile-service-category>ul {
    display: none;

    margin: 0;
    padding: 0 0 8px 10px;
}

.mobile-service-category.open>ul {
    display: block;
}


.mobile-service-category>ul li {
    border: 0 !important;
}


.mobile-service-category>ul a {
    min-height: 36px;

    padding: 7px 5px;

    color: rgba(255, 255, 255, .62);

    font-size: 14px;

    font-weight: 500;

    text-transform: none;
}


.mobile-service-category>ul a::before {
    content: "—";

    margin-right: 6px;

    color: #d20418;

    opacity: .8;
}


.mobile-service-category>ul a:hover {
    color: #ffffff;
}


/*==================================================
    MOBILE SERVICE RESPONSIVE
==================================================*/

@media (min-width: 992px) {

    .mobile-services-item {
        display: none;
    }

}



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

@media (max-width: 1199px) {

    .main-navigation {
        margin-right: 20px;
    }

    .navigation-list {
        gap: 20px !important;
    }

    .navigation-item a {
        font-size: 13px;
    }

    .quote-button {
        min-width: 118px;
    }

}


@media (max-width: 991px) {


    .main-navigation,
    .header-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* 
    .header-logo {
        width: 130px;
      
    } */

}


@media (max-width: 576px) {

    .site-header {
        height: 70px;
    }

    .hero-section {
        margin-top: 70px;
    }

    .header-logo {
        width: 135px;
        /* height: 48px; */
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .mobile-sidebar {
        width: min(330px, 90%);
        padding: 18px;
    }

}


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

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #031426;
    margin-top: 100px;
}


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

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}


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

.hero-slide-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

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

    z-index: 1;

    transform: scale(1.02);
    transition: transform 7s ease;
}


/*==================================================
    IMAGE ZOOM
==================================================*/

.hero-slider .slick-current .hero-slide-image {
    transform: scale(1.08);
}


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

.hero-slide-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(90deg,
            rgba(2, 16, 35, .97) 0%,
            rgba(2, 16, 35, .90) 28%,
            rgba(2, 16, 35, .58) 53%,
            rgba(2, 16, 35, .12) 78%,
            rgba(2, 16, 35, .05) 100%);
}


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

.hero-slide .container {
    position: relative;

    height: 100%;

    z-index: 3;
}


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

.hero-content {
    position: absolute;

    top: 50%;
    left: 0;

    transform: translateY(-50%);

    width: min(650px, 55%);

    padding-top: 10px;
}


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

.hero-content .hero-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    color: #d20418;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


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

.hero-content h1 {
    margin: 0;

    color: var(--white);

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(42px, 4.6vw, 72px);
    font-weight: 800;

    line-height: .98;
    letter-spacing: -1.8px;

    text-transform: uppercase;
}


/*==================================================
    ORANGE TITLE TEXT
==================================================*/

.hero-content h1 span {
    color: #d20418;
}


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

.hero-line {
    width: 38px;
    height: 3px;

    margin: 16px 0 12px;

    background: #d20418;

    border-radius: 10px;
}


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

.hero-content p {
    max-width: 500px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, .88);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.7;
}


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

.hero-actions {
    flex-wrap: wrap;
}


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

.hero-btn {
    min-width: 145px;
    height: 48px;

    padding: 0 8px 0 18px;

    justify-content: space-between;

    gap: 18px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: .3px;

    text-transform: uppercase;

    transition: var(--transition);
}


/*==================================================
    PRIMARY BUTTON
==================================================*/

.hero-btn-primary {
    background: #d20418;
    color: var(--white);
}

.hero-btn-primary:hover {
    background: #111111;
    color: var(--white);

    transform: translateY(-2px);
}


/*==================================================
    OUTLINE BUTTON
==================================================*/

.hero-btn-outline {
    min-width: 138px;

    border: 1px solid rgba(255, 255, 255, .45);

    background: rgba(2, 16, 35, .25);

    color: var(--white);
}

.hero-btn-outline:hover {
    border-color: #d20418;

    background: #d20418;

    color: var(--white);

    transform: translateY(-2px);
}


/*==================================================
    HERO BUTTON ICON
==================================================*/

.hero-btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .65);

    border-radius: 50%;

    font-size: 10px;

    transition: var(--transition);
}

.hero-btn:hover .hero-btn-icon {
    transform: translateX(2px);

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


/*==================================================
    HERO SLIDER CONTROLS
==================================================*/

.hero-slider-controls {
    position: absolute;

    right: max(4%, calc((100% - 1320px) / 2));
    bottom: 35px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;
}


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

.hero-slider-controls button {
    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid rgba(255, 255, 255, .4);

    background: rgba(3, 20, 38, .55);

    color: var(--white);

    border-radius: 50%;

    font-size: 12px;

    transition: var(--transition);
}

.hero-slider-controls button:hover {
    border-color: #d20418;

    background: #d20418;

    color: var(--white);
}


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

.hero-counter {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;
}


.hero-current {
    color: #d20418;
}


.hero-counter-line {
    width: 25px;
    height: 1px;

    background: rgba(255, 255, 255, .45);
}


.hero-total {
    color: rgba(255, 255, 255, .7);
}


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

.hero-slider .slick-slide {
    outline: none;
}

.hero-slider .slick-slide>div {
    height: 100%;
}


/* Hide default Slick arrows */

.hero-slider .slick-arrow {
    display: none !important;
}


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

@media (max-width: 1199px) {

    .hero-section,
    .hero-slide {
        height: 620px;
    }

    .hero-content {
        width: min(600px, 58%);
    }

    .hero-content h1 {
        font-size: clamp(40px, 5vw, 60px);
    }

}


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

@media (max-width: 991px) {

    .hero-section,
    .hero-slide {
        height: 600px;
    }

    .hero-content {
        width: min(600px, 68%);
    }

    .hero-content h1 {
        font-size: clamp(38px, 6vw, 56px);
    }

    .hero-slide-overlay {
        background:
            linear-gradient(90deg,
                rgba(2, 16, 35, .96) 0%,
                rgba(2, 16, 35, .82) 55%,
                rgba(2, 16, 35, .35) 100%);
    }

}


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

@media (max-width: 767px) {

    .hero-section,
    .hero-slide {
        height: 650px;
    }

    .hero-section {
        margin-top: 70px;
    }

    .hero-slide-image {
        object-position: 65% center;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(90deg,
                rgba(2, 16, 35, .96) 0%,
                rgba(2, 16, 35, .85) 70%,
                rgba(2, 16, 35, .55) 100%);
    }


    .hero-content {
        left: 0;

        width: 100%;

        padding-right: 15px;
    }

    .hero-content .hero-subtitle {
        font-size: 15px;

        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 9vw, 48px);

        line-height: 1;

        letter-spacing: -1px;
    }

    .hero-content p {
        max-width: 480px;

        font-size: 15px;

        line-height: 1.65;
    }

    .hero-slider-controls {
        right: 4%;
        bottom: 25px;
    }

}


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

@media (max-width: 576px) {

    .hero-section,
    .hero-slide {
        height: 520px;
    }

    .hero-content {
        top: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }


    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    /* .hero-content p {
        margin-bottom: 20px;

        font-size: 12px;
    } */

    .hero-actions {
        gap: 10px !important;
    }

    .hero-btn {
        min-width: 135px;
        height: 44px;

        padding-left: 14px;

        gap: 10px;

        font-size: 13px;
    }

    .hero-btn-icon {
        width: 25px;
        height: 25px;

        flex-basis: 25px;
    }

    .hero-slider-controls {
        right: auto;
        left: 4%;

        bottom: 20px;
    }

}

/*==================================================
    TRUSTED SECURITY SECTION
==================================================*/

.trusted-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/*==================================================
    TRUSTED WRAPPER
==================================================*/

.trusted-wrapper {

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

    min-height: 96px;

    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 10px;

    background:
        linear-gradient(90deg,
            rgba(2, 16, 35, .98),
            rgba(3, 22, 43, .94));

    box-shadow:
        inset 0 0 30px rgba(0, 78, 150, .08);
}


/*==================================================
    TRUSTED ITEM
==================================================*/

.trusted-item {

    position: relative;

    min-height: 72px;

    padding: 10px 18px;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* Vertical separator */

.trusted-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 12px;

    right: 0;

    width: 1px;

    height: calc(100% - 24px);

    background: rgba(255, 255, 255, .20);
}


/*==================================================
    TRUSTED ICON
==================================================*/

.trusted-item-icon {

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    color: #008cff;

    font-size: 25px;

    transition:
        color .3s ease,
        transform .3s ease;

    filter:
        drop-shadow(0 0 6px rgba(0, 140, 255, .18));
}


/*==================================================
    TRUSTED CONTENT
==================================================*/

.trusted-item-content {

    min-width: 0;
}


/*
    Parent class diye text style kora hoyeche.
    span-er kono custom class deya hoyni.
*/

.trusted-item-content span {

    display: block;

    color: var(--color-white);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.35;

    letter-spacing: .1px;
}


/*==================================================
    HOVER
==================================================*/

.trusted-item:hover {

    background:
        rgba(0, 140, 255, .04);
}


.trusted-item:hover .trusted-item-icon {

    color: #19a0ff;

    transform: translateY(-2px);
}


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

@media (max-width: 1199px) {

    .trusted-wrapper {

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

        padding: 8px 10px;

        min-height: auto;
    }


    .trusted-item {

        min-height: 72px;

        padding: 10px 16px;
    }


    /*
        3 column layout e
        prottek row-er last item separator remove
    */

    .trusted-item:nth-child(3)::after,
    .trusted-item:nth-child(6)::after {

        display: none;
    }


    /*
        First row / second row separator
    */

    .trusted-item:nth-child(1),
    .trusted-item:nth-child(2),
    .trusted-item:nth-child(3) {

        border-bottom:
            1px solid rgba(255, 255, 255, .16);
    }


    .trusted-item:nth-child(4),
    .trusted-item:nth-child(5),
    .trusted-item:nth-child(6) {

        padding-top: 16px;
    }


    .trusted-item-icon {

        flex-basis: 40px;

        width: 40px;

        height: 40px;

        font-size: 24px;
    }


    .trusted-item-content span {

        font-size: 12px;
    }

}


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

@media (max-width: 991px) {

    .trusted-section {

        padding-top: 18px;

        padding-bottom: 18px;
    }


    .trusted-wrapper {

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

        padding: 10px;
    }


    /*
        2 column layout
    */

    .trusted-item:nth-child(3)::after {

        display: block;
    }


    .trusted-item:nth-child(2)::after,
    .trusted-item:nth-child(4)::after,
    .trusted-item:nth-child(6)::after {

        display: none;
    }


    /*
        Row separators
    */

    .trusted-item:nth-child(1),
    .trusted-item:nth-child(2),
    .trusted-item:nth-child(3),
    .trusted-item:nth-child(4) {

        border-bottom:
            1px solid rgba(255, 255, 255, .16);
    }


    .trusted-item:nth-child(5),
    .trusted-item:nth-child(6) {

        padding-top: 16px;
    }


    .trusted-item {

        min-height: 70px;

        padding: 10px 18px;
    }


    .trusted-item-icon {

        flex-basis: 42px;

        width: 42px;

        height: 42px;

        font-size: 25px;
    }


    .trusted-item-content span {

        font-size: 13px;
    }

}


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

@media (max-width: 767px) {

    .trusted-wrapper {

        grid-template-columns: 1fr;

        padding: 8px 18px;
    }


    /*
        Mobile e vertical separator
        completely remove
    */

    .trusted-item::after {

        display: none !important;
    }


    .trusted-item {

        min-height: 68px;

        padding: 11px 5px;

        border-bottom:
            1px solid rgba(255, 255, 255, .14);
    }


    .trusted-item:nth-child(1),
    .trusted-item:nth-child(2),
    .trusted-item:nth-child(3),
    .trusted-item:nth-child(4) {

        border-bottom:
            1px solid rgba(255, 255, 255, .14);
    }


    .trusted-item:nth-child(5) {

        border-bottom:
            1px solid rgba(255, 255, 255, .14);
    }


    .trusted-item:last-child {

        border-bottom: 0;
    }


    .trusted-item-icon {

        flex-basis: 42px;

        width: 42px;

        height: 42px;

        font-size: 24px;
    }


    .trusted-item-content span {

        font-size: 13px;

        line-height: 1.4;
    }

}


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

@media (max-width: 576px) {

    .trusted-section {

        padding-top: 14px;

        padding-bottom: 14px;
    }


    .trusted-wrapper {

        padding: 6px 14px;

        border-radius: 8px;
    }


    .trusted-item {

        min-height: 64px;

        padding: 10px 3px;

        gap: 12px !important;
    }


    .trusted-item-icon {

        flex-basis: 38px;

        width: 38px;

        height: 38px;

        font-size: 22px;
    }


    .trusted-item-content span {

        font-size: 12px;
    }

}


/*==================================================
    WHAT WE OFFER SECTION
==================================================*/

.offer-section {
    position: relative;
    background: #ffffff;
}


/*==================================================
    OFFER HEADING
==================================================*/

.offer-heading {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.offer-heading h2 {
    margin: 0;
    color: #d20418;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: lowercase;
}

.offer-heading p {
    max-width: 1000px;
    margin: 18px auto 0;
    color: #363b49;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

/*==================================================
    OFFER SLIDER WRAPPER
==================================================*/

.offer-slider-wrap {
    width: 92%;
    margin: 30px auto 0;
}


/*==================================================
    SLICK SLIDER
==================================================*/

.offer-slider {
    width: 100%;
    overflow: hidden;
}

.offer-slider .slick-list {
    overflow: hidden;
    padding: 0 !important;
}

.offer-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.offer-slider .slick-slide {
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.offer-slider .slick-slide>div {
    height: 100%;
}

/*==================================================
    OFFER CARD
==================================================*/

.offer-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4e5e8;
    border-radius: 5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}


/*==================================================
    CARD IMAGE
==================================================*/

.offer-card-image {
    width: 100%;
    height: 286px;
    /* overflow: hidden; */
}

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


/*==================================================
    VERTICAL CARD LABEL
==================================================*/

.offer-card-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 100%;
    background: #002653;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.offer-card-label span {
    display: block;
    width: max-content;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-90deg);
}


/*==================================================
    ORANGE ICON
==================================================*/

.offer-card-icon {
    position: absolute;
    left: 50%;
    bottom: -37px;
    width: 76px;
    height: 76px;
    transform: translateX(-50%);
    background: #d20418;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    z-index: 5;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}


/*==================================================
    CARD CONTENT
==================================================*/

.offer-card-content {
    min-height: 232px;
    padding: 54px 24px 28px;
    background: #ffffff;
}

.offer-card-content h3 {
    margin: 0;
    color: #0b1838;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.offer-card-content p {
    max-width: 225px;
    margin: 18px auto 0;
    color: #555d6f;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.4;
}


/*==================================================
    SLIDER ARROWS
==================================================*/

.offer-prev,
.offer-next {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: #002653;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    z-index: 20;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-prev {
    left: -30px;
}

.offer-next {
    right: -30px;
}

.offer-prev:hover,
.offer-next:hover {
    background: #d20418;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}

.offer-prev:active,
.offer-next:active {
    transform: translateY(-50%) scale(0.94);
}


/* Slick disabled state */

.offer-prev.slick-disabled,
.offer-next.slick-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


.home-allservice-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d31d1d;
    width: 20%;

}


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

@media (max-width: 1199px) {

    .offer-slider-wrap {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .offer-prev {
        left: -20px;
    }

    .offer-next {
        right: -20px;
    }

}


/*==================================================
    991px
==================================================*/

@media (max-width: 991px) {

    .offer-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

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

    .offer-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .offer-card-image {
        height: 280px;
    }

    .offer-card-content {
        min-height: 220px;
    }

    .offer-prev,
    .offer-next {
        width: 42px;
        height: 42px;
    }

    .offer-prev {
        left: -18px;
    }

    .offer-next {
        right: -18px;
    }

    .home-allservice-btn {

        width: 30%;

    }


}


/*==================================================
    767px
==================================================*/

@media (max-width: 767px) {

    .offer-heading {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .offer-heading p {
        margin-top: 14px;
        font-size: 15px;
    }

    .offer-card-image {
        height: 300px;
    }

    .offer-card-content {
        min-height: 215px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .offer-prev,
    .offer-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .offer-prev {
        left: 5px;
    }

    .offer-next {
        right: 5px;
    }

}


/*==================================================
    576px
==================================================*/

@media (max-width: 576px) {

    .offer-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    .offer-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .offer-slider {
        padding-left: 12px;
        padding-right: 12px;
    }

    .offer-slider .slick-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .offer-card-image {
        height: 280px;
    }

    .offer-card-label {
        width: 46px;
    }

    .offer-card-label span {
        font-size: 14px;
    }

    .offer-card-icon {
        width: 70px;
        height: 70px;
        bottom: -35px;
        font-size: 25px;
    }

    .offer-card-content {
        min-height: 210px;
        padding: 50px 22px 25px;
    }

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

    .offer-card-content p {
        font-size: 14px;
        /* line-height: 1.2; */
    }

    .offer-prev,
    .offer-next {
        width: 38px;
        height: 38px;
    }

    .offer-prev {
        left: -2px;
    }

    .offer-next {
        right: -2px;
    }

    .home-allservice-btn {

        width: 70%;

    }


}


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

.why-choose-section {
    position: relative;
    background: #ffffff;
}


/*==================================================
    WHY CHOOSE WRAPPER
==================================================*/

.why-choose-wrapper {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}


/*==================================================
    SECTION HEADING
==================================================*/

.why-choose-heading {
    width: 100%;
}


/*==================================================
    SMALL TOP LABEL
==================================================*/

.why-choose-label {
    width: 100%;
}


/*==================================================
    MAIN HEADING
==================================================*/

.why-choose-heading h4 {
    font-size: 22px;
    color: #bd1717;
}

.why-choose-heading h2 {
    margin: 20px 0 0;
    color: #101010;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-choose-heading h2 span {
    color: #bd1717;
}

/*==================================================
    HEADING BOTTOM LINE
==================================================*/

.why-choose-heading-line {
    width: 72px;
    height: 3px;
    margin: 16px auto 0;
    background: #bd1717;
}


/*==================================================
    WHY CHOOSE GRID
==================================================*/

.why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 20px;
}


/*==================================================
    WHY CHOOSE CARD
==================================================*/

.why-choose-card {
    position: relative;
    min-height: 230px;
    padding: 18px 24px 24px;
    background: #ffffff;
    border: 1px solid #dddddf;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: #d2d2d2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}


/*==================================================
    CARD ICON
==================================================*/

.why-choose-card-icon {
    width: 96px;
    height: 96px;
    margin-left: auto;
    margin-right: auto;

    background: linear-gradient(145deg,
            #ffffff,
            #f5f5f5);

    border: 1px solid #d9d9d9;
    border-radius: 50%;

    color: #bd1717;
    font-size: 40px;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.06),
        inset 0 0 0 5px #fafafa;
}


/*==================================================
    CARD CONTENT
==================================================*/

.why-choose-card-content {
    margin-top: 12px;
}


/*==================================================
    CARD HEADING
==================================================*/

.why-choose-card-content h3 {
    margin: 0;
    color: #9f1111;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}


/*==================================================
    CARD SMALL LINE
==================================================*/

.why-choose-card-line {
    width: 48px;
    height: 2px;
    margin: 10px auto 0;
    background: #bd1717;
}


/*==================================================
    CARD DESCRIPTION
==================================================*/

.why-choose-card-content p {
    margin: 11px auto 0;
    color: #30303a;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}


/*==================================================
    1199px
==================================================*/

@media (max-width: 1199px) {

    .why-choose-wrapper {
        max-width: 1100px;
    }

    .why-choose-heading h2 {
        font-size: 48px;
    }

    .why-choose-grid {
        gap: 18px;
    }

}


/*==================================================
    991px
==================================================*/

@media (max-width: 991px) {

    .why-choose-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

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


    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .why-choose-card {
        min-height: 225px;
    }

}


/*==================================================
    767px
==================================================*/

@media (max-width: 767px) {

    .why-choose-heading {
        padding-left: 10px;
        padding-right: 10px;
    }

    .why-choose-label {
        gap: 12px;
    }

    .why-choose-label span {
        width: 48px;
    }

    .why-choose-label strong {
        font-size: 18px;
    }

    .why-choose-heading h2 {
        margin-top: 16px;
        font-size: 36px;
        line-height: 1.05;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/*==================================================
    576px
==================================================*/

@media (max-width: 576px) {

    .why-choose-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .why-choose-label span {
        width: 35px;
    }

    .why-choose-label strong {
        font-size: 16px;
    }

    .why-choose-heading h2 {
        font-size: 30px;
    }

    .why-choose-card {
        min-height: 220px;
        padding: 18px 18px 22px;
    }

    .why-choose-card-icon {
        width: 88px;
        height: 88px;
        font-size: 36px;
    }

    .why-choose-card-content h3 {
        font-size: 18px;
    }

    .why-choose-card-content p {
        font-size: 14px;
        line-height: 1.6;
    }

}


/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   ABOUT WRAPPER
========================================================= */

.about-wrapper {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 330px) minmax(300px, 1fr);
}


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

.about-content {
    max-width: 410px;
}

.about-content .about-subtitle {
    display: inline-block;
    color: #d7071b;
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}

.about-content h2 {
    margin: 14px 0 20px;
    color: #090909;
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.about-content h2 span {
    color: #d7071b;
}

.about-content p {
    margin: 0;
    max-width: 360px;
    color: #e02a36;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.about-button {
    width: 166px;
    min-height: 45px;
    margin-top: 22px;
    padding: 0 20px;
    border-radius: 5px;
    background: #d7071b;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #a90012;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   CENTER VISUAL
========================================================= */

.about-visual {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Red Background Shape */

.about-red-shape {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 225px;
    height: 270px;
    border-radius: 8px;
    background: #d7071b;
    z-index: 1;
    transform: rotate(-3deg);
}


/* Main Image */

.about-main-image {
    position: relative;
    width: 235px;
    height: 290px;
    margin-left: -25px;
    border-radius: 9px 9px 0 0;
    z-index: 2;
}

.about-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.about-experience {
    position: absolute;
    left: -8px;
    bottom: 12px;
    width: 175px;
    min-height: 78px;
    padding: 12px 16px;
    border-radius: 15px;
    background: #06204b;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    z-index: 3;
    gap: 12px;
}

.about-experience-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
}

.about-experience-content {
    display: flex;
    flex-direction: column;
}

.about-experience-content strong {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-content span {
    margin-top: 5px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.4px;
}


/* =========================================================
   RIGHT FEATURES
========================================================= */

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.about-feature {
    min-width: 0;
}


/* Red Shield / Check Icon */

.about-feature-icon img {
    width: 40px;
}


/* Feature Content */

.about-feature-content {
    min-width: 0;
}

.about-feature-content h3 {
    margin: 0;
    color: #071d42;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1px;
}

.about-feature-content p {
    margin: 5px 0 0;
    color: #333333;
    font-family: var(--font-primary);
    /* font-size: 10px; */
    font-weight: 500;
    line-height: 1.2;
}


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

@media (max-width: 1100px) {

    .about-wrapper {
        grid-template-columns: 1fr 300px 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-main-image {
        width: 210px;
        height: 275px;
    }

    .about-red-shape {
        width: 205px;
        height: 255px;
    }

    .about-experience {
        left: -5px;
    }

}


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

@media (max-width: 991px) {

    .about-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

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

    .about-visual {
        min-height: 360px;
    }

    .about-features {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }

}


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

@media (max-width: 767px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
        margin: 0 auto;
    }

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-button {
        margin-left: auto;
        margin-right: auto;
    }

    .about-visual {
        width: 300px;
        max-width: 100%;
        min-height: 350px;
        margin: 0 auto;
    }

    .about-features {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

}


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

@media (max-width: 480px) {

    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-content .about-subtitle {
        font-size: 19px;
    }

    .about-content h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .about-content p {
        font-size: 12px;
    }

    .about-visual {
        min-height: 320px;
    }

    .about-main-image {
        width: 200px;
        height: 255px;
    }

    .about-red-shape {
        width: 190px;
        height: 235px;
    }

    .about-experience {
        left: 0;
        bottom: 10px;
        width: 165px;
    }

    .about-feature-content h3 {
        font-size: 11px;
    }

}


/* =========================================================
   HOW WE WORK SECTION
========================================================= */

.how-work-section {
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.how-work-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.how-work-heading h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--color-white);
}

.how-work-heading h2 span {
    color: #e30620;
}

.how-work-heading p {
    max-width: 700px;
    margin: 12px auto 0;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #e8e8e8;
}


/* =========================================================
   HOW WORK WRAPPER
========================================================= */

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


/* =========================================================
   WORK ITEM
========================================================= */

.how-work-item {
    position: relative;
    min-width: 0;
    gap: 22px;
}


/* =========================================================
   ICON
========================================================= */

.how-work-icon {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;

    border-radius: 50%;

    background: linear-gradient(145deg,
            #ed1b2f 0%,
            #d7071b 55%,
            #bd0015 100%);

    border: 4px solid #000000;

    box-shadow:
        0 0 0 4px rgb(255, 255, 255),
        inset 0 0 0 1px rgba(255, 255, 255, 0.13);

    color: var(--color-white);

    font-size: 58px;

    position: relative;
    z-index: 2;
}

.how-work-icon i {
    line-height: 1;
}


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

.how-work-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.how-work-number {
    display: block;

    margin-bottom: 2px;

    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;

    color: #e30620;
}

.how-work-content h3 {
    margin: 0 0 12px;

    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;

    color: #e30620;
}

.how-work-content p {
    margin: 0;

    max-width: 230px;

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;

    color: #eeeeee;
}


/* =========================================================
   CONNECTOR
========================================================= */


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

@media (max-width: 1100px) {

    .how-work-wrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }


    .how-work-icon {
        flex-basis: 135px;
        width: 135px;
        height: 135px;
        font-size: 48px;
    }

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

    .how-work-number {
        font-size: 30px;
    }

    .how-work-content p {
        font-size: 15px;
    }

}


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

@media (max-width: 767px) {

    .how-work-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

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

    .how-work-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .how-work-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-work-item {
        align-items: center;
    }

    .how-work-icon {
        flex-basis: 115px;
        width: 115px;
        height: 115px;
        font-size: 42px;
    }

    .how-work-number {
        font-size: 28px;
    }

    .how-work-content h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .how-work-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
    }


}


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

@media (max-width: 480px) {

    .how-work-heading h2 {
        font-size: 29px;
    }

    .how-work-heading p {
        font-size: 14px;
    }

    .how-work-wrapper {
        gap: 35px;
    }

    .how-work-item {
        gap: 18px;
    }

    .how-work-icon {
        flex-basis: 95px;
        width: 95px;
        height: 95px;
        font-size: 34px;
        border-width: 2px;
    }

    .how-work-number {
        font-size: 24px;
    }

    .how-work-content h3 {
        font-size: 17px;
    }

    .how-work-content p {
        font-size: 13px;
    }

}


/*==================================================*
    TESTIMONIAL SECTION
*==================================================*/

.testimonial-section {
    position: relative;
    overflow: hidden;
}


/*==================================================*
    TESTIMONIAL TOP
*==================================================*/

.testimonial-top {
    grid-template-columns: 1fr auto;
    margin-bottom: 35px;
}


/*==================================================*
    TESTIMONIAL HEADING
*==================================================*/

.testimonial-heading {
    position: relative;
    padding-left: 2px;
}

.testimonial-heading>span {
    display: block;
    margin-bottom: 15px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.4px;

    text-transform: uppercase;
}


.testimonial-heading>h2 {
    max-width: 520px;
    margin: 0;

    color: #12213f;

    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;

    line-height: 1.12;
    letter-spacing: -1px;

    text-transform: uppercase;
}


/*==================================================*
    DECORATIVE QUOTE
*==================================================*/

.testimonial-quote-mark {
    position: absolute;

    left: -3px;
    bottom: -58px;

    color: #e6e6e6;

    font-family: Georgia, serif;
    font-size: 78px;
    font-weight: 700;

    line-height: 0.7;

    pointer-events: none;
}


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

.testimonial-navigation {
    align-self: center;
    padding-top: 12px;
}


.testimonial-navigation button {
    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: var(--color-primary);

    color: var(--color-white);

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

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.testimonial-navigation button span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}


.testimonial-navigation button i {
    font-size: 15px;
    line-height: 1;
}


.testimonial-navigation button:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
}


.testimonial-navigation button.slick-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}


/*==================================================*
    TESTIMONIAL SLIDER
*==================================================*/

.testimonial-slider {
    width: calc(100% + 20px);
    margin-left: -10px;
}


.testimonial-slider .slick-list {
    padding: 5px 0 8px;
}


.testimonial-slider .slick-track {
    display: flex;
}


.testimonial-slide {
    height: auto;
    padding: 10px;
}


.testimonial-slide>div {
    height: 100%;
}


/*==================================================*
    TESTIMONIAL CARD
*==================================================*/

.testimonial-card {
    min-height: 255px;

    height: 100%;

    padding: 25px 24px 23px;

    background: var(--color-white);

    border: 1px solid #eeeeee;
    border-radius: 7px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07);

    display: flex;
    flex-direction: column;

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


.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.10);
}


/*==================================================*
    RATING
*==================================================*/

.testimonial-rating {
    margin-bottom: 24px;
}


.testimonial-rating i {
    color: var(--color-primary);

    font-size: 15px;
    line-height: 1;
}


/*==================================================*
    REVIEW
*==================================================*/

.testimonial-review {
    flex: 1;
}


.testimonial-review>p {
    max-width: 100%;

    margin: 0;

    color: #1c2942;

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    line-height: 1.85;
}


/*==================================================*
    CLIENT
*==================================================*/

.testimonial-client {
    margin-top: 22px;
}


.testimonial-client-image {
    width: 50px;
    min-width: 50px;
    height: 50px;

    overflow: hidden;

    border-radius: 50%;

    background: #eeeeee;
}


.testimonial-client-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.testimonial-client-info {
    min-width: 0;
}


.testimonial-client-info>h3 {
    margin: 0 0 4px;

    color: #101c36;

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;

    line-height: 1.25;
}


.testimonial-client-info>span {
    display: block;

    color: #596273;

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;

    line-height: 1.3;
}


/*==================================================*
    SLICK ACCESSIBILITY / FOCUS
*==================================================*/

.testimonial-slider .slick-slide {
    outline: none;
}


.testimonial-slider .slick-slide>div {
    height: 100%;
}


.testimonial-navigation button:focus-visible {
    outline: 2px solid var(--color-dark);
    outline-offset: 3px;
}


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

@media (max-width: 991px) {

    .testimonial-heading>h2 {
        font-size: 36px;
    }

    .testimonial-card {
        min-height: 270px;
    }

}


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

@media (max-width: 767px) {

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


    .testimonial-heading>h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }


    .testimonial-navigation {
        padding-top: 0;
        justify-content: flex-start;
    }


    .testimonial-quote-mark {
        bottom: -48px;
        font-size: 65px;
    }


    .testimonial-slider {
        width: calc(100% + 10px);
        margin-left: -5px;
    }


    .testimonial-slide {
        padding: 5px;
    }


    .testimonial-card {
        min-height: 250px;
        padding: 24px 22px;
    }

}


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

@media (max-width: 576px) {

    .testimonial-heading>span {
        font-size: 13px;
    }


    .testimonial-heading>h2 {
        font-size: 28px;
        line-height: 1.15;
    }


    .testimonial-review>p {
        font-size: 13px;
        line-height: 1.75;
    }


    .testimonial-card {
        min-height: 245px;
    }


    .testimonial-client-image {
        width: 46px;
        min-width: 46px;
        height: 46px;
    }

}


/*==================================================
    OUR MISSION / OUR VISION
==================================================*/

.mission-vision-section {
    position: relative;
    overflow: hidden;
}


/*==================================================
    SECTION HEADING
==================================================*/

.mission-vision-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-heading h2 {
    margin: 0;
    color: #111111;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
}

.mission-vision-heading h2 span {
    color: var(--color-primary);
}

.mission-vision-heading p {
    margin: 20px 0 0;
    color: #111c38;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}


/*==================================================
    MISSION / VISION GRID
==================================================*/

.mission-vision-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
    margin-top: 60px;
}


/*==================================================
    COMMON CARD
==================================================*/

.mission-vision-card {
    min-height: 410px;
    isolation: isolate;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/*==================================================
    BACKGROUND IMAGE
==================================================*/

.mission-vision-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;
}


/*==================================================
    IMAGE OVERLAY
==================================================*/

.mission-vision-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 55%,
            rgba(0, 0, 0, 0.42) 100%);
}


/* Mission slightly more red */
.mission-card .mission-vision-overlay {
    background:
        linear-gradient(110deg,
            rgba(20, 0, 0, 0.94) 0%,
            rgba(65, 0, 0, 0.84) 50%,
            rgba(145, 0, 0, 0.50) 100%);
}


/* Vision dark blue / black */
.vision-card .mission-vision-overlay {
    background:
        linear-gradient(110deg,
            rgba(4, 10, 16, 0.95) 0%,
            rgba(8, 16, 24, 0.88) 55%,
            rgba(9, 20, 30, 0.55) 100%);
}


/*==================================================
    DIAGONAL CARD EDGES
==================================================*/

/*
    Left card:
    right edge moves inward toward bottom.
*/

.mission-card {
    clip-path: polygon(0 0,
            100% 0,
            94% 100%,
            0 100%);

    z-index: 2;

    border-radius: 14px 14px 14px 14px;
}


/*
    Right card:
    left edge starts inward and opens toward bottom.
*/

.vision-card {
    clip-path: polygon(6% 0,
            100% 0,
            100% 100%,
            0 100%);

    margin-left: -38px;

    z-index: 1;

    border-radius: 14px;
}


/*==================================================
    CARD CONTENT
==================================================*/

.mission-vision-content {
    position: relative;

    z-index: 2;

    min-height: 410px;

    padding: 28px 48px 28px 40px;

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


/* Right card needs little extra left space */
.vision-card .mission-vision-content {
    padding-left: 70px;
    padding-right: 40px;
}


/*==================================================
    CARD HEADING
==================================================*/

.mission-vision-card-heading {
    min-height: 70px;
}


/*==================================================
    ROUND ICON
==================================================*/

.mission-vision-icon {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: rgba(189, 23, 23, 0.96);

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 0 0 5px rgba(189, 23, 23, 0.15);
}


/*==================================================
    CARD TITLE
==================================================*/

.mission-vision-card-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mission-vision-card-title span {
    display: block;

    margin-bottom: 0;

    color: #ffffff;

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;

    line-height: 1.2;
}

.mission-vision-card-title h3 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.5px;
}


/*==================================================
    RED UNDERLINE
==================================================*/

.mission-vision-line {
    width: 32px;
    height: 2px;

    margin-top: 12px;
    margin-bottom: 16px;

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


/*==================================================
    DESCRIPTION
==================================================*/

.mission-vision-description {
    max-width: 330px;
}

.mission-vision-description p {
    margin: 0;

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

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;

    line-height: 1.35;
}


/*==================================================
    POINTS
==================================================*/

.mission-vision-points {
    margin-top: 60px;
}


/*==================================================
    SINGLE POINT
==================================================*/

.mission-vision-point {
    position: relative;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mission-vision-point:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/*==================================================
    POINT ICON
==================================================*/

.mission-vision-point-icon {
    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: var(--color-primary);

    color: #ffffff;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.20);
}

.mission-vision-point-icon i {
    font-size: 24px;
}


/*==================================================
    POINT CONTENT
==================================================*/

.mission-vision-point-content {
    flex: 1;
}

.mission-vision-point-content p {
    margin: 0;

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

    font-family: var(--font-primary);
    font-weight: 500;

    line-height: 1.35;
}


/*==================================================
    HOVER
==================================================*/

.mission-vision-card .mission-vision-bg {
    transition:
        transform 0.7s ease;
}

.mission-vision-card:hover .mission-vision-bg {
    transform: scale(1.04);
}

.mission-vision-icon,
.mission-vision-point-icon {
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.05);
}

.mission-vision-card:hover .mission-vision-point-icon {
    transform: scale(1.08);
}


/*==================================================
    991px
==================================================*/

@media (max-width: 991px) {

    .mission-vision-heading h2 {
        font-size: 36px;
    }

    .mission-vision-card {
        min-height: 430px;
    }

    .mission-vision-content {
        min-height: 430px;

        padding: 28px 35px;
    }

    .vision-card .mission-vision-content {
        padding-left: 55px;
        padding-right: 30px;
    }

    .mission-vision-card-title h3 {
        font-size: 27px;
    }

    .mission-vision-description {
        max-width: 300px;
    }

    /* Remove diagonal desktop overlap */
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card,
    .vision-card {
        margin-left: 0;

        clip-path: none;

        border-radius: 14px;
    }

}


/*==================================================
    767px
==================================================*/

@media (max-width: 767px) {

    .mission-vision-heading {
        margin-bottom: 30px;
    }

    .mission-vision-heading h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .mission-vision-heading p {
        margin-top: 15px;
        font-size: 14px;
    }







    .mission-vision-card {
        min-height: 400px;
    }

    .mission-vision-content,
    .vision-card .mission-vision-content {
        min-height: 400px;

        padding: 30px;
    }

}


/*==================================================
    576px
==================================================*/

@media (max-width: 576px) {

    .mission-vision-heading h2 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .mission-vision-heading p {
        font-size: 13px;
    }


    .mission-vision-card {
        min-height: 440px;
    }

    .mission-vision-content,
    .vision-card .mission-vision-content {
        min-height: 440px;

        padding: 25px 22px;
    }


    .mission-vision-card-heading {
        gap: 15px !important;
    }


    .mission-vision-icon {
        flex-basis: 54px;

        width: 54px;
        height: 54px;

        font-size: 22px;
    }


    .mission-vision-card-title span {
        font-size: 14px;
    }

    .mission-vision-card-title h3 {
        font-size: 25px;
    }


    .mission-vision-description {
        max-width: 100%;
    }

    .mission-vision-description p {
        font-size: 14px;
    }


    .mission-vision-point-content p {
        font-size: 14px;
    }

}


/*==================================================
    FAQ SECTION
==================================================*/

.faq-section {
    background: #ffffff;
}


/*==================================================
    FAQ HEADING
==================================================*/

.faq-heading {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;
}

.faq-heading span {
    display: block;

    margin-bottom: 8px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 800;

    line-height: 1.2;

    text-transform: uppercase;
}

.faq-heading h2 {
    margin: 0;

    color: #111936;

    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;

    line-height: 1.2;

    text-transform: uppercase;
}

.faq-heading-line {
    width: 48px;
    height: 3px;

    margin: 12px auto 0;

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


/*==================================================
    FAQ WRAPPER
==================================================*/

/*
    IMPORTANT:

    এখানে Grid ব্যবহার করা হয়নি।

    দুইটা column flex item হিসেবে পাশাপাশি থাকবে।
    প্রতিটি column-এর ভিতরের accordion-গুলো
    normal vertical flow-তে থাকবে।
*/

.faq-wrapper {
    align-items: flex-start;
}

.faq-column {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 15px;
}


/*==================================================
    FAQ ITEM
==================================================*/

.faq-item {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 7px;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(189, 23, 23, 0.20);

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


/*==================================================
    FAQ QUESTION
==================================================*/

.faq-question {
    width: 100%;

    min-height: 59px;

    padding: 16px 22px;

    border: 0;

    background: transparent;

    color: #111936;

    font-family: var(--font-primary);

    font-size: 16px;
    font-weight: 600;

    line-height: 1.45;

    text-align: left;

    cursor: pointer;
}

.faq-question>span:first-child {
    flex: 1;

    padding-right: 20px;
}


/*==================================================
    FAQ ICON
==================================================*/

.faq-icon {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    color: var(--color-primary);

    font-size: 17px;

    line-height: 1;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.faq-icon i {
    transition:
        transform 0.3s ease;
}


/*==================================================
    FAQ ANSWER
==================================================*/

.faq-answer {
    max-height: 0;

    padding: 0 22px;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease,
        opacity 0.3s ease;
}

.faq-answer p {
    margin: 0;

    color: #666666;

    font-family: var(--font-primary);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;
}


/*==================================================
    ACTIVE FAQ
==================================================*/

.faq-item.active {
    border-color: rgba(189, 23, 23, 0.25);
}

.faq-item.active .faq-answer {
    max-height: 250px;

    padding-top: 0;
    padding-bottom: 18px;

    opacity: 1;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}


/*==================================================
    991px
==================================================*/

@media (max-width: 991px) {

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-question {
        min-height: 58px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-answer {
        padding-left: 18px;
        padding-right: 18px;
    }

}


/*==================================================
    767px
==================================================*/

@media (max-width: 767px) {

    .faq-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .faq-column {
        width: 100%;
    }

    .faq-heading span {
        font-size: 13px;
    }

    .faq-heading h2 {
        font-size: 25px;
    }

}


/*==================================================
    576px
==================================================*/

@media (max-width: 576px) {

    .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq-heading h2 {
        font-size: 22px;
    }

    .faq-heading span {
        font-size: 12px;
    }

    .faq-heading-line {
        width: 42px;

        margin-top: 10px;
    }

    .faq-question {
        min-height: 55px;

        padding: 14px 15px;

        font-size: 15px;
    }

    .faq-question>span:first-child {
        padding-right: 12px;
    }

    .faq-icon {
        flex-basis: 20px;

        width: 20px;
        height: 20px;

        font-size: 15px;
    }

    .faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.6;
    }

}

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

.site-footer {
    background: #001735;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   FOOTER MAIN
--------------------------------------------------------- */

.site-footer .footer-main {
    grid-template-columns: 1.25fr 0.8fr 1.15fr 1fr;
    gap: 50px;
    padding-top: 38px;
    padding-bottom: 24px;
}


/* ---------------------------------------------------------
   FOOTER BRAND
--------------------------------------------------------- */

.site-footer .footer-brand {
    min-width: 0;
}


.site-footer .footer-logo {
    margin-bottom: 20px;
}


.site-footer .footer-logo a {
    display: inline-block;
}


.site-footer .footer-logo img {
    display: block;
    width: 120px;
    height: auto;
    object-fit: contain;
}


/* ---------------------------------------------------------
   FOOTER DESCRIPTION
--------------------------------------------------------- */

.site-footer .footer-description {
    margin-bottom: 22px;
}


.site-footer .footer-description p {
    margin: 0;
    color: #eeeeee;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FOOTER SOCIAL
--------------------------------------------------------- */

.site-footer .footer-socials {
    gap: 10px;
}


.site-footer .footer-social {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.3s ease;
}


.site-footer .footer-social:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   FOOTER COLUMN
--------------------------------------------------------- */

.site-footer .footer-column {
    min-width: 0;
}


/* ---------------------------------------------------------
   FOOTER HEADING
--------------------------------------------------------- */

.site-footer .footer-heading {
    margin-bottom: 17px;
}


.site-footer .footer-heading h5 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   FOOTER LINKS
--------------------------------------------------------- */

.site-footer .footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.site-footer .footer-links li {
    margin: 0 0 7px;
    padding: 0;
}


.site-footer .footer-links li:last-child {
    margin-bottom: 0;
}


.site-footer .footer-links a {
    display: inline-block;
    color: #eeeeee;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.3s ease;
}


.site-footer .footer-links a:hover {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   FOOTER CONTACT
--------------------------------------------------------- */

.site-footer .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.site-footer .footer-contact-item {
    color: #eeeeee;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.3s ease;
}


.site-footer .footer-contact-item:hover {
    color: var(--color-primary);
}


.site-footer .footer-contact-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: #ffffff;
    font-size: 13px;
}


.site-footer .footer-contact-item span:last-child {
    min-width: 0;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
--------------------------------------------------------- */

.site-footer .footer-bottom {
    min-height: 78px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}


.site-footer .footer-bottom-left {
    flex: 1;
}


.footer-bottom-left p {
    color: #fff;
    font-size: 14px;
}

/* ---------------------------------------------------------
   FOOTER LEGAL
--------------------------------------------------------- */

.site-footer .footer-legal {
    gap: 14px;
}


.site-footer .footer-legal a {
    color: #eeeeee;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}


.site-footer .footer-legal a:hover {
    color: var(--color-primary);
}


.site-footer .footer-legal-divider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}


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


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991px) {

    .site-footer .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
        padding-top: 45px;
        padding-bottom: 35px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 576px) {

    .site-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 40px;
        padding-bottom: 35px;
    }


    .site-footer .footer-logo img {
        width: 115px;
    }


    .site-footer .footer-description p {
        font-size: 13px;
    }


    .site-footer .footer-bottom {
        min-height: auto;
        padding-top: 22px;
        padding-bottom: 22px;
        align-items: flex-start;
    }


    /* .site-footer .footer-bottom-left {
        display: none;
    } */

     .footer-bottom {
        flex-direction: column;
     }


    .site-footer .footer-legal {
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }


    .site-footer .footer-legal a {
        font-size: 11px;
    }

}




/* =========================================================
   ABOUT US BANNER
========================================================= */

.about-banner-section {
    background: #f7f8fa;
}

.about-banner-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    min-height: 470px;
    background: var(--color-white);
    border: 1px solid #e8eaee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(8, 22, 42, 0.08);
}


/* ---------------------------------------------------------
   BANNER CONTENT
--------------------------------------------------------- */

.about-banner-content {
    position: relative;
    z-index: 2;
    padding: 55px 45px;
}

.about-banner-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.about-banner-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.about-banner-label h2 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.about-banner-title {
    max-width: 500px;
}

.about-banner-title h1 {
    margin: 0;
    color: #071a35;
    font-size: clamp(42px, 4vw, 56px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    font-family: "Arial Narrow", Arial, sans-serif;

}

.about-banner-title h1 span {
    color: var(--color-primary);
}


.about-banner-description {
    max-width: 470px;
    margin-top: 25px;
}

.about-banner-description p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   META INFORMATION
--------------------------------------------------------- */

.about-banner-meta {
    margin-top: 35px;
}

.about-banner-meta-item {
    min-width: 150px;
}

.about-banner-meta-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--color-primary);
    border: 1px solid rgba(189, 23, 23, 0.18);
    border-radius: 50%;
    background: #fff7f7;
    font-size: 15px;
}

.about-banner-meta-text {
    gap: 3px;
}

.about-banner-meta-text span {
    color: #071a35;
    font-size: 13px;
    font-weight: 700;
}

.about-banner-meta-text small {
    color: #7b8491;
    font-size: 10px;
    line-height: 1.3;
}

.about-banner-divider {
    width: 1px;
    height: 35px;
    background: #e4e7eb;
}


/* ---------------------------------------------------------
   BANNER IMAGE
--------------------------------------------------------- */

.about-banner-image {
    position: relative;
    height: 100%;
    min-height: 470px;
    overflow: hidden;
    background: #e9edf1;
}

.about-banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------
   IMAGE BADGE
--------------------------------------------------------- */

.about-banner-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;

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

.about-banner-image-badge-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    color: #ffffff;
    background: var(--color-primary);
    border-radius: 50%;

    font-size: 14px;
}

.about-banner-image-badge-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-banner-image-badge-content span {
    color: #071a35;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.about-banner-image-badge-content small {
    color: #7b8491;
    font-size: 9px;
}


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

@media (max-width: 991px) {

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

    .about-banner-content {
        padding: 45px 35px;
    }

    .about-banner-image {
        min-height: 380px;
    }


    .about-banner-section {
        padding-top: 120px !important;
        padding-bottom: 25px;
    }
}


@media (max-width: 767px) {

    .about-banner-section {
        padding-top: 100px;
    }

    .about-banner-content {
        padding: 40px 25px;
    }

    .about-banner-title h1 {
        font-size: 42px;
    }

    .about-banner-description {
        margin-top: 20px;
    }

    .about-banner-meta {
        gap: 15px;
        align-items: flex-start;
    }

    .about-banner-meta-item {
        min-width: 0;
    }

    .about-banner-divider {
        display: none;
    }

    .about-banner-image {
        min-height: 320px;
    }

}


@media (max-width: 576px) {

    .about-banner-wrapper {
        border-radius: 12px;
    }

    .about-banner-section {
        padding-top: 100px !important;
    }

    .about-banner-content {
        padding: 32px 20px;
    }

    .about-banner-title h1 {
        font-size: 36px;
        line-height: 1;
    }

    .about-banner-description p {
        /* font-size: 13px; */
        line-height: 1.3;
    }

    .about-banner-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 25px;
    }

    .about-banner-image {
        min-height: 270px;
    }

    .about-banner-image-badge {
        left: 15px;
        bottom: 15px;
        padding: 10px 13px;
    }

    .about-banner-image-badge-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

}



/* =========================================================
   WHO WE ARE SECTION
========================================================= */

.who-we-are-section {
    position: relative;
}


/* ---------------------------------------------------------
   MAIN LAYOUT
--------------------------------------------------------- */

.who-we-are-wrapper {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 55px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.who-we-are-visual {
    position: relative;
    min-width: 0;
    padding-bottom: 82px;
}


/* ---------------------------------------------------------
   MAIN IMAGE
--------------------------------------------------------- */

.who-we-are-image {
    width: 100%;
    height: 425px;

    border-radius: 14px;

    background: #eef1f4;
}

.who-we-are-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   BOTTOM INFORMATION CARD
========================================================= */

.who-we-are-card {
    position: absolute;

    left: 0;
    right: 35px;
    bottom: 0;

    padding: 28px 30px;

    background: #061b38;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 18px 45px rgba(6, 27, 56, 0.22);
}


/* Decorative Circle */

.who-we-are-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -55px;

    width: 145px;
    height: 145px;

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

    border-radius: 50%;
}


/* ---------------------------------------------------------
   CARD TOP
--------------------------------------------------------- */

.who-we-are-card-top {
    position: relative;
    z-index: 1;
}


.who-we-are-card-logo {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

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

    padding: 6px;

    background: #ffffff;

    border-radius: 8px;
}


.who-we-are-card-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.who-we-are-card-heading {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.who-we-are-card-heading h5 {
    color: #ffffff;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.who-we-are-card-heading p {
    color: #bfcbd9;

    font-size: 16px;
    font-weight: 500;
}


/* ---------------------------------------------------------
   CARD DESCRIPTION
--------------------------------------------------------- */

.who-we-are-card-content {
    position: relative;
    z-index: 1;

    max-width: 440px;

    margin-top: 22px;
}


.who-we-are-card-content p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CARD STATS
========================================================= */

.who-we-are-card-stats {
    position: relative;
    z-index: 1;

    margin-top: 25px;

    gap: 25px;
}


.who-we-are-stat {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 90px;
}


.who-we-are-stat strong {
    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    font-weight: 800;
}


.who-we-are-stat h6 {
    color: #aebdce;

    font-size: 14px;
    line-height: 1.4;
}


.who-we-are-stat-divider {
    width: 1px;
    height: 38px;

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


/* =========================================================
   RIGHT CONTENT
========================================================= */

.who-we-are-content {
    padding: 10px 0 0;
}


/* ---------------------------------------------------------
   LABEL
--------------------------------------------------------- */

.who-we-are-label {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 17px;
}


.who-we-are-label::before {
    content: "";

    width: 34px;
    height: 2px;

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


.who-we-are-label span {
    color: var(--color-primary);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.who-we-are-heading {
    max-width: 700px;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-transform: uppercase;
}


.who-we-are-heading h2 {
    margin: 0;

    color: #071a35;

    font-size: clamp(38px, 3.4vw, 50px);
    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;
}


.who-we-are-heading h2 span {
    color: var(--color-primary);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.who-we-are-description {
    max-width: 720px;

    margin-top: 24px;
}


.who-we-are-description p {
    margin: 0 0 17px;

    color: #626b78;

    font-size: 15px;
    line-height: 1.8;
}


.who-we-are-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

.who-we-are-features {
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    max-width: 720px;

    margin-top: 30px;
}


.who-we-are-feature {
    padding: 16px 18px;

    border: 1px solid #e8ebef;

    border-radius: 9px;

    background: #ffffff;

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


.who-we-are-feature:hover {
    border-color: rgba(189, 23, 23, 0.25);

    box-shadow: 0 10px 25px rgba(8, 25, 48, 0.07);

    transform: translateY(-2px);
}


.who-we-are-feature-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    color: var(--color-primary);

    background: #fff5f5;

    border-radius: 50%;

    font-size: 25px;
}


.who-we-are-feature>div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.who-we-are-feature strong {
    color: #071a35;

    font-size: 18px;
    font-weight: 800;
}


.who-we-are-feature span {
    color: #7b8491;

    font-size: 14px;
    line-height: 1.5;
}


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

@media (max-width: 991px) {

    .who-we-are-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .who-we-are-visual {
        max-width: 700px;
        margin: 0 auto;

        width: 100%;
    }

    .who-we-are-content {
        padding-top: 0;
    }

    .who-we-are-heading h2 {
        font-size: 42px;
    }

    .who-we-are-description p {
        font-size: 15px;
    }

}


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

@media (max-width: 767px) {

    .who-we-are-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .who-we-are-wrapper {
        gap: 35px;
    }

    .who-we-are-image {
        height: 360px;
    }

    .who-we-are-card {
        right: 20px;

        padding: 24px;
    }

    .who-we-are-label span {
        font-size: 13px;
    }

    .who-we-are-heading h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .who-we-are-description p {
        font-size: 14px;
        line-height: 1.75;
    }


}


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

@media (max-width: 576px) {

    .who-we-are-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .who-we-are-image {
        height: 290px;

        border-radius: 10px;
    }

    .who-we-are-visual {
        padding-bottom: 125px;
    }

    .who-we-are-card {
        right: 0;

        padding: 22px;

        border-radius: 10px;
    }

    .who-we-are-card-logo {
        width: 45px;
        height: 45px;

        flex-basis: 45px;
    }

    .who-we-are-card-heading span {
        font-size: 11px;
    }

    .who-we-are-card-heading small {
        font-size: 10px;
    }

    .who-we-are-card-content {
        margin-top: 17px;
    }

    .who-we-are-card-content p {
        line-height: 1.65;
    }

    .who-we-are-card-stats {
        gap: 15px;

        justify-content: space-between;
    }

    .who-we-are-stat {
        min-width: 0;
    }

    .who-we-are-stat strong {
        font-size: 19px;
    }

    .who-we-are-stat-divider {
        height: 30px;
    }

    .who-we-are-label {
        margin-bottom: 14px;
    }

    .who-we-are-label span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .who-we-are-heading h2 {
        font-size: 31px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .who-we-are-description {
        margin-top: 18px;
    }

    .who-we-are-description p {
        font-size: 15px;
        line-height: 1.4;
    }

    .who-we-are-features {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 24px;
    }

    .who-we-are-feature {
        padding: 15px 16px;
    }

    .who-we-are-feature-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 14px;
    }


}

/* =========================================================
   SECURITY DIFFERENCE / WHAT SETS US APART
   ========================================================= */

.security-difference-section {
    background: var(--color-white);
}


/* ---------------------------------------------------------
   MAIN WRAPPER
   --------------------------------------------------------- */

.security-difference-wrapper {
    grid-template-columns: 32% 68%;
    gap: 0;
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.security-difference-content {
    padding-right: var(--space-50);
}

.security-difference-label {
    margin-bottom: var(--space-10);
}

.security-difference-label h2 {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.security-difference-heading {
    margin-bottom: var(--space-15);
}

.security-difference-heading h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
    font-family: "Arial Narrow", Arial, sans-serif;
    text-transform: uppercase;

}

.security-difference-heading h2 span {
    color: var(--color-primary);
}

.security-difference-description {
    max-width: 390px;
}

.security-difference-description p {
    margin: 0 0 var(--space-15);
    /* font-family: var(--font-primary); */
    /* font-size: 13px; */
    line-height: 1.4;
    /* font-weight: 400; */
    color: var(--color-dark);
}

.security-difference-description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RIGHT FEATURE GRID
   --------------------------------------------------------- */

.security-difference-features {
    grid-template-columns: repeat(4, 1fr);
    min-width: 0;
}


/* ---------------------------------------------------------
   FEATURE ITEM
   --------------------------------------------------------- */

.security-difference-feature {
    position: relative;
    padding: 0 var(--space-25);
    text-align: center;
}


/* Vertical divider */

.security-difference-feature+.security-difference-feature {
    border-left: 2px solid #cc0c0c;
}


/* ---------------------------------------------------------
   FEATURE ICON
   --------------------------------------------------------- */

.security-difference-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto var(--space-15);
    border-radius: 50%;
    background: #f3f3f3;
    color: var(--color-dark);
    font-size: 25px;
}


/* ---------------------------------------------------------
   FEATURE CONTENT
   --------------------------------------------------------- */

.security-difference-feature-content h3 {
    margin: 0 0 var(--space-10);
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-dark);
}

.security-difference-feature-content p {
    max-width: 150px;
    margin: 0 auto;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-dark);
}


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

@media (max-width: 1199px) {

    .security-difference-wrapper {
        grid-template-columns: 35% 65%;
    }

    .security-difference-content {
        padding-right: var(--space-30);
    }

    .security-difference-heading h2 {
        font-size: 27px;
    }

    .security-difference-feature {
        padding: 0 var(--space-15);
    }

}


@media (max-width: 991px) {

    .security-difference-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-40);
    }

    .security-difference-content {
        padding-right: 0;
        text-align: center;
    }

    .security-difference-description {
        max-width: 600px;
        margin: 0 auto;
    }

    .security-difference-features {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 767px) {

    .security-difference-section {
        padding-top: var(--space-50);
        padding-bottom: var(--space-50);
    }

    .security-difference-features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: var(--space-30);
    }

    .security-difference-feature:nth-child(3) {
        border-left: 0;
    }

    .security-difference-feature:nth-child(3),
    .security-difference-feature:nth-child(4) {
        padding-top: var(--space-30);
        /* border-top: 2px solid #eeeeee; */
    }

    .security-difference-heading h2 {
        font-size: 25px;
    }

}


@media (max-width: 576px) {

    .security-difference-wrapper {
        gap: var(--space-30);
    }


    .security-difference-description p {
        font-size: 14px;
    }

    .security-difference-features {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .security-difference-feature,
    .security-difference-feature:nth-child(3),
    .security-difference-feature:nth-child(4) {
        padding: var(--space-25) var(--space-10);
        border-left: 0px;
        border-top: 2px solid #cc0c0c;

    }

    .security-difference-feature:nth-child(3) {
        border-right: 2px solid #cc0c0c;

    }

    .security-difference-feature:nth-child(4) {
        border-left: 2px solid #cc0c0c;

    }

    .security-difference-feature:first-child {
        padding-top: 0;
        border-top: 0;
        border-right: 2px solid #cc0c0c;
    }

}

/* =========================================================
   SECURITY CTA BANNER SECTION
   ========================================================= */

.security-cta-section {
    background: var(--color-white);
}


/* ---------------------------------------------------------
   MAIN CTA WRAPPER
   --------------------------------------------------------- */

.security-cta-wrapper {
    grid-template-columns: 44% 56%;
    min-height: 175px;
    overflow: hidden;
    border-radius: 15px;
    background: #071a35;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* ---------------------------------------------------------
   LEFT IMAGE
   --------------------------------------------------------- */

.security-cta-image {
    position: relative;
    min-height: 175px;
    background: #101010;
}

.security-cta-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------
   RIGHT CONTENT
   --------------------------------------------------------- */

.security-cta-content {
    position: relative;
    padding: var(--space-20) var(--space-50);
    background: #071a35;
}


/* ---------------------------------------------------------
   QUOTE ICON
   --------------------------------------------------------- */

.security-cta-quote {
    margin-bottom: 2px;
    height: 28px;
}

.security-cta-quote i {
    font-size: 31px;
    line-height: 1;
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.security-cta-heading {
    margin-bottom: var(--space-5);
}

.security-cta-heading h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--color-white);
}

.security-cta-heading h2 span {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.security-cta-description {
    margin-bottom: var(--space-10);
}

.security-cta-description p {
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-white);
}


/* ---------------------------------------------------------
   RED DECORATIVE LINE
   --------------------------------------------------------- */

.security-cta-line {
    width: 55px;
    height: 3px;
    margin-bottom: var(--space-15);
    background: var(--color-primary);
}


/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */


.security-cta-button {
    min-width: 200px;
    min-height: 36px;
    padding: 6px 10px 6px 20px;
    border-radius: 4px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.security-cta-button>span:first-child {
    font-family: var(--font-primary);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-white);
}

.security-cta-button-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 10px;
    color: var(--color-white);
}

.security-cta-button:hover {
    background: #d31d1d;
    transform: translateY(-2px);
}

.security-cta-button:hover .security-cta-button-icon {
    transform: translateX(2px);
}


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

@media (max-width: 1199px) {

    .security-cta-wrapper {
        grid-template-columns: 45% 55%;
    }

    .security-cta-content {
        padding-left: var(--space-40);
        padding-right: var(--space-40);
    }

    .security-cta-heading h2 {
        font-size: 22px;
    }


}


@media (max-width: 991px) {

    .security-cta-wrapper {
        grid-template-columns: 42% 58%;
    }

    .security-cta-content {
        padding: var(--space-20) var(--space-30);
    }

    .security-cta-heading h2 {
        font-size: 20px;
    }



}


@media (max-width: 767px) {

    .security-cta-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .security-cta-image {
        height: 220px;
        min-height: 220px;
    }


    .security-cta-content {
        min-height: 210px;
        padding: var(--space-30);
    }

    .security-cta-heading h2 {
        font-size: 23px;
    }

}


@media (max-width: 576px) {

    .security-cta-section {
        padding-top: var(--space-30);
        padding-bottom: var(--space-30);
    }

    .security-cta-wrapper {
        border-radius: 10px;
    }

    .security-cta-image {
        height: 190px;
        min-height: 190px;
    }


    .security-cta-content {
        min-height: 205px;
        padding: var(--space-25);
    }

    .security-cta-quote i {
        font-size: 27px;
    }

    .security-cta-heading h2 {
        font-size: 20px;
    }



    .security-cta-button {
        min-width: 185px;
    }

}



/* =========================================================
   360° CCTV CAMERA SECTION
========================================================= */

.cctv-360-section {
    position: relative;

    background:
        linear-gradient(135deg,
            #061b38 0%,
            #081f3e 55%,
            #04152d 100%);

    overflow: hidden;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.cctv-360-wrapper {
    grid-template-columns: 0.95fr 1.05fr;

    gap: 70px;
}


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

.cctv-360-content {
    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   LABEL
--------------------------------------------------------- */

.cctv-360-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}



.cctv-360-label p {
    margin: 0;

    color: #ef3b3b;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   HEADING
========================================================= */

.cctv-360-heading {
    max-width: 600px;
}


.cctv-360-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 46px);

    line-height: 1;

    font-weight: 700;

    /* letter-spacing: -1.5px; */
}


.cctv-360-heading h2 span {
    display: block;

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


/* =========================================================
   DESCRIPTION
========================================================= */

.cctv-360-description {
    max-width: 570px;

    margin-top: 22px;
}


.cctv-360-description p {
    margin: 0;

    color: #c4cedb;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.cctv-360-features {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-top: 28px;
}


.cctv-360-feature {
    width: fit-content;
}


.cctv-360-feature-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    color: #ffffff;

    background: rgba(189, 23, 23, 0.18);

    border: 1px solid rgba(189, 23, 23, 0.35);

    border-radius: 10px;

    font-size: 21px;
}


.cctv-360-feature h4 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


.cctv-360-feature p {
    margin: 0;

    color: #91a0b3;


    line-height: 1.5;
}


/* =========================================================
   BUTTON
========================================================= */

.cctv-360-action {
    margin-top: 32px;
}


.cctv-360-button {
    border: 0;

    padding: 5px 5px 5px 22px;

    background: #ffffff;

    color: #071a35;

    border-radius: 50px;

    cursor: pointer;

    font-family: inherit;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.5px;

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


.cctv-360-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


.cctv-360-button-icon {
    width: 42px;
    height: 42px;

    color: #ffffff;

    background: var(--color-primary);

    border-radius: 50%;

    font-size: 13px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.cctv-360-visual {
    position: relative;

    min-width: 0;
}


.cctv-360-model-card {
    position: relative;

    width: 100%;

    height: 540px;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.02) 45%,
            transparent 70%);

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

    border-radius: 20px;

    overflow: hidden;
}


/* =========================================================
   MODEL VIEWER
========================================================= */

.cctv-360-model-card model-viewer {
    width: 100%;
    height: 100%;

    display: block;

    background: transparent;
}


/* =========================================================
   TOP BADGE
========================================================= */

.cctv-360-badge {
    position: absolute;

    top: 22px;
    left: 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 14px;

    background: rgba(6, 27, 56, 0.86);

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

    border-radius: 10px;

    backdrop-filter: blur(10px);

    pointer-events: none;
}


.cctv-360-badge-icon {
    width: 34px;
    height: 34px;

    color: #ffffff;

    background: var(--color-primary);

    border-radius: 7px;

    font-size: 13px;
}


.cctv-360-badge div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.cctv-360-badge h5 {
    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;
}


.cctv-360-badge p {
    color: #9caabd;

    /* font-size: 15px; */
}


/* =========================================================
   BOTTOM INSTRUCTION
========================================================= */

.cctv-360-instruction {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    background: rgba(6, 27, 56, 0.88);

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

    border-radius: 30px;

    backdrop-filter: blur(8px);

    pointer-events: none;
}


.cctv-360-instruction span {
    width: 25px;
    height: 25px;

    color: #ffffff;

    background: rgba(189, 23, 23, 0.8);

    border-radius: 50%;

    font-size: 13px;
}


.cctv-360-instruction p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   360 MODAL
========================================================= */

.cctv-360-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.cctv-360-modal.active {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* ---------------------------------------------------------
   MODAL OVERLAY
--------------------------------------------------------- */

.cctv-360-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(1, 10, 23, 0.90);

    backdrop-filter: blur(10px);
}


/* ---------------------------------------------------------
   MODAL BOX
--------------------------------------------------------- */

.cctv-360-modal-box {
    position: relative;

    z-index: 2;

    width: min(1100px, 100%);

    height: min(750px, 90vh);

    display: flex;

    flex-direction: column;

    background: #061b38;

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

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.55);

    transform: scale(0.94);

    transition: transform 0.35s ease;
}


.cctv-360-modal.active .cctv-360-modal-box {
    transform: scale(1);
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.cctv-360-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;

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

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

    border-radius: 50%;

    background: rgba(6, 27, 56, 0.9);

    color: #ffffff;

    cursor: pointer;

    font-size: 17px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cctv-360-modal-close:hover {
    background: var(--color-primary);

    transform: rotate(90deg);
}


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

.cctv-360-modal-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 70px 20px 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.cctv-360-modal-header>div:first-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.cctv-360-modal-header span {
    color: var(--color-primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.cctv-360-modal-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 23px;

    font-weight: 800;
}


.cctv-360-modal-help {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #9aaabd;

    font-size: 11px;
}


.cctv-360-modal-help i {
    color: var(--color-primary);

    font-size: 13px;
}


/* =========================================================
   MODAL MODEL
========================================================= */

.cctv-360-modal-model {
    position: relative;

    flex: 1;

    min-height: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.10),
            transparent 62%);
}


.cctv-360-modal-model model-viewer {
    width: 100%;
    height: 100%;

    display: block;

    background: transparent;
}


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

.cctv-360-modal-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 25px;

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


.cctv-360-modal-status {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;
}


.cctv-status-dot {
    width: 7px;
    height: 7px;

    background: #36d17c;

    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(54, 209, 124, 0.12);
}


.cctv-360-modal-footer p {
    margin: 0;

    color: #8d9caf;

    font-size: 10px;
}


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

@media (max-width: 991px) {

    .cctv-360-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .cctv-360-content {
        max-width: 700px;

        margin: 0 auto;

        width: 100%;
    }


    .cctv-360-visual {
        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }


    .cctv-360-model-card {
        height: 500px;
    }

}


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

@media (max-width: 767px) {

    .cctv-360-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .cctv-360-wrapper {
        gap: 35px;
    }


    .cctv-360-heading h2 {
        font-size: 38px;
    }


    .cctv-360-description p {
        font-size: 14px;
    }


    .cctv-360-model-card {
        height: 450px;

        border-radius: 15px;
    }


    .cctv-360-modal {
        padding: 12px;
    }


    .cctv-360-modal-box {
        height: 92vh;

        border-radius: 14px;
    }


    .cctv-360-modal-header {
        padding: 22px 60px 18px 20px;
    }


    .cctv-360-modal-header h3 {
        font-size: 18px;
    }


    .cctv-360-modal-help {
        display: none;
    }


    .cctv-360-modal-footer {
        padding: 13px 18px;
    }


    .cctv-360-modal-footer p {
        display: none;
    }

}


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

@media (max-width: 576px) {

    .cctv-360-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }


    .cctv-360-heading h2 {
        font-size: 31px;

        letter-spacing: -0.8px;
    }


    .cctv-360-description {
        margin-top: 17px;
    }


    .cctv-360-description p {
        font-size: 13px;

        line-height: 1.7;
    }


    .cctv-360-features {
        gap: 13px;

        margin-top: 22px;
    }

    .cctv-360-feature-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 19px;
    }

    .cctv-360-feature h4 {
        font-size: 16px;
    }

    .cctv-360-feature p {
        font-size: 15px;
    }

    .cctv-360-action {
        margin-top: 25px;
    }

    .cctv-360-badge {
        top: 14px;
        left: 14px;

        padding: 8px 10px;
    }


    .cctv-360-badge-icon {
        width: 29px;
        height: 29px;
    }


    .cctv-360-badge strong {
        font-size: 9px;
    }


    .cctv-360-badge small {
        font-size: 8px;
    }


    .cctv-360-instruction {
        bottom: 14px;

        padding: 7px 12px;
    }


    .cctv-360-instruction p {
        font-size: 9px;
    }


    .cctv-360-modal-header {
        padding: 18px 55px 16px 16px;
    }


    .cctv-360-modal-header h3 {
        font-size: 16px;
    }


    .cctv-360-modal-header span {
        font-size: 8px;
    }


    .cctv-360-modal-close {
        top: 12px;
        right: 12px;

        width: 36px;
        height: 36px;

        font-size: 14px;
    }

}


/* =========================================================
   GALLERY HERO
========================================================= */
.common-hero {
    position: relative;

    width: 100%;
    height: 480px;
    min-height: 326px;

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

    overflow: hidden;

    background: #020a16;
}


/* =========================================================
   COMMON HERO BACKGROUND IMAGE
========================================================= */

.common-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

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

    z-index: 0;

    transform: scale(1.01);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.common-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(180deg,
            rgba(2, 9, 20, 0.404) 0%,
            rgba(2, 9, 20, 0.322) 55%,
            rgba(2, 9, 20, 0.377) 100%);
}

/* =========================================================
   CONTAINER
========================================================= */

.common-hero .container {
    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;

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


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

.common-hero-content {
    width: 100%;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    /* padding: 45px 0 55px; */
}


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

.common-hero-sub {
    display: inline-flex;

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

    gap: 17px;

    margin-bottom: 17px;

    color: var(--color-white);

    font-size: 13px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   RED BLINKING DOT
========================================================= */

.common-hero-dot {
    position: relative;

    width: 12px;
    height: 12px;

    flex: 0 0 12px;

    display: inline-block;

    border-radius: 50%;

    background: #ff202b;

    box-shadow:
        0 0 0 0 rgba(255, 32, 43, 0.75);

    animation: heroDotBlink 1.4s infinite;
}


/* Outer glow */

.common-hero-dot::after {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 1px solid rgba(255, 32, 43, 0.35);

    animation: heroDotPulse 1.4s infinite;
}


@keyframes heroDotBlink {

    0%,
    100% {
        opacity: 1;

        box-shadow:
            0 0 0 0 rgba(255, 32, 43, 0.65);
    }

    50% {
        opacity: 0.45;

        box-shadow:
            0 0 0 7px rgba(255, 32, 43, 0);
    }

}


@keyframes heroDotPulse {

    0%,
    100% {
        opacity: 0.8;

        transform: scale(0.85);
    }

    50% {
        opacity: 0;

        transform: scale(1.35);
    }

}


/* =========================================================
   TITLE WRAPPER
========================================================= */

.common-hero-title-wrap {
    position: relative;

    display: inline-flex;

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

    padding: 9px 15px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.common-hero-title-wrap h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Orbitron",
        "Rajdhani",
        "Arial",
        sans-serif;

    font-size: 46px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   FUTURISTIC CORNER BRACKETS
========================================================= */

.hero-corner {
    position: absolute;

    width: 21px;
    height: 21px;

    pointer-events: none;
}


/* Top Left */

.hero-corner-tl {
    top: 0;
    left: 0;

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


/* Top Right */

.hero-corner-tr {
    top: 0;
    right: 0;

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


/* Bottom Left */

.hero-corner-bl {
    bottom: 0;
    left: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.95);
}


/* Bottom Right */

.hero-corner-br {
    right: 0;
    bottom: 0;

    border-right: 1px solid rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.95);
}


/* =========================================================
   GALLERY HEADING
========================================================= */

.gallery-heading {
    max-width: 720px;

    margin: 0 auto 55px;
}


.gallery-heading .section-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


.gallery-heading h2 {
    margin: 0 0 15px;

    color: var(--color-dark);

    font-size: 42px;
    line-height: 1.2;

    font-weight: 500;
}


.gallery-heading h2 b {
    color: var(--color-primary);

    font-weight: 800;
}


.gallery-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--color-text);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
    position: relative;

    width: 100%;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    overflow: hidden;

    border-radius: 10px;

    aspect-ratio: 1 / 0.82;

    display: block;
}


.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

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

    border-radius: inherit;

    pointer-events: none;
}


.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.15) 60%,
            transparent);

    opacity: 0;

    transition: opacity 0.35s ease;
}


.gallery-overlay-content {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    transform: translateY(15px);

    transition: transform 0.35s ease;
}


.gallery-image-title {
    color: var(--color-white);

    font-size: 16px;

    font-weight: 700;
}


.gallery-zoom-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    color: var(--color-white);

    background: var(--color-primary);

    border-radius: 7px;

    font-size: 14px;
}


/* =========================================================
   HOVER
========================================================= */

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

    filter: brightness(0.82);
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}


/* =========================================================
   GALLERY MODAL
========================================================= */

.gallery-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

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

    padding: 30px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.gallery-modal.active {
    visibility: visible;

    opacity: 1;
}


.gallery-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.gallery-modal-content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;

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


.gallery-modal-image-wrap {
    position: relative;

    max-width: 1100px;
    max-height: 82vh;

    display: flex;

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


.gallery-modal-image-wrap img {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 6px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.5);
}


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

.gallery-modal-close,
.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;

    z-index: 5;

    border: 0;

    color: var(--color-white);

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

    display: inline-flex;

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

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.gallery-modal-close {
    top: 20px;
    right: 25px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    font-size: 20px;
}


.gallery-modal-prev,
.gallery-modal-next {
    top: 50%;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    font-size: 18px;

    transform: translateY(-50%);
}


.gallery-modal-prev {
    left: 25px;
}


.gallery-modal-next {
    right: 25px;
}


.gallery-modal-close:hover,
.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--color-primary);

    transform: translateY(-50%) scale(1.05);
}


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


/* =========================================================
   MODAL COUNTER
========================================================= */

.gallery-modal-counter {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

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

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


#galleryCurrent {
    color: var(--color-white);
}


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

@media (max-width: 991px) {

    .common-hero {
        height: 380px;
        min-height: 380px;
    }


    .common-hero-content {
        padding-top: 100px;
    }


    .common-hero-title-wrap h1 {
        font-size: 42px;
    }


    .hero-corner {
        width: 19px;
        height: 19px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .gallery-modal-image-wrap {
        max-width: 90%;
    }


    .gallery-modal-prev {
        left: 15px;
    }


    .gallery-modal-next {
        right: 15px;
    }

}


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

@media (max-width: 767px) {

    /* .common-hero {
        height: 300px;
        min-height: 300px;
    } */


    .common-hero-bg {
        object-position: center center;
    }



    .common-hero-content {
        padding-top: 120px;
    }


    .common-hero-sub {
        gap: 13px;

        margin-bottom: 16px;

        font-size: 11px;

        letter-spacing: 1.8px;
    }


    .common-hero-dot {
        width: 10px;
        height: 10px;

        flex-basis: 10px;
    }


    .common-hero-title-wrap {
        padding: 8px 13px;
    }


    .common-hero-title-wrap h1 {
        font-size: 34px;

        letter-spacing: 0.8px;
    }


    .hero-corner {
        width: 17px;
        height: 17px;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }


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


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

        gap: 18px;
    }


    .gallery-item {
        aspect-ratio: 1 / 0.72;
    }


    /* Always show a subtle overlay on mobile */

    .gallery-overlay {
        opacity: 1;

        padding: 15px;
    }


    .gallery-overlay-content {
        transform: translateY(0);
    }


    .gallery-modal {
        padding: 15px;
    }


    .gallery-modal-image-wrap {
        max-width: 100%;
        max-height: 75vh;
    }


    .gallery-modal-image-wrap img {
        max-height: 75vh;

        border-radius: 4px;
    }


    .gallery-modal-prev,
    .gallery-modal-next {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }


    .gallery-modal-prev {
        left: 5px;
    }


    .gallery-modal-next {
        right: 5px;
    }


    .gallery-modal-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;

        font-size: 17px;
    }


    .gallery-modal-counter {
        bottom: 15px;
    }

}


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

@media (max-width: 480px) {

    .common-hero {
        height: 280px;
        min-height: 280px;
    }

    .common-hero-content {
        padding-top: 140px;
    }

    .common-hero-sub {
        margin-bottom: 15px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .common-hero-title-wrap {
        padding: 8px 11px;
    }


    .common-hero-title-wrap h1 {
        font-size: 28px;

        letter-spacing: 0.5px;
    }


    .hero-corner {
        width: 15px;
        height: 15px;
    }

    .gallery-heading h2 {
        font-size: 30px;
    }


    .gallery-image-title {
        font-size: 14px;
    }


    .gallery-zoom-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}


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

.contact-section {
    position: relative;

    width: 100%;

    background: #020b1b;

    overflow: hidden;
}


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

.contact-wrapper {
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    gap: 0;

    align-items: stretch;

    background: #fff;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;


}


/* =========================================================
   LEFT CONTACT INFORMATION
========================================================= */

.contact-info {
    min-width: 0;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;
}


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

.contact-info-heading {
    max-width: 620px;

    margin-bottom: 42px;
}


.contact-info-heading h2 {
    margin: 0 0 25px;

    color: #1d2b3d;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.5px;

    text-transform: uppercase;
}


.contact-info-heading p {
    margin: 0;

    color: #1d2b3d;

    font-size: 16px;

    line-height: 1.9;

    font-weight: 600;
}


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

.contact-details {
    width: 100%;
}


/* =========================================================
   CONTACT DETAIL ITEM
========================================================= */

.contact-detail-item {
    width: 100%;

    min-height: 62px;
}


/* =========================================================
   CONTACT DETAIL ICON
========================================================= */

.contact-detail-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    color: var(--color-primary);

    background: #182435;

    font-size: 20px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-detail-item:hover .contact-detail-icon {
    color: var(--color-white);

    background: var(--color-primary);

    transform: translateY(-2px);
}


/* =========================================================
   CONTACT DETAIL CONTENT
========================================================= */

.contact-detail-content {
    min-width: 0;
}


.contact-detail-content h3 {
    margin: 0 0 7px;

    color: #1d2b3d;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 800;
}


.contact-detail-content p {

    margin: 0;

    color: #1d2b3d;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    width: 100%;

    padding: 55px 50px;

    background: #1d2b3d;
}


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

.contact-form {
    width: 100%;
}


/* =========================================================
   FORM GROUP
========================================================= */

.contact-form-group {
    position: relative;

    width: 100%;

    margin-bottom: 27px;
}


/* =========================================================
   FORM LABEL
========================================================= */

.contact-form-group label {
    display: block;

    margin: 0 0 15px;

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

    font-size: 13px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    display: block;

    width: 100%;

    padding: 0 0 14px;

    border: 0;

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

    outline: none;

    border-radius: 0;

    color: var(--color-white);

    background: transparent;

    font-family: var(--font-primary);

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

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


/* =========================================================
   SELECT
========================================================= */

.contact-select-group {
    position: relative;
}


.contact-form-group select {
    height: 32px;

    padding-right: 35px;

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;
}


/* Select placeholder */

.contact-form-group select:invalid {
    color: rgba(255, 255, 255, 0.56);
}


/* Select options */

.contact-form-group select option {
    color: #ffffff;

    background: #1a2636;
}


/* Custom arrow */

.contact-select-icon {
    position: absolute;

    right: 3px;
    bottom: 14px;

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

    font-size: 11px;

    pointer-events: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.contact-select-group:focus-within .contact-select-icon {
    color: var(--color-primary);

    transform: rotate(180deg);
}


/* =========================================================
   TEXTAREA
========================================================= */

.contact-message-group {
    margin-top: 5px;

    margin-bottom: 20px;
}


.contact-form-group textarea {
    min-height: 115px;

    padding: 0 0 12px;

    resize: vertical;
}


/* =========================================================
   FORM ACTION
========================================================= */

.contact-form-action {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding-top: 0;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    min-width: 152px;

    min-height: 39px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border: 0;

    border-radius: 0;

    outline: none;

    color: var(--color-white);

    background: var(--color-primary);

    font-family: var(--font-primary);

    font-size: 11px;

    line-height: 1;

    font-weight: 800;

    cursor: pointer;

    text-transform: uppercase;

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


.contact-submit:hover {
    background: #a31313;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(189, 23, 23, 0.22);
}


.contact-submit:active {
    transform: translateY(0);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   HERO + CONTACT VISUAL CONNECTION
========================================================= */

.common-hero+.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.025);
}


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

@media (max-width: 991px) {

    .contact-section {
        padding-top: 60px !important;

        padding-bottom: 60px !important;
    }


    .contact-wrapper {
        grid-template-columns:
            minmax(0, 1fr) minmax(0, 1fr);

        border-top-left-radius: 60px;
        border-bottom-left-radius: 60px;
    }


    .contact-info {
        padding-right: 35px;
    }


    .contact-info-heading {
        margin-bottom: 35px;
    }


    .contact-info-heading h2 {
        font-size: 34px;

        margin-bottom: 20px;
    }


    .contact-info-heading p {
        font-size: 14px;

        line-height: 1.8;
    }


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


    .contact-detail-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

}


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

@media (max-width: 767px) {

    .contact-section {
        padding-top: 50px !important;

        padding-bottom: 50px !important;
    }


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

        gap: 45px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;

        border-bottom-left-radius: 0px;
    }


    .contact-info {
        padding-right: 0;
    }


    .contact-info-heading {
        max-width: 100%;

        margin-bottom: 32px;
    }


    .contact-info-heading h2 {
        font-size: 32px;

        line-height: 1.2;
    }


    .contact-info-heading p {
        font-size: 14px;

        line-height: 1.8;
    }


    .contact-details {
        gap: 18px !important;
    }


    .contact-detail-item {
        min-height: 58px;
    }


    .contact-detail-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        font-size: 18px;
    }


    .contact-detail-content h3 {
        font-size: 15px;
    }


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


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


    .contact-form-group {
        margin-bottom: 25px;
    }


    .contact-form-group label {
        font-size: 12px;

        margin-bottom: 13px;
    }


    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {
        font-size: 13px;
    }


    .contact-submit {
        min-width: 145px;

        min-height: 40px;
    }

}


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

@media (max-width: 480px) {

    .contact-section {
        padding-top: 40px !important;

        padding-bottom: 40px !important;
    }


    .contact-wrapper {
        gap: 38px;
    }


    .contact-info-heading h2 {
        font-size: 28px;

        margin-bottom: 17px;
    }


    .contact-info-heading p {
        font-size: 13px;

        line-height: 1.75;
    }


    .contact-detail-item {
        gap: 12px !important;
    }


    .contact-detail-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 17px;
    }


    .contact-detail-content h3 {
        font-size: 14px;

        margin-bottom: 5px;
    }


    .contact-detail-content p {
        font-size: 13px;
    }


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


    .contact-form-group {
        margin-bottom: 23px;
    }


    .contact-form-group textarea {
        min-height: 105px;
    }


    .contact-submit {
        width: 100%;
    }

}


/*==================================================
    SERVICES PAGE - SERVICES CARDS
==================================================*/

.services-page-section {

    position: relative;

    background: #020b1b;

    overflow: hidden;

}


/*==================================================
    SECTION HEADING
==================================================*/

.services-page-heading {

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

}


.services-page-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.services-page-subtitle-line {

    width: 35px;

    height: 2px;

    background: var(--primary);

    display: inline-block;

}


.services-page-heading h2 {

    color: var(--white);

    font-size: clamp(34px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 20px;

}


.services-page-heading h2 strong {

    color: var(--primary);

    font-weight: 700;

}


.services-page-heading p {

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    color: #aab3c1;

    font-size: clamp(15px, 1.2vw, 18px);

    line-height: 1.75;

}


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

.services-page-grid {

    align-items: stretch;
    row-gap: 80px;

}


/*==================================================
    SERVICE CARD
==================================================*/

.services-page-card {

    position: relative;

    min-height: 270px;

    padding: 70px 32px 35px;

    /* Glass Background */
    background: rgba(255, 255, 255, 0.08);


    /* Blur Glass Effect */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    /* overflow: hidden; */

    text-align: center;

    isolation: isolate;

    transition:
        transform .35s ease,
        background-color .35s ease,
        box-shadow .35s ease;
    cursor: pointer;
}

.services-page-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.02) 45%,
            rgba(255, 255, 255, 0.05));

    pointer-events: none;

    z-index: -1;

}




/*
    Diagonal bottom-right cut
*/

.services-page-card::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 0;

    height: 0;

    border-style: solid;

    border-width: 0 0 48px 48px;

    border-color:
        transparent transparent var(--primary) transparent;

    z-index: 1;

}




/*==================================================
    CARD HOVER
==================================================*/

.services-page-card:hover {

    transform: translateY(-8px);

    background: #202d3f;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);

}


/*==================================================
    CARD NUMBER
==================================================*/

.services-page-number {

    position: absolute;

    top: 18px;

    right: 18px;

    color: #8d96a5;

    font-size: 15px;

    font-weight: 700;

    line-height: 1;

}


/*==================================================
    CARD ICON
==================================================*/

.services-page-icon {

    position: absolute;

    top: -16px;

    left: 50%;

    transform: translateX(-50%);

    width: 72px;

    height: 72px;

    background: var(--primary);

    color: var(--white);

    font-size: 32px;

    z-index: 2;

    transition:
        transform .35s ease,
        background-color .35s ease;

}


.services-page-card:hover .services-page-icon {

    transform:
        translateX(-50%) translateY(-3px);

}


/*==================================================
    CARD CONTENT
==================================================*/

.services-page-content {

    position: relative;

    z-index: 1;

}


.services-page-content h3 {

    margin-bottom: 13px;

    color: var(--white);

    font-size: clamp(17px, 1.45vw, 22px);

    font-weight: 800;

    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: .2px;

}


.services-page-content p {

    max-width: 270px;

    margin-left: auto;
    margin-right: auto;

    color: #aeb7c5;

    font-size: clamp(14px, 1vw, 16px);

    font-weight: 500;

    line-height: 1.65;

}


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

@media (max-width: 991px) {

    .services-page-section {

        padding-top: 70px;

        padding-bottom: 70px;

    }


    .services-page-heading {

        margin-bottom: 45px;

    }


    .services-page-heading h2 {

        font-size: clamp(32px, 5vw, 48px);

    }


    .services-page-card {

        min-height: 270px;

        padding-left: 28px;

        padding-right: 28px;

    }


    .services-page-content h3 {

        font-size: 20px;

    }


    .services-page-content p {

        font-size: 15px;

    }

}


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

@media (max-width: 576px) {

    .services-page-section {

        padding-top: 50px;

        padding-bottom: 50px;

    }


    .services-page-heading {

        margin-bottom: 40px;

    }


    .services-page-subtitle {

        font-size: 13px;

        letter-spacing: 1.5px;

    }


    .services-page-heading h2 {

        font-size: 32px;

        line-height: 1.1;

        margin-bottom: 16px;

    }


    .services-page-heading p {

        font-size: 15px;

        line-height: 1.65;

    }


    .services-page-card {

        min-height: 265px;

        padding: 70px 25px 35px;

    }


    .services-page-icon {

        width: 68px;

        height: 68px;

        font-size: 29px;

    }


    .services-page-number {

        top: 18px;

        right: 17px;

        font-size: 14px;

    }


    .services-page-content h3 {

        font-size: 20px;

    }


    .services-page-content p {

        max-width: 300px;

        font-size: 15px;

        line-height: 1.65;

    }

}


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

.servicesdetails-page-section {

    position: relative;

    width: 100%;

    background: var(--color-white);

    overflow: hidden;

}




/*==================================================
    SERVICE CONTENT
==================================================*/

.servicesdetails-page-content {

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

}


/*==================================================
    SERVICE IMAGE
==================================================*/

.servicesdetails-page-image {

    position: relative;

    width: 100%;

    height: 460px;

    overflow: hidden;

    clip-path: polygon(0 0,
            100% 0,
            100% 84%,
            90% 100%,
            0 100%);

}


.servicesdetails-page-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .04),
            rgba(0, 0, 0, .08));

    pointer-events: none;

}


.servicesdetails-page-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;

}


.servicesdetails-page-image:hover img {

    transform: scale(1.04);

}


/*==================================================
    SERVICE INFO
==================================================*/

.servicesdetails-page-info {

    padding: 10px 0 10px 0;

}


/*==================================================
    HEADING
==================================================*/

.servicesdetails-page-heading {

    margin-bottom: 15px;

}


.servicesdetails-page-heading h2 {

    margin: 0;

    color: #101a2b;

    font-size: clamp(34px, 3.2vw, 52px);
    font-family: "Arial Narrow", Arial, sans-serif;

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -1px;

    text-transform: uppercase;

}


/*==================================================
    DESCRIPTION
==================================================*/

.servicesdetails-page-description {

    max-width: 650px;

    margin-bottom: 25px;

}


.servicesdetails-page-description p {

    margin: 0;

    color: #707887;

    font-size: clamp(15px, 1.15vw, 18px);

    font-weight: 600;

    line-height: 1.7;

}


/*==================================================
    LIST HEADING
==================================================*/

.servicesdetails-page-list-heading {

    margin-bottom: 12px;

}


.servicesdetails-page-list-heading h3 {

    margin: 0;

    color: #182235;

    font-size: clamp(15px, 1.1vw, 18px);

    font-weight: 800;

    line-height: 1.35;

    text-transform: uppercase;

}


/*==================================================
    SERVICE LIST
==================================================*/

.servicesdetails-page-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.servicesdetails-page-list li {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #6d7583;

    font-size: clamp(14px, 1vw, 17px);

    font-weight: 600;

    line-height: 1.5;

}


.servicesdetails-page-list li i {

    flex: 0 0 auto;

    color: var(--color-primary);

    font-size: 14px;

}



/*==================================================
    MORE SERVICE DETAILS
==================================================*/

.servicesdetails-page-secondmore-detail {

    width: 100%;

    margin-top: 80px;

    padding-top: 70px;

    border-top: 1px solid #e5e8ed;

}


/*==================================================
    MORE DETAILS HEADING
==================================================*/

.servicesdetails-page-secondmore-heading {

    max-width: 850px;

    margin-bottom: 45px;


}


.servicesdetails-page-secondmore-heading h4 {

    display: block;

    margin-bottom: 12px;

    color: var(--color-primary);

    font-family: var(--font-primary);

    font-size: 15px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.servicesdetails-page-secondmore-heading h2 {

    margin: 0;

    color: #101a2b;

    font-size: clamp(34px, 4vw, 54px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.2px;
    font-family: "Arial Narrow", Arial, sans-serif;


}


.servicesdetails-page-secondmore-heading h2 strong {

    color: var(--color-primary);

    font-weight: 800;

}


/*==================================================
    MORE DETAILS CONTENT
==================================================*/

.servicesdetails-page-secondmore-content {

    grid-template-columns: repeat(2, minmax(0, 1fr));

}


.servicesdetails-page-secondmore-column {

    padding: 35px;

    background: #f6f7f9;

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

}


.servicesdetails-page-secondmore-column h3 {

    margin: 0 0 18px;

    color: #101a2b;

    font-size: clamp(19px, 1.5vw, 24px);

    font-weight: 800;

    line-height: 1.25;

    text-transform: uppercase;

}


.servicesdetails-page-secondmore-column p {

    margin: 0 0 18px;

    color: #626b79;

    font-size: clamp(16px, 1.1vw, 18px);

    font-weight: 500;

    line-height: 1.8;

}


.servicesdetails-page-secondmore-column p:last-child {

    margin-bottom: 0;

}


/*==================================================
    BOTTOM SERVICE CONTENT
==================================================*/

.servicesdetails-page-secondmore-bottom {

    margin-top: 35px;

    padding: 40px;

    background: #101a2b;

}


.servicesdetails-page-secondmore-bottom-heading {

    margin-bottom: 18px;

}


.servicesdetails-page-secondmore-bottom-heading h3 {

    margin: 0;

    color: var(--color-white);

    font-size: clamp(20px, 1.6vw, 25px);

    font-weight: 800;

    line-height: 1.3;

    text-transform: uppercase;

}


.servicesdetails-page-secondmore-bottom-content {

    max-width: 1050px;

}


.servicesdetails-page-secondmore-bottom-content p {

    margin: 0 0 18px;

    color: #c7ced8;

    font-size: clamp(16px, 1.1vw, 18px);

    font-weight: 500;

    line-height: 1.8;

}


.servicesdetails-page-secondmore-bottom-content p:last-child {

    margin-bottom: 0;

}


/*==================================================
    GET IN TOUCH CTA
==================================================*/

.servicesdetails-page-cta {

    width: 100%;

    padding: 75px 0;

    background: var(--color-primary);

}


.servicesdetails-page-cta-wrapper {

    position: relative;

}


.servicesdetails-page-cta-content {

    max-width: 800px;

}


.servicesdetails-page-cta-content>span {

    display: block;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, .75);

    font-size: 15px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.servicesdetails-page-cta-content h2 {

    margin: 0 0 15px;

    color: var(--color-white);

    font-size: clamp(34px, 4vw, 55px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1px;

}


.servicesdetails-page-cta-content h2 strong {

    display: block;

    font-weight: 800;

}


.servicesdetails-page-cta-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, .82);

    font-size: clamp(16px, 1.1vw, 18px);

    font-weight: 500;

    line-height: 1.7;

}


/*==================================================
    CTA BUTTON
==================================================*/

.servicesdetails-page-cta-action {

    flex: 0 0 auto;

}


.servicesdetails-page-cta-button {

    min-width: 190px;

    min-height: 58px;

    padding: 15px 28px;

    background: #101a2b;

    color: var(--color-white);

    font-family: var(--font-primary);

    font-size: 15px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .5px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;

}


.servicesdetails-page-cta-button:hover {

    background: var(--color-white);

    color: #101a2b;

    transform: translateY(-3px);

}




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

@media (max-width: 991px) {

    .servicesdetails-page-section {

        padding-top: 60px;

        padding-bottom: 60px;

    }




    .servicesdetails-page-content {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .servicesdetails-page-image {

        height: 420px;

    }


    .servicesdetails-page-info {

        padding: 0;

    }


    .servicesdetails-page-heading h2 {

        font-size: clamp(34px, 5vw, 48px);

    }


    .servicesdetails-page-description {

        max-width: 100%;

    }

    .servicesdetails-page-secondmore-detail {

        margin-top: 60px;

        padding-top: 55px;

    }


    .servicesdetails-page-secondmore-heading {

        margin-bottom: 35px;

    }


    .servicesdetails-page-secondmore-heading h2 {

        font-size: clamp(34px, 5vw, 48px);

    }


    .servicesdetails-page-secondmore-content {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .servicesdetails-page-secondmore-column {

        padding: 30px;

    }


    .servicesdetails-page-secondmore-bottom {

        padding: 35px;

    }


    .servicesdetails-page-cta {

        padding: 60px 0;

    }


    .servicesdetails-page-cta-wrapper {

        align-items: flex-start;

    }


    .servicesdetails-page-cta-content h2 {

        font-size: clamp(34px, 5vw, 48px);

    }


}


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

@media (max-width: 576px) {

    .servicesdetails-page-section {

        padding-top: 50px;

        padding-bottom: 50px;

    }

    .servicesdetails-page-content {

        gap: 30px;

    }


    .servicesdetails-page-image {

        height: 280px;

        clip-path: polygon(0 0,
                100% 0,
                100% 88%,
                90% 100%,
                0 100%);

    }


    .servicesdetails-page-heading {

        margin-bottom: 14px;

    }


    .servicesdetails-page-heading h2 {

        font-size: 32px;

        line-height: 1.05;

        letter-spacing: -.5px;

    }


    .servicesdetails-page-description {

        margin-bottom: 22px;

    }


    .servicesdetails-page-description p {

        font-size: 15px;

        line-height: 1.65;

    }


    .servicesdetails-page-list-heading h3 {

        font-size: 15px;

    }


    .servicesdetails-page-list {

        gap: 8px;

    }


    .servicesdetails-page-list li {

        font-size: 14px;

    }

    .servicesdetails-page-secondmore-detail {

        margin-top: 50px;

        padding-top: 45px;

    }


    .servicesdetails-page-secondmore-heading {

        margin-bottom: 30px;

    }


    .servicesdetails-page-secondmore-heading span {

        font-size: 13px;

    }


    .servicesdetails-page-secondmore-heading h2 {

        font-size: 32px;

        line-height: 1.08;

        letter-spacing: -.5px;

    }


    .servicesdetails-page-secondmore-content {

        gap: 20px;

    }


    .servicesdetails-page-secondmore-column {

        padding: 25px 22px;

    }


    .servicesdetails-page-secondmore-column h3 {

        margin-bottom: 15px;

        font-size: 19px;

    }


    .servicesdetails-page-secondmore-column p {

        font-size: 16px;

        line-height: 1.75;

    }


    .servicesdetails-page-secondmore-bottom {

        margin-top: 20px;

        padding: 28px 22px;

    }


    .servicesdetails-page-secondmore-bottom-heading h3 {

        font-size: 19px;

    }


    .servicesdetails-page-secondmore-bottom-content p {

        font-size: 16px;

        line-height: 1.75;

    }


    /* CTA */

    .servicesdetails-page-cta {

        padding: 50px 0;

    }


    .servicesdetails-page-cta-wrapper {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }


    .servicesdetails-page-cta-content h2 {

        font-size: 32px;

        line-height: 1.08;

    }


    .servicesdetails-page-cta-content p {

        font-size: 16px;

        line-height: 1.7;

    }


    .servicesdetails-page-cta-button {

        min-width: 175px;

        min-height: 55px;

        font-size: 14px;

    }


}