:root {
    /* --font-heading: 'Playfair Display', serif; */
    --font-heading: 'Inter', sans-serif;
    --font-base: 'Poppins', sans-serif;
    --color-primary: #da242b;
    --color-secondary: #062462;
    /* --color-primary: #0A66C2;
  --color-secondary: #FFD700;
  --color-dark: #222;
  --color-light: #f5f5f5; */
    --color-text: #767676;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 2rem;
    --heading-xl: 3rem;
    --heading-lg: 2.25rem;
    --heading-md: 1.5rem;
    --heading-sm: 1.2rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --font-size: 16px;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    /* Inter supports variable weights */
    font-style: normal;
    font-display: swap;
}


/* Source Sans Pro – For Body Text */

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-family: var(--font-base);
}

.font-sm {
    font-size: var(--fs-sm);
}

.btn-main {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: var(--fs-base);
    font-weight: 600;
    color: #fff;
    background-color: var(--color-primary);
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    z-index: 0;
    transition: color 0.6s ease;
    text-decoration: none;
}

.btn-main::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background-color: var(--color-secondary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    border-radius: 0.5rem;
}

.btn-main:hover::before {
    width: 100%;
    height: 100%;
}

.btn-main:hover {
    color: #fff;
}

.hero-button .btn-main-2 {
    margin-top: 38px;
    margin-left: 50px;
}

.btn-main-2 {
    font-size: 15px;
    padding: 15px 42px 15px 42px;
    text-decoration: none;
    background: #062462;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px 35px 5px 5px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.btn-main-2::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px 35px 5px 5px;
    background: #da242b;
    transform: scale(0);
    transition: .5s;
}

.btn-main-2:hover::before {
    transform: scale(1);
}


/* CSS */

.header {
    padding-left: 100px;
    padding-right: 100px;
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .px-custom {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.navbar {
    background-color: white;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1rem;
}

.navbar-brand {
    width: 300px;
}

.nav-icon {
    width: 25px;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--color-secondary);
    font-weight: 600 !important;
    letter-spacing: 1px;
    margin-right: var(--fs-lg);
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #dc3545;
}

.hero-section {
    background: url(../images/home/hero-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 790px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: 3.9s running fadeInLeft;
}

.hero-content::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 100%;
    height: 100%;
    background: url(../images/home/shape.webp);
    background-repeat: no-repeat;
}

.hero-content h4 {
    font-size: var(--fs-base);
    color: var(--color-primary);
    padding: 0 0 14px 90px;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.hero-content h3 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    color: var(--color-secondary);
    text-transform: uppercase;
    padding-left: 50px;
}

.hero-section span {
    color: var(--color-primary);
}

.hero-thumb img {
    margin: 0 0 0 136px;
    animation: 3s running fadeInRight;
    width: 100%;
}

.hero-thumb {
    display: flex;
    align-items: end;
}

@keyframes dance {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(1);
    }
}

.hero-shape {
    position: absolute;
    top: -108px;
    left: -82px;
    animation: dance 4s alternate infinite;
}

.feature-bg {
    padding: 65px 67px 50px;
    border-radius: 10px;
    filter: drop-shadow(0px 10px 15px rgba(206, 206, 206, 0.4));
    background-image: linear-gradient(rgba(255, 255, 255, 0.903), rgba(255, 255, 255, 0.857)), /* Gradient overlay */
    url('../images/home/bg-about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.feature-thumb {
    position: relative;
    z-index: 1;
}

.feature-thumb::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: rgba(218, 36, 43, 0.8);
    transition: .5s;
    border-radius: 5px 5px 0 0;
}

.feature-thumb::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(6, 36, 98, 0.8);
    transition: .5s;
    border-radius: 0 0 5px 5px;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url(../images/home/feature-ct.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 28px 30px 26px;
    transition: .5s;
}

.feature-content h2 {
    font-size: var(--heading-md);
    font-weight: 600;
    color: #fff;
}

.feature-single-box:hover .feature-thumb:before,
.feature-single-box:hover .feature-thumb:after {
    height: 50%;
}

.feature-single-box:hover a.feature-icon2 {
    top: 110px;
}

.feature-single-box:hover a.feature-icon2 svg {
    opacity: 1;
    visibility: visible;
    padding: 1rem;
}

a.feature-icon2 {
    position: relative;
    top: 0;
    left: 55px;
    z-index: 1;
    transition: .6s;
}

.feature-single-box:hover .feature-content {
    opacity: 0;
}

.feature-single-box:hover .feature-icon img {
    opacity: 0;
}

a.feature-icon2 svg {
    font-size: 24px;
    width: 66px;
    height: 66px;
    line-height: 66px;
    color: #da242b;
    background: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 66px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    z-index: 2;
}

.feature-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    transition: .5s;
}

.section-title h3 span {
    color: var(--color-primary);
}

.section-title h3 {
    font-size: var(--heading-lg);
    line-height: var(--heading-lg) !important;
    font-weight: 700;
    line-height: 50px;
    color: var(--color-secondary);
}

.section-title.white h3 {
    color: white;
}

.section-title h4 {
    font-size: var(--heading-sm);
    color: #da242b;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 8px;
}

.section-title p {
    font-size: var(--fs-base);
    font-weight: 500;
}

.tab-content {
    padding: 2rem 0;
}

.service-section {
    padding: 60px 0;
}

.tabs.active {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.tabs {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

.tabs li {
    line-height: 38px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tabs li a {
    font-size: var(--fs-lg);
    /* background: url(../images/resource/tab1.jpg); */
    background-color: var(--color-secondary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-family: 'Inter';
    font-weight: 600;
    display: inline-block;
    outline: none;
    padding: 1.25rem 4rem;
    transition: all 0.5s ease-in-out;
    margin-right: 30px;
    border-radius: 5px;
    text-decoration: none;
}

li.current a {
    background-color: var(--color-primary);
}

.service-item-list ul {
    padding: 0;
    margin: 0;
}

.service-item-list ul li {
    color: #062461;
    list-style: none;
    font-size: calc(var(--fs-base) - 0.15rem);
    font-weight: 400;
    padding: 5px 0 3px;
}

.service-item-list ul li svg {
    width: 30px;
    color: #da242b;
    padding-right: 5px;
}

.tabs li.current:before {
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    right: 30px;
    bottom: -10px;
    height: 20px;
    margin: auto;
    width: 19px;
    background: #DD4343;
    transform: rotate(45deg);
    transition: .5s;
}

.tab-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tab-thumb img {
    width: 100%;
    border-radius: 5px;
}

.tab-thumb {
    margin-right: 65px;
    position: relative;
    z-index: 1;
}

.tab-thumb:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 0% 100%);
    transform: scale(0);
    transform-origin: top left;
    background-image: linear-gradient(-86deg, #062462 0%, #062462 100%);
    pointer-events: none;
    transition: all 500ms linear;
    border-radius: 5px;
    opacity: .25;
}

.tab-thumb:hover:before {
    transform: scale(1);
}

.counter-banner {
    background: url('../images/home/banner-section-img.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
}

.counter-grid {
    position: relative;
    width: fit-content;
    margin-left: auto;
    width: 100%;
}

.counter-box {
    font-size: var(--fs-xl);
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: rgba(255, 0, 0, 0.24) 0px 3px 8px;
}

.counter-box h3 {
    font-size: var(--heading-xl);
    font-weight: 500;
}

.counter-box p {
    font-size: var(--fs-base);
}

.row.testi-bg {
    margin-top: -58px;
}

.testimonial-section {
    padding: 0 0 100px;
}

.testmn-bg {
    background: url(../images/home/testi-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 20px 41px;
    border-radius: 0 10px 10px;
    position: relative;
    z-index: 1;
}

.testmn-bg::before {
    position: absolute;
    content: "";
    left: -57px;
    top: 0;
    height: 58px;
    width: 58px;
    background: #8C0B10;
    clip-path: polygon(30% 100%, 100% 0%, 100% 100%, 100% 100%);
}

.review-icon {
    padding-bottom: 2rem;
}

.review-icon img {
    width: 200px;
    margin-right: 4px;
}

p.testi-desc {
    font-size: var(--fs-lg);
    color: #fff;
    font-weight: 300;
    font-family: 'Inter';
    line-height: 32px;
    padding: 32px 0 9px;
}

.user-name h4 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 2px 0 3px;
}

.teastimonial-single-box {
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    padding: 0 55px 0;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: white;
}

.form-box input,
.form-box select,
.form-box textarea {
    min-height: 52px;
    background-color: #f6f6f6;
    padding: 1rem;
    border: 0;
    transition: .5s;
    display: block;
    width: 100%;
    color: #0D0E14;
    margin-bottom: 20px;
    outline: 0;
    border-radius: 5px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: #da242b;
    outline: 0;
    box-shadow: 0 0 6px rgb(218, 36, 43, 0.6);
}

.contact-form-box {
    padding: 46px 50px 46px;
    border-radius: 10px;
    filter: drop-shadow(0px 10px 15px rgba(186, 186, 186, 0.4));
    background-color: #ffffff;
    margin-left: 18px;
    height: 100%;
}

.user-pic img {
    width: 80px;
    height: 80px;
}

.testi-quote-icon {
    padding: 1rem;
    background-color: white;
    width: fit-content;
    border-radius: 1rem;
    margin: auto;
}

.testi-quote-icon img {
    width: 50px;
    height: 50px;
}

.footer-section {
    background: #052361;
    padding: 0 0 50px;
}

.footer-bottom-section {
    padding: 23px 0px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(5, 35, 97);
}

.row.subscribe-section {
    background: url(../images/home/subcribe-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 28px 30px;
    margin-bottom: 50px;
    align-items: center;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.subscribe-contact-info {
    display: inline-flex;
}

.subscribe-icon {
    padding: 1rem;
    border-radius: 50%;
    min-width: 70px;
    width: 70px;
    height: 70px;
}

.subscribe-icon.blue {
    background-color: var(--color-secondary);
}

.subscribe-icon.red {
    background-color: var(--color-primary);
}

.subscribe-icon img {
    max-width: 100%;
}

span.subscribe-text {
    font-size: var(--fs-sm);
    color: rgb(255, 255, 255);
}

h3.subscribe-phone-number {
    font-size: var(--fs-base);
    color: rgb(255, 255, 255);
    margin-top: 6px;
}

.subscribe-contact {
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info-desc p {
    color: rgb(205, 211, 223);
    padding: 25px 0px 5px;
}

h4.widget-title {
    font-size: var(--fs-lg);
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-top: -5px;
    padding: 0px 0px 13px;
}

ul.footer-menu li {
    display: block;
    list-style: none;
    padding: 10px 0px 0px;
}

ul.footer-menu li:first-child {
    padding: 0;
}

ul.footer-menu,
.company-work-hour ul {
    padding: 0;
}

ul.footer-menu li a {
    color: rgb(255, 255, 255);
    font-size: 15px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    font-weight: 300;
    transition: 0.6s;
    padding: 0px 0px 0px 15px;
    text-decoration: none;
}

ul.footer-menu li a::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: rgb(218, 36, 43);
    border-radius: 6px;
}

.company-work-hour ul li {
    display: block;
    color: rgb(255, 255, 255);
    opacity: 0.8;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 300;
    list-style: none;
    padding: 0px 0px 7px;
    border-bottom: 1px solid rgb(25, 53, 110);
}

.company-work-hour ul li span {
    float: right;
    opacity: 0.7;
}

.logo_thumb {
    background-color: rgba(255, 255, 255, 0.578);
    /* translucent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    /* or flex/grid depending on content */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.breatcam-section {
    background: url(../images/breatcam-bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 415px;
}

.breatcam-content ul li a:before {
    position: absolute;
    content: "";
    top: 5px;
    right: 6px;
    width: 1px;
    height: 12px;
    background: #fff;
}

.breatcam-content .hero-heading {
    color: #fff;
    font-size: 48px;
}

.breatcam-content ul {
    display: flex;
    gap: 0.5rem;
    padding: 0;
}

.breatcam-content ul li {
    display: inline-block;
    list-style: none;
    font-weight: 400;
    padding: 15px 0 0;
    display: flex;
    align-self: start;
    line-height: 1.2rem;
}

.breatcam-content ul li a {
    font-size: var(--fs-lg);
    color: var(--color-primary);
    padding-right: 17px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    ;
}

.breatcam-content ul li a span {
    line-height: 1rem;
}

.breatcam-content ul li {
    color: #fff;
}

.breatcam-content svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.about-right-thumb {
    position: relative;
}

.about-right-thumb img {
    width: 100%;
}

.about-section.upp {
    padding: 100px 0 90px;
    background: #fff;
}

.abt-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
    min-height: 100%;
    transition: all 0.3s ease-in;
    background-color: white;
}

.abt-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transform: translateY(-10px);
    background-color: #ffb8ba25;
}

.abt-card .head {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    border-bottom: 1px solid;
    width: 100%;
    padding-bottom: 1rem;
}

.abt-card .head svg {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
}

.abt-card .head h3 {
    font-size: var(--heading-lg);
    line-height: 1;
    color: black;
    margin-bottom: 0;
}

.abt-card p {
    font-size: var(--fs-base);
}

.feature-box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 250px !important;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba (255, 255, 255, 0.2);
    box-shadow: rgba(255, 0, 0, 0.24) 0px 3px 8px;
}

.feature-box img {
    width: 60px;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: var(--heading-md);
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #e4e4e4;
}

.about-banner {
    padding: 50px;
    background: url(../images/home/banner-section-img.jpg) center / cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}


/* .feature-box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 250px !important;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba (255, 255, 255, 0.2);
    box-shadow: rgba(255, 0, 0, 0.24) 0px 3px 8px; */

.about-banner .swiper-pagination {
    top: unset;
    bottom: -3px !important;
}

.about-banner .features-swiper {
    padding: 1rem 0 3rem;
}

.about-banner h3 {
    font-size: var(--heading-lg);
    color: white;
}

.imp-info {
    padding: 3rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 1rem;
}

.imp-info h3 {
    font-size: var(--heading-lg);
    color: #0D0E14;
}

.process-steps {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #09253F;
}

.step p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.profile-owner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: fit-content;
    margin-top: 1rem;
    border-radius: 1rem;
}

.profile-owner img {
    width: 50px;
}

.profile-owner h4 {
    font-size: var(--heading-md);
    color: var(--color-primary);
    margin-bottom: 0;
}

.profile-owner p {
    font-size: var(--fs-base);
    margin-bottom: 0;
}

/* .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #09253F;
} */

.service-page {
    padding: 40px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item::before {
    content: "";
    background-image: url(../images/icons/service-icon.png);
    width: 30px;
    height: 30px;
    /* background-color: var(--color-secondary); */
    transition: color 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0.5rem;
}

.service-item:hover {
    background-color: #09253F;
    color: #fff;
    transform: translateY(-5px);
}

.service-item:hover::before {
    color: #fff;
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.modal-service .modal-content {
    padding: 1rem 1.5rem;
}

.modal-service .modal-header {
    padding: 0;
    padding-bottom: 1rem;
}

.modal-service .modal-body {
    padding: 1rem 0;
    font-size: var(--fs-base);
    color: #555;
}

.modal-service .modal-header .modal-title {
    font-size: var(--heading-sm);
}

.modal-service .btn-close {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 1px solid #d7d7d7;
}

.accordian-section {
    padding: 60px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    font-size: var(--heading-sm);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: var(--fs-base);
}

.accordion-item {
    /* background-color: #c8d8f9; */
    border-left: 3px solid var(--color-secondary);
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:first-of-type,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:last-of-type {
    border-radius: 0;
}

.accordion-button.collapsed {
    background-color: #c8d8f9;
}

.accordion-item:not(.collapsed) {
    background-color: #e9ebff;
}

.about-banner.service span {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    font-size: var(--fs-sm);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba (255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.about-banner.service h3 {
    font-size: var(--heading-lg);
}

.ri-zoom-line {
    background-image: url(../images/icons/zoom.png);
    width: 20px;
    height: 20px;
    background-size: cover;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.gallery-item:hover .overlay {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.icon-btn {
    background: #fff;
    border: none;
    font-size: 24px;
    color: #333;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .icon-btn {
    opacity: 1;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease forwards;
    z-index: 9999;
}

.popup-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #fff;
    border-radius: 8px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 36px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease;
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-nav.prev {
    left: 20px;
}

.popup-nav.next {
    right: 20px;
}

.contact-card-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 1rem;
    text-decoration: none;
}

.contact-card h5 {
    font-size: var(--heading-sm);
    margin-bottom: 0;
    color: black;
}

.contact-card p {
    font-size: var(--fs-base);
    color: #333;
}

.contact-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0.5rem;
    object-fit: contain;
    background-color: var(--color-primary);
}

.upper.blog-section {
    background: #fff;
    padding: 100px 0 70px;
}

.single-blog-box {
    margin-bottom: 30px;
}

.blog-thumb {
    position: relative;
    z-index: 1;
}

.blog-thumb:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-image: linear-gradient(10deg, #062462 0%, #062462 100%);
    visibility: hidden;
    transition: .5s;
    border-radius: 5px;
    opacity: .45;
}

.single-blog-box:hover .blog-thumb:before {
    width: 100%;
    left: 0;
    visibility: visible;
}

.meta-blog p:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #da242b;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

.single-blog-box:hover .meta-blog p:before {
    transform: scale(1);
}

.blog-thumb img {
    border-radius: 5px;
    width: 100%;
}

.meta-blog {
    position: absolute;
    bottom: -20px;
    left: 30px;
}

.meta-blog .date {
    font-size: var(--fs-base);
    padding: 0.5rem 1rem;
    background: #062462;
    color: #fff;
    display: inline-block;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.blog-content {
    padding: 32px 35px 25px;
    transition: .5s;
    background: #f6f6f6;
    border-radius: 5px;
}

.blog-title a {
    font-size: var(--heading-md);
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    color: var(--color-secondary);
}

.blog-btn a {
    font-size: var(--fs-base);
    color: #141840;
    font-weight: 500;
    padding: 22px 0 0;
    display: inline-block;
    transition: .5s;
    text-decoration: none;
}

.blog-btn a svg {
    width: 24px;
    height: 24px;
    position: relative;
    left: 5px;
    transition: .5s;
}

.single-blog-box:hover .blog-btn a {
    color: red;
}

.single-blog-box:hover .blog-btn a svg {
    left: 14px;
}

.main-blog {
    padding: 100px 0;
}

.blog-container {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 1rem;
}

.blog-container .blog-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-container .blog-title {
    font-size: calc(var(--heading-md) + 0.2rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.blog-container p {
    font-size: var(--fs-base);
    color: #616161;
}

h3.blog-title-small {
    font-size: var(--heading-md);
    font-weight: 700;
    color: var(--color-secondary);
}
h2.blog-title-small {
    font-size: var(--heading-md);
    font-weight: 700;
    color: var(--color-secondary);
}
.blog-container p a {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-primary);
}

.blog-date.btn-main-2 {
    border-radius: 5px 5px 5px 5px;
    position: relative;
    top: -30px;
    left: 20px;
}

.blog-date.btn-main-2::before {
    border-radius: 5px 5px 5px 5px;
}

.recent-posts ul li {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    background-color: white;
    margin-bottom: 14px;
    border-radius: 0.5rem;
}

.entry-image a img {
    width: 130px;
    height: auto;
    border-radius: 5px;
}

.recent-posts p {
    font-size: var(--fs-base);
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.recent-posts-details {
    margin-left: 15px;
    width: 100%;
}

.recent-posts p a {
    text-decoration: none;
    color: var(--color-secondary);
}

.recent-posts ul {
    padding-left: 0;
}
.blog-side-bar > h3{
    font-size: var(--heading-md);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-primary);

}

.blog-container ul li,
.blog-container ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-size: var(--fs-base)
}
.entry-date{
    font-size: var(--fs-sm);
    font-weight: 500;
}