:root {
    --primary-color: #FF6B00;
    --primary-hover: #e55d00;
    --background-color: #f0f0f0;
    --card-bg: #FFFFFF;
    --text-color: #1C1C1C;
    --border-color: #cdcdcd;
    --secondary-color: #01165A;
    --secondary-color-light: #7489cc85;
    --font-family: 'Poppins', sans-serif;
    /* --font-size: 16px; */
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('/font/Oswald-VariableFont_wght.ttf') format('woff2'), ;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.txt-primary {
    color: var(--primary-color);
}

.double-navbar {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

.double-navbar .logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #09253F;
    width: 220px;
}

.double-navbar .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    color: white;
    background-color: #09253F;
}

.custom-navbar {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 1030;
}


/* Logo Sizing */

.navbar-brand {
    width: 140px;
}


/* Navbar Links */

.navbar-nav .nav-link {
    color: white;
    padding: 0.3rem 1rem !important;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease-in;
    border-bottom: 2px solid transparent;
    min-width: 100px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--primary-color);
    background-color: rgba(255, 217, 0, 0.177);
    color: white;
}
.nav-drop{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-drop svg{
    width: 1.5rem;
    height: 1.5rem;
}


/* Icon Styling */

.nav-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    transition: color 0.3s ease-in;
}

.nav-icon a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: white;
}

.nav-icon svg:hover {
    color: var(--primary-color);
}


/* Custom Toggler with Animation */

.custom-toggler {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 1051;
}

.custom-toggler span {
    background: #fff;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.custom-toggler span:nth-child(1) {
    top: 0;
}

.custom-toggler span:nth-child(2) {
    top: 9px;
}

.custom-toggler span:nth-child(3) {
    bottom: 0;
}

.custom-toggler.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.custom-toggler.open span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}


/* Nav Links Layout */

.navbar-nav {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}


/* Dropdown on Hover */

.custom-hover-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
    transform: translateY(10px);
}

.custom-hover-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
    padding: 0.5rem 0;
}
.double-btn{
    display: flex;
}

.double-btn a{
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    width: 100px;
    min-width: fit-content;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease-in;
}
.double-btn .left{
    background-color: var(--primary-color);
    
}
.double-btn .right{
    background-color: var(--secondary-color);
    border-left: 2px solid white;

}
.double-btn .left:hover{
    background-color: var(--primary-hover);
}
.double-btn .right:hover{
    background-color: #000d37;
}
.nav-tabs .nav-link{
    padding: 0.5rem 1rem;
    min-width: 80px;
    border-bottom:2px solid transparent ;
    color: var(--text-color);
    border: 0;
    transition: border-bottom 0.2s ease-in-out;

}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover{
    border-bottom: 2px solid var(--primary-color);
}
/* .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:focus-visible{
    
} */

/* Responsive Adjustments */

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    .navbar-collapse {
        text-align: center;
    }
}

.hero-section-main {
    position: relative;
    display: flex;
}

.hero-section-main video {
    height: auto;
    width: 100%;
    object-fit: fill;
}


/* common-design-layout------------ */

.cstm-section {
    padding: 0 0 5rem 0;
}

.cstm-section.background-clr {
    background-color: var(--secondary-color);
}


/* .cstm-section .section-bg {
   background-image: linear-gradient(white, white), url('../images/your-image.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: lighten;
} */

.section-content {
    display: flex;
    flex-wrap: wrap;
}

.cstm-section.background-clr .section-heading {
    color: white;
}

.cstm-section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 2rem 4rem;
    background-color: var(--background-color);
    /* position: sticky; */
    /* top: 0; */
    z-index: 3;
}


/* .cstm-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
    background-color: var(--secondary-color);
} */


/* .cstm-section-header .left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: start;
    flex: 1;
}

.cstm-section-header .right {
    display: flex;
    justify-content: end;
} */

.cstm-section-header .section-heading {
    color: var(--secondary-color);
}

.cstm-section-img.background-clr {
    background-color: var(--secondary-color);
}

.cstm-section-img.first {
    background-image: linear-gradient(rgba(0, 0, 0, 0.366), rgba(0, 0, 0, 0.235)), url(../images/home/section-1.jpg);
}

.cstm-section-img.second {
    background-image: linear-gradient(rgba(1, 1, 1, 0.446), rgba(0, 0, 0, 0.367)), url(../images/home/section-2.jpg);
}

.cstm-section-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 5rem;
    height: fit-content;
}

.cstm-section-content {
    background-color: #fdf6f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
    padding: 2rem;
    max-width: 100%;
    color: rgb(58, 58, 58);
    font-size: 0.9rem;
    text-align: start;
    /* border-radius: 1rem; */
    border: 1px solid;
    position: relative;
}

.inner-heading .heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cstm-section-content::before {
    content: '';
    height: 50%;
    width: 10px;
    left: -10px;
    position: absolute;
    top: 25%;
    background-color: var(--primary-color);
}

.cstm-section-content::after {
    content: '';
    height: 50%;
    width: 10px;
    right: -10px;
    position: absolute;
    top: 25%;
    background-color: var(--primary-color);
}

.cstm-section .img-contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center !important;
    text-align: center;
    margin: 5rem 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    max-width: 1000px;
    position: relative;
    text-align: center;
    z-index: 2;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.section-heading::before {
    content: '';
    position: absolute;
    z-index: -1;
    background-image: url(../images/heading-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    width: 100px;
    left: calc(50% - 50px);
    top: -10px;
}

.section-subheading::after {
    content: '';
    height: 3px;
    width: 80px;
    position: relative;
    /* left: 0; */
    z-index: 1;
    /* bottom: -10px; */
    background-color: var(--primary-color);
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center !important;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-color);
}

.img-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.img-sq {
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    margin: auto;
}

.img-sq.left {
    -webkit-mask-image: url("../images/clip-left.svg");
    mask-image: url("../images/clip-left.svg");
}

.img-sq.right {
    -webkit-mask-image: url("../images/clip-right.svg");
    mask-image: url("../images/clip-right.svg");
}

.img-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    /* Set appropriate height */
    background-image: url('../images/home-line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 30px;
    bottom: -20px;
    z-index: 2;
}

.section-description {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: 2rem;
    position: relative;
}

.section-description::before {
    content: '';
    width: 8px;
    height: 80%;
    position: absolute;
    left: 0;
    top: 10%;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: var(--primary-color);
}

.section-description p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

.cstm-section.banner {
    background: linear-gradient(rgb(5 7 16 / 60%), rgb(0 4 39 / 58%)), url(../images/about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    text-align: center;
}

.banner h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.banner p {
    font-size: 1.1rem;
    color: white;
}

.banner p a {
    color: var(--primary-color);
    text-decoration: none;
}

.banner p a:hover {
    color: var(--primary-hover);
}

.btn-main {
    position: relative;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    width: fit-content;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 1.2rem;
    margin-top: 1rem;
}

.btn-main:hover {
    color: white;
}

.btn-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    /* dark overlay */
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-main:hover::before {
    transform: scaleX(1);
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding: 5rem 2rem 2rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    height: calc(100% + 2rem);
    top: -3rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-bottom: 5px solid var(--border-color);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transition: border-bottom 0.3s ease-in-out;
}

.service-img {
    -webkit-mask-image: url("../images/service-clip.svg");
    mask-image: url("../images/service-clip.svg");
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    /* width: 400px; */
    height: 300px;
    max-width: 100%;
}

.service-icon {
    width: 100px;
    height: 100px;
    padding: 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 5px solid white;
    position: absolute;
    top: -40px;
    left: 40px;
    z-index: 4;
}

.service-card-content a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: auto;
}

.service-card-content a:hover {
    color: var(--primary-hover);
}

.service-card a::before {
    content: '';
}

.service-card-content p {
    font-size: 0.9rem;
}

.service-card:hover .service-card-content {
    /* border:none; */
    border-bottom: 5px solid var(--primary-color);
}

.bg-left,
.bg-right {
    background-color: var(--secondary-color-light);
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1rem;
}

.bg-right {
    margin-top: 5rem;
}

.swiper {
    /* max-width: 960px; */
    margin: auto;
    padding: 0 0 3rem 0;
}

.testimonial-card {
    background: #0F2464;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 1rem;
    height: 300px;
    position: relative;
}

.testimonial-card::before {
    content: url(../images/double-quotes.svg);
    position: absolute;
    right: 10px;
    top: 20px;
    width: 200px;
    z-index: 1;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card p {
    font-size: 1rem;
    color: #B3C2EC;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 2;
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}

.rating {
    color: #f5a623;
    font-size: 2rem;
}

.swiper-pagination-bullet {
    background: #c7c7c7;
    opacity: 0.5;
    width: 30px;
    border-radius: 5px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.cstm-card {
    background: #0F2464;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 1rem;
    height: 300px;
    position: relative;
}

.flip-card {
    perspective: 1000px;
    height: 100%;
    cursor: pointer;
}

.flip-card.light .front {
    background-color: white;
}

.flip-card.light .front .description {
    color: var(--secondary-color);
}


/* Inner container handles 3D flipping */

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}


/* Flip on hover */

.flip-card:hover .card-inner {
    transform: rotateY(180deg);
}

.flip-card:hover .front {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}


/* Front side */

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}


/* Keep existing styles on front */

.front {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 2rem 2rem;
    box-shadow: rgb(43 43 43 / 20%) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
    background-color: #0F2464;
    z-index: 2;
}

.front .heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.front .description {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 3;
}


/* Keep your ::before working */

.flip-card .front::before {
    content: '';
    background: url(../images/heading-bg.svg);
    height: 100px;
    width: 100px;
    position: absolute;
    left: 20px;
    top: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}


/* Back side */

.back {
    background-color: #ffffff81;
    /* plain color */
    transform: rotateY(180deg);
    z-index: 1;
    padding: 0.3rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.back img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.back::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.scroll-section {
    min-height: 200vh;
    display: flex;
}

.left-img-col {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0;
    overflow: hidden;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

.right-content-col {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.description-block {
    margin-bottom: 60px;
}

.description-block .cstm-section-header {
    align-items: flex-start;
}

.description-block .content {
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.last-sec {
    padding-top: 3rem;
}

.last-sec .section-description {
    height: fit-content;
    width: calc(100% + 10rem);
    position: relative;
    left: -5rem;
    z-index: -1;
    padding-left: 5rem;
}

footer {
    background-color: #0a1f38;
    color: #fff;
    font-family: sans-serif;
}

.footer-tagline {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: #09253f;
    font-size: 1.1rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #0a1f38;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-logo {
    width: 250px;
    margin-bottom: 1rem;
}

.footer-icon svg {
    width: 2em;
    height: 2em;
    color: var(--primary-color);
}

.footer-icon {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-contact {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    gap: 0.25rem;
}

.footer-contact svg {
    width: 1.5em;
    height: 1.5em;
    color: var(--primary-color);
}

a.footer-contact:hover {
    color: var(--primary-color);
}

footer h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

footer .list-unstyled a {
    text-decoration: none;
    color: rgb(137, 137, 137);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-head {
    padding: 2rem 0;
    background-color: var(--primary-color);
}

.footer-head h3 {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #06172d;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.hero-banner {
    position: relative;
    /* height: 300px; */
    background-image: linear-gradient(to right, rgba(9, 37, 63, 0.85) 30%, rgba(9, 37, 63, 0.2) 100%), url('../images/hero-common-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    /* padding: ; */
    background-attachment: fixed;
}

.hero-content {
    padding: 2rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ccc;
}

.breadcrumb a {
    color: #eee;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.about-section::before {
    content: '';
    height: 60%;
    /* background-color: var(--primary-color); */
    width: 100%;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(9, 37, 63, 0.85) 30%, rgba(9, 37, 63, 0.2) 100%), url('../images/about-banner.jpg');
    background-attachment: fixed;
}

.about-section {
    position: relative;
    border-bottom: var(--secondary-color) 1px solid;
}

.about-info {
    position: relative;
    width: 80%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* text-align: center; */
    background-color: var(--secondary-color);
    border-radius: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-info p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    color: #e9e9e9;
}

.about-info h3 {
    font-weight: 700;
    color: white;
    font-family: var(--font-family);
}

.abt-split {
    position: relative;
    z-index: 3;
    display: flex;
}

.abt-split.left {
    justify-content: end;
}

.abt-split.right {
    justify-content: start;
}

.abt-split img {
    height: 400px;
    width: 400px;
    object-fit: cover;
}

.service-area-card {
    padding: 1rem 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 1rem;
    position: relative;
    border: 1px solid transparent;
    transition: border 0.3s ease-in-out;
}

.service-area-card:hover {
    border: 1px solid var(--primary-color);
}

.section-common-card {
    padding: 1rem;
    border-radius: 1rem;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* background-color: white; */
}

.section-common-card>div {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgb(208, 208, 208);
    box-shadow: rgba(29, 29, 32, 0.2) 0px 7px 29px 0px;
    font-size: 0.9rem;
    background-color: var(--secondary-color-light);
    border-radius: 1rem;
}

.section-common-card>div h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.section-common-card>div h4 {
    font-size: 1.2rem;
    font-weight: bold;
}

.section-common-card>div p {
    font-size: 0.9rem;
}

.section-common-card>div li {
    font-size: 0.8rem;
}

.section-common-card.light>div {
    color: rgb(61, 61, 61);
}

.section-common-card.light>div h3 {
    color: rgb(42, 42, 42);
}

.section-common-card.light>div h4 {
    font-size: 1.2rem;
    font-weight: bold;
}

.cstm-section.shingle-banner {
    width: 100%;
    background-image: linear-gradient(to right, rgba(9, 37, 63, 0.85) 30%, rgba(9, 37, 63, 0.63) 100%), url(../images/about-banner.jpg);
    background-attachment: fixed;
    padding: 0;
}

.cstm-section.shingle-banner .section-content {
    padding: 5rem;
}

.shingle-banner-card {
    padding: 1.3rem;
    color: rgb(208, 208, 208);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid white;
    height: 100%;
    background-color: var(--secondary-color-light);
}

.shingle-banner-card.no-border {
    border-right: 1px solid transparent;
}

.shingle-banner-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.shingle-banner-card.mid {
    background-color: rgb(233, 233, 233);
    color: var(--text-color);
    border-right: 1px solid transparent;
    text-align: center;
    /* border-radius: 1rem; */
}

.shingle-banner-card.mid h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.shingle-banner .col-md-4 {
    padding: 0;
    margin: 1rem 0;
    /* background-color: var(--secondary-color-light); */
    border-radius: 1rem;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    /* Adjust height as needed */
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow-x: hidden;
}

.cstm-section.other-service .cstm-main-card {
    padding: 5rem 8rem;
    background-image: linear-gradient(to right, rgba(9, 37, 63, 0.85) 30%, rgba(9, 37, 63, 0.63) 100%), url(../images/shingle-other-service.jpg);
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    justify-content: center;
}

.cstm-section.other-service .cstm-main-card .img-logo {
    width: 200px;
    height: 200px;
}

.cstm-main-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-section-card {
    padding: 1.5rem;
    background-color: var(--secondary-color-light);
    height: 100%;
    color: #e3e3e3;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1rem;
}

.service-section-card h4 {
    font-size: 1.2;
    font-weight: 600;
    color: white;
}

.wwd-card {
    padding: 2rem;
    background-color: white;
    box-shadow: rgba(29, 29, 32, 0.2) 0px 7px 29px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wwd-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.wwd-card p {
    font-size: 0.9rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    flex-direction: column;
    transition: all 0.5s ease-in-out;
}

#lightbox-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
}

.close-btn,
.nav-btn {
    position: absolute;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 4px;
}

.close-btn {
    top: 20px;
    right: 20px;
}

.nav-btn.left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn.right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-info {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
}

.contact-form iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
}

.contact-us .content {
    background-color: var(--secondary-color);
    padding: 3rem;
    color: rgb(225, 225, 225);
}

.contact-us .content a:hover {
    color: var(--primary-hover);
}

.contact-us .content h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-us .content .detail h4 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
}

.contact-us .content .col-12 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us .content .detail {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.contact-us .contact-form {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
}

.form-field {
    width: 100%;
}

.form-field input,
.form-field textarea {
    border-radius: 0;
    padding: 1rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field input:hover,
.form-field textarea:hover {
    box-shadow: none;
    border-color: var(--primary-color);
}

.info-sec p {
    font-size: 0.9rem;
}

.section-text-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.section-text-info {
    padding: 1rem;
}

.section-text-info p,
.section-text-info b,
.section-text-info ul li {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 10rem 3rem 3rem 3rem;
    }
}

@media screen and (max-width:990px) {
    .img-sq {
        width: 100%;
        height: auto;
    }
    .last-sec .section-description {
        position: unset;
        width: 100%;
        padding: 1rem;
    }
    .bg-left {
        /* background-image: url(../images/bg-left-sm.svg); */
        height: 100%;
    }
    .bg-right {
        /* background-image: url(../images/bg-right-sm.svg); */
        height: 100%;
    }
    .bg-right .col-md-5 {
        order: 1;
    }
    .bg-right .col-lg-8 {
        order: 2;
    }
    .bg-right,
    .bg-left {
        width: 100%;
    }
    .bg-left p,
    .bg-left li,
    .bg-right p,
    .bg-right li {
        font-size: 0.8rem;
    }
    .service-img {
        -webkit-mask-image: url("../images/service-clip-sm.svg");
        mask-image: url("../images/service-clip-sm.svg");
        height: 510px;
    }
    .service-card-content {
        padding: 1.2rem;
        padding-top: 8rem;
        /* height: fit-content; */
        top: -7rem;
    }
    .navbar-brand-sm {
        width: 140px;
    }
    .custom-navbar {
        background-color: #06172d;
    }
    .double-navbar {
        position: unset;
    }
    .about-info {
        width: 100%;
        padding: 1rem;
    }
    .info-sec p {
        font-size: 0.8rem;
    }
    .section-common-card>div p {
        font-size: 0.85rem;
    }
    .wwd-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }
    .wwd-card p {
        font-size: 0.8rem;
    }
     .cstm-section.shingle-banner .section-content {
        padding: 1rem;
    }
    .shingle-banner-card p {
        font-size: 0.8rem;
    }
    .shingle-banner-card h3 {
        font-size: 1rem;
    }
    .cstm-section.other-service .cstm-main-card {
        padding: 2rem;
    }
    .cstm-section.other-service .cstm-main-card .img-logo {
        width: 150px;
        height: 150px;
    }
    .cstm-main-card h3{
        font-size: 1.5rem;
    }
    .contact-us .content,
    .contact-us .contact-form{
        padding: 2rem;
    }
}

@media (max-width: 767px) {
     :root {
        --font-size: 14px;
    }
    .double-navbar .top-bar {
        flex-direction: column;
    }
    .nav-icon a {
        font-size: 0.7rem;
    }
    .top-bar>div {
        width: 100%;
    }
    .cstm-section-header {
        padding: 1rem;
        align-items: start;
    }
    .section-heading {
        font-size: 1.2rem;
    }
    .section-subheading {
        font-size: 0.9rem;
    }
    .section-heading::before {
        width: 50px;
        /* left: 0; */
        top: -18px;
    }
    .section-subheading::after {
        position: absolute;
        bottom: -10px;
    }
    .service-card-content {
        padding: 1rem;
        padding-top: 4rem;
        height: fit-content;
        gap: 0.3rem;
        top: -4rem;
    }
    .cstm-section-img {
        padding: 1rem;
    }
    .cstm-section-content {
        padding: 1rem;
    }
    .inner-heading .heading {
        font-size: 1.2rem;
    }
    .inner-heading .subheading {
        font-size: 1rem;
    }
    .cstm-section-content {
        font-size: 0.8rem;
    }
    /* --clip-sm */
    .service-img {
        height: 320px;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        padding: 0.4rem;
        top: -25px;
        left: 20px;
    }
    /* --clip-sm end */
    .service-card-content h5 {
        font-size: 1.1rem;
    }
    .service-card-content p {
        font-size: 0.8rem;
    }
    .service-card-content a {
        font-size: 1rem;
    }
    .section-header {
        align-items: start;
        padding: 0;
        margin: 1rem 0;
    }
    .rating {
        font-size: 1rem;
    }
    .testimonial-card {
        padding: 1rem;
        height: 230px;
    }
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .testimonial-card::before {
        width: 100px;
    }
    .testimonial-card p {
        font-size: 0.8rem;
        -webkit-line-clamp: 5;
    }
    .testimonial-card img {
        width: 40px;
        height: 40px;
    }
    .testimonial-card h4 {
        font-size: 0.9rem;
    }
    .cstm-section {
        padding-bottom: 2rem;
    }
    .description-block .content {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    .right-content-col {
        padding: 1rem 0;
    }
    .front {
        padding: 1rem;
    }
    .front .heading {
        font-size: 1.1rem;
    }
    .front .description {
        font-size: 0.8rem;
    }
    .section-description p {
        font-size: 0.8rem;
    }
    .section-description::before {
        width: 3px;
    }
    .btn-main {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .scroll-section {
        flex-direction: column;
    }
    .left-img-col,
    .right-content-col {
        width: 100%;
        height: auto;
    }
    .left-img-col {
        height: 300px;
        position: relative;
    }
    .description-block {
        margin-bottom: 10px;
    }
    .img-sq {
        width: 100%;
    }
    .cstm-section.banner {
        padding: 1rem;
        height: 100%;
    }
    .banner h3 {
        font-size: 1.2rem;
    }
    .banner p {
        font-size: 0.8rem;
    }
    .footer-head h3 {
        font-size: 1.2rem;
    }
    .last-sec {
        padding: 1rem;
    }
    .navbar-nav {
        align-items: start;
    }
    .navbar-nav .nav-link {
        width: 100%;
        text-align: start;
    }
    .service-img {
        height: 300px !important;
    }
    .service-card-content {
        padding: 1.2rem;
        padding-top: 4rem;
        /* height: fit-content; */
        top: -4rem;
    }
    .about-info p {
        font-size: 0.7rem;
    }
    .section-common-card>div {
        padding: 0.8rem;
    }
    .section-common-card>div h3 {
        font-size: 1rem;
    }
    .section-common-card>div h4 {
        font-size: 0.9rem;
    }
    .section-common-card {
        padding: 0;
        margin-top: 1.5rem;
    }
    .section-common-card>div p,
    .section-common-card>div b {
        font-size: 0.8rem;
    }
    .section-text-info h3 {
        font-size: 1.2rem;
    }
    .section-text-info p,
    .section-text-info b,
    .section-text-info ul li {
        font-size: 0.8rem;
    }
    .bg-left p,
    .bg-left li,
    .bg-right p,
    .bg-right li {
        font-size: 0.75rem;
    }
    .wwd-card h3 {
        font-size: 1rem;
        font-weight: 700;
    }
    .wwd-card p {
        font-size: 0.8rem;
    }
    
    .contact-us .content,
    .contact-us .contact-form{
        padding: 1.5rem 1rem;
    }
    .contact-us .content h3{
        font-size: 1.5rem;
    }
    .contact-us p{
        font-size: 0.8rem;
    }
}

@media screen and (min-width:767px) and (max-width:990px) {
    .navbar-nav {
        align-items: start;
    }
    .navbar-nav .nav-link {
        width: 100%;
        text-align: start;
    }
    .cstm-section-img {
        padding: 2rem;
    }
    .service-icon {
        top: -28px;
        left: 30px;
    }
    .btn-main {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    .cstm-section-header {
        padding: 2rem;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .cstm-section.banner {
        height: auto;
    }
    .last-sec .section-description {
        padding: 2rem;
    }
    .col-md-6:has(.service-card) {
        height: 800px;
    }
   
}

@media screen and (min-width:767px) and (max-width:1240px) {
    .description-block .content {
        padding: 0 2rem;
        font-size: 0.9rem;
    }
}

@media screen and (min-width:990px) and (max-width:1240px) {
    .cstm-section.banner {
        height: 100%;
    }
    .img-sq.left,
    .img-sq.right {
        width: 100%;
    }
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        min-width: 80px;
    }
    .navbar-nav {
        gap: 0.5rem;
    }
    .double-navbar .logo-bar {
        padding: 1rem;
        width: 140px;
        display: flex !important;
        align-items: center;
    }
    .btn-main {
        padding: 0.8rem 1.4rem;
        font-size: 1rem;
    }
    .bg-left p,
    .bg-left li,
    .bg-right p,
    .bg-right li {
        font-size: 0.8rem;
    }
    .bg-left .section-heading,
    .bg-right .section-heading {
        font-size: 1.2rem;
    }
    .bg-left .section-header .bg-right .section-header {
        gap: 0.5rem;
    }
    .img-sq {
        height: auto;
    }
    .bg-left .section-subheading,
    .bg-right .section-subheading {
        font-size: 1rem;
    }
    .cstm-section-img.pad {
        padding: 1rem;
    }
}

.bg-right .section-subheading::after,
.bg-left .section-subheading::after {
    display: none;
}
@media screen and (min-width:990px){
    .img-sq{
        height: 400px;
        width: 400px;
    }
}