:root {
    --primary: #2957a4;
    --text: #202020;
    --text-muted: #707070;
}

* {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    padding: 60px 20px;
    margin: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Epilogue", sans-serif;
    color: var(--text);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.loader-container i{
    font-size: 60px;
    color: var(--primary);    
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.header {
    background: white;
}


.sub-heading {
    font-weight: 800;
    font-size: 18px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--primary);
    font-family: "Epilogue", sans-serif;
    margin-bottom: 15px;
}

/* Top Header */
.top-bar {
    border-bottom: 1px solid #e5e5ea;
}

.top-header {
    max-width: 1660px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.header-location {
    font-family: "Urbanist", sans-serif;
    display: flex;
    align-items: center;
    gap: 5px
}

.header-location i {
    height: 16px;
    width: 16px;
}

.header-location p {
    font-weight: 900;
    margin: 0;
    font-size: 16px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a {
    text-decoration: none;
    color: var(--text);
}

.header-social a:hover {
    color: var(--primary);
}

/* MainHeader */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1660px;
    margin: auto;
    padding: 8px 15px;
}

.main-header .sidebar-button {
    display: none;
    color: var(--text);
}

.main-header .logo img {
    max-width: 90px;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 22px 33px;
    width: fit-content;
    box-shadow: rgba(100, 100, 111, 0.534) 0px 7px 29px 0px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    color: white;
    font-family: "Urbanist", sans-serif;
    font-weight: 900;
    border: none;
    position: relative;
    transition: 0.3s all;
    background-color: transparent;
    overflow: hidden;
}

.btn-primary:hover {
    color: var(--primary);
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    z-index: -2;
    transition: all 0.3s;
}

.btn-primary:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background-color: white;
    z-index: -1;
    transition: all 0.3s;
}


.btn-primary:hover::before {
    right: 0%;
}


/* Hero Section */
.hero-section {
    width: 100%;
    height: calc(100vh - 180px);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    right: 0;
}

.hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 1660px;
    padding: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content h5 {
    font-family: "Oswald", sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    font-size: clamp(24px, 4vw, 30px);
    margin: 0;

}

.hero-content h1 {
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-size: clamp(30px, 4vw, 60px);
    color: #000000;
    margin: 0;
}

.hero-content p {
    max-width: 700px;
    margin-bottom: 22px;
    line-height: 1.5;
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 600;
}

/* info section */

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* max-width: 1440px; */
    gap: 20px;
}

.info-card {
    padding: 26px;
    background-color: #fef8f4;
}

.info-card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card-head i {
    font-size: 45px;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
}


.info-card-head h5 {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 4vw, 24px);
    color: #000000;
}

.info-card p {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Welcome Section */

.welcome-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
}

.welcome-section img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.welcome-section h2 {
    font-size: clamp(30px, 4vw, 55px);
    color: rgb(0, 0, 0);
    line-height: 1.2;
    font-weight: 900;
    font-family: "Urbanist", sans-serif;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.welcome-section p {
    margin: 22px 0;
    line-height: 1.8;
    color: var(--text);
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 500;
}

.welcome-section p strong {
    color: var(--primary);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
}


/* Stats Section */

.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.number-wrap {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
    width: fit-content;

}

.stats-section .number {
    font-size: clamp(55px, 4vw, 110px);
    font-family: "Epilogue", sans-serif;
    -webkit-text-stroke: 2px var(--text);
    color: #000000;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 1.2;
}

.stats-section p {
    font-size: 22px;
    font-family: "Epilogue", sans-serif;
    color: rgb(44, 43, 43);
    font-weight: 700;
    line-height: 1.2;
}

/* Products We Offer */

.section-header {
    text-align: center;
}

.home-products .sub-title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}


.home-products .sub-title .line {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #FFFFFF 100%);
    border-radius: 5px;
    display: inline-flex;
    margin-top: -2px;
}


h2.section-title {
    font-weight: 600;
    font-size: clamp(35px, 4vw, 56px);
    line-height: 60px;
    letter-spacing: 0.01em;
    font-family: "Teko", sans-serif;
    color: black;
    text-transform: capitalize;
    margin-bottom: 0;
}

.home-products p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--text);
    margin-bottom: 0;
}

.home-product-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.home-product-card {
    background-color: #F3F3F3;
    padding: 28px 32px 28px 28px;
    text-decoration: none;
    transition: 0.3s all;
}

.home-product-card:hover {
    background-color: var(--primary);
}

.home-product-card h5 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    padding-bottom: 15px;
    margin: 0;
    font-size: 26px;
    border-bottom: 1px solid #a8a8a8;
}

.home-product-card:hover h5,
.home-product-card:hover p {
    color: #fff;
}


.home-product-card p {
    padding: 15px 0;
    font-weight: 400;
    line-height: 26px;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0px;
}

.home-product-img-wrap {
    position: relative;
    margin-top: 20px;
}

.home-product-img {
    width: 100%;
    height: auto;

}

.home-product-logo {
    position: absolute;
    top: -8%;
    left: 15%;
    height: 70px;
    width: 70px;
    padding: 2px;
    border: 5px solid white;
    background-color: white;
    border-radius: 99px;
    transition: .3s all;
}


.home-product-card:hover .home-product-logo {
    border-color: var(--primary);
}


/* HomeCTA */

.home-cta-section {
    position: relative;
    max-height: 80vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
    align-self: center;
}

.home-cta-section img {
    position: absolute;
    top: 0;
    z-index: -2;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.home-cta-section .img-overlay {
    position: absolute;
    top: 0;
    background-color: transparent;
    background-image: linear-gradient(316deg, #FFFFFF00 48%, #2957A4 75%);
    z-index: -1;
    right: 0;
    height: 100%;
    width: 100%;
}



.home-cta-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.home-cta-content .sub-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 32px;
    text-transform: uppercase;
    color: white;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 15px;
}


.home-cta-content h2 {
    font-size: clamp(30px, 4vw, 55px);
    color: white;
    line-height: 1.2;
    max-width: 500px;
    font-weight: 900;
    font-family: "Urbanist", sans-serif;
    text-transform: capitalize;
    margin-bottom: 0;
}


.home-cta-content p {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    max-width: 500px;
    line-height: 30px;
    color: white;
    margin: 20px 0;
}

/* FAQ section */
.faq-section .sub-heading {
    text-align: center;
}

.faq-section h2 {
    font-size: clamp(30px, 4vw, 55px);
    color: #000000;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Urbanist", sans-serif;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: center;
}

.faq-grid img {
    width: 100%;
    height: auto;
}

.faq-items-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.faq-ques {
    padding: 24px 40px 24px 57px;
    font-weight: 700;
    color: #000;
    font-size: 20px;
    font-family: "Urbanist", sans-serif;
    background-color: rgb(247, 246, 242);
}

.faq-item.active .faq-ques {
    color: #fff;
    background-color: var(--primary);
    box-shadow: none;
}


.faq-ans {
    display: none;
    padding: 20px 12px 10px 57px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-item.active .faq-ans {
    display: block;
}

/* Footer */
footer {
    background-color: #566891;
}

.top-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 30px;
    justify-content: center;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2E2F;
    color: white;
    border-radius: 100px;
    font-size: 18px;
    position: relative;

}


footer h5 {
    font-family: "Roboto", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin: 20px 0;
}

footer ul a {
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
}


footer ul a:hover {
    color: var(--primary);
}

.footer-contact a {
    display: flex;
    align-items: baseline;
    gap: 15px;
    line-height: 1.5;
}

.footer-contact li {
    margin: 15px 0;
}

.bottom-footer {
    max-width: 1440px;
    margin: auto;
    padding: 20px;
    color: white;
    text-align: center;
}

/* BreadCrumb */

.breadcrumb h1 {
    font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 4vw, 70px);
    max-width: 1020px;
    margin: auto;
    line-height: 84px;
    color: #FFFFFF;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 3px 3px #2957a4;
}

.breadcrumb {
    padding: 130px 0 178px 0;
    position: relative;
    z-index: 2;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 50% 100%, 0 75%, 0 0);
}

.breadcrumb .main-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 0, 100% 72.5%, 50% 97.5%, 50% 97.5%, 0 72.5%, 0 0);
}

.breadcrumb .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About */
.about-main {
    background-color: transparent;
    background-image: linear-gradient(90deg, #FFFFFF 34%, #272626 20%);
    opacity: 1;
    margin-top: -150px;
    margin-bottom: 0px;
    padding: 0px 0px 120px 0px;
    z-index: 1;
}


.about-main-content {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 250px 0px 0px 0px;
    display: grid;
    gap: 50px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.about-img-wrap {
    position: relative;
}

.about-main-img {
    width: 100%;
}

.about-main-icon {
    position: absolute;
    top: -5%;
    left: -5%;
    height: 140px;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-main-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-main-info h2 {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(30px, 4vw, 55px);
    color: #fff;
    line-height: 1.091;
    font-weight: 800;
    margin-bottom: 0px;
}

.about-main-info p {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 32px;
    color: white;
    margin-bottom: 0px;
}

/* infrastructure-section */
.infrastructure-section h2 {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(30px, 4vw, 55px);
    color: var(--text);
    text-align: center;
    line-height: 1.091;
    font-weight: 900;
    margin: 20px 0;
}

.infra-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.infra-card {
    background-color: #FEF8F4;
    padding: 30px 30px 30px 30px;
    transition: background 0.5s;
    border-radius: 04px 04px 04px 04px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: 0.3s all;
}


.infra-card:hover {
    background-color: var(--primary);
}

.infra-card i {
    font-size: 50px;
    color: var(--primary);
    transition: 0.3s all;
}


.infra-card:hover i,
.infra-card:hover h5,
.infra-card:hover p {
    color: white;
}

.infra-card h5 {
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    transition: 0.3s all;

}

.infra-card p {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A8A8A8;
    transition: 0.3s all;
}


/* why-choose-us */


.why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-choose-us img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.wcu-content {
    background-color: var(--primary);
    padding: 60px;
}

.wcu-content h2 {
    font-size: clamp(30px, 4vw, 55px);
    color: white;
    line-height: 1.091;
    font-weight: 800;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 0;
}

.wcu-content ul {
    list-style: none;
    margin-top: 40px;
}

.wcu-content ul li {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

/* common-cta */


.common-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.common-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: rgb(31, 31, 31);
    line-height: 1.091;
    font-weight: 800;
    margin-bottom: 0;
    margin-bottom: 30px;
    font-family: "Urbanist", sans-serif;
}

/* Products Page */

.products-grid {
    max-width: 1660px;
    padding: 60px 20px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 60px;
}

.product-card {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(31, 31, 31, 0.24);
    border-radius: 20px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.product-img {
    width: 100%;
}

.product-logo {
    position: absolute;
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    z-index: 999;
    width: 60px;
    padding: 2px;
    border: 5px solid var(--primary);
    background-color: white;
    border-radius: 99px;
    transition: .3s all;
    ;
}

.product-card .product-content {
    padding: 38px 28px 31px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px;
    border-top: 6px solid var(--primary);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    min-height: 40px;
    max-height: 40px;

    border-radius: 0 0 20px 20px;
    height: 100%
}

.product-content h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    font-family: "Teko", sans-serif;
}

.product-card:hover .product-content {
    background-color: #202020;
    max-height: 60px;
}

.product-card:hover h2 {
    color: white;
}

.product-card .btn-primary {
    opacity: 0;
    position: absolute;
    bottom: -30px;
    width: 50%;
    border-radius: 999px;
    transition: 0.3s all;
    background-color: var(--primary);
}


.product-card .btn-primary:hover {
    color: white !important;
    background-color: var(--primary);
}


.product-card .btn-primary:after,
.product-card .btn-primary:before {
    display: none;
}



.product-card:hover .btn-primary {
    opacity: 1;
}

/* Product Details */

.product-detail-grid {
    max-width: 1600px;
    margin: auto;
    padding: 80px 20px 60px 20px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}

.product-sidebar h3 {
    background-color: #2957A4;
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    line-height: 1.38em;
    color: #FFFFFF;
}

.product-sidebar ul {
    padding: 20px;
    list-style: none;
    border: 1.5px solid #e5e5ea;
    margin-top: 20px;
    border-radius: 12px;
}

.product-sidebar ul li {
    margin: 10px 0;
    border: 1.5px solid #f6f6f6;
    overflow: hidden;
    z-index: 1;
    position: relative;
    font-family: "Epilogue", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #444444;
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: 400ms ease-in-out;
}

.product-sidebar ul li a {
    color: black;
    padding: 20px;
    text-decoration: none;
    transition: 400ms ease-in-out;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}


.product-sidebar ul li:hover {
    background-color: var(--primary);
}

.product-sidebar ul li:hover a {
    color: white;
}


.icon-1 {
    opacity: 0;
    padding-right: 30px;
    transition: 400ms ease-in-out;
    color: white;
}


.product-sidebar ul li:hover .icon-1 {
    opacity: 1;
    padding-right: 0;
}

.product-detail-content h2 {
    font-family: "Urbanist", Sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-decoration: underline;
    line-height: 1.25em;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.product-detail-content img {
    width: 100%;
}


.product-detail-grid.single {
    grid-template-columns: 1fr;
}


/* infrastructure */

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    gap: 40px;
    max-width: 1660px;
    margin: auto;
    padding: 80px 20px 60px 20px;
}


.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    padding: 22px 35px;
    background-color: #f1f2f3;
    border: none;
    color: #54595f;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Epilogue", sans-serif;
    transition: .3s all;
    cursor: pointer;
}


.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary);
    color: white;
}

.tab-content {
    display: none;
    padding: 25px 0;
}

.tab-content.active {
    display: block;
}


.tab-content h2 {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 60px;
    letter-spacing: 0.01em;
    font-family: "Teko", sans-serif;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 5px;
}


.tab-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    color: #555555;
    margin-bottom: 5px;
}

.content-box {
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 30px;
}

.img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-grid img {
    width: 100%;
}

.singleImg {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.singleImg img {
    width: 100%;
}


/* Contact Us Page */

.contact-Wrap h2 {
    text-align: center;
    font-size: clamp(30px, 4vw, 55px);
    color: #000000;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Urbanist", sans-serif;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-Wrap p {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-wrap {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
}

.contact-bg-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-info {
    display: flex;
    align-items: start;
    gap: 20px;
    text-decoration: none;
}

.contact-info-icon {
    /* height: 60px;
    width: 60px; */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    color: var(--primary);
    font-size: 24px;
}

.contact-info .info h3 {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.contact-info .info p {
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    color: #D6D6D6;
}

.contact-form-wrap {
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 45px 48px 48px;
}

.contact-form-message {
    padding: 13px 16px;
    margin-bottom: 22px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.contact-form-message.success {
    background-color: #e5f4e9;
    color: #216b35;
}

.contact-form-message.error {
    background-color: #fbe9e7;
    color: #9c2f27;
}

.contact-form h2 {
    text-align: left;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
    margin-bottom: 26px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
}

.contact-form {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #ffffff;
    color: var(--text);
    font: 400 16px "Epilogue", sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
    height: 61px;
    padding: 0 28px;
}

.contact-form textarea {
    display: block;
    min-height: 173px;
    margin-top: 19px;
    padding: 20px 28px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4d4d4d;
    opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(41, 87, 164, 0.12);
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 213px;
    margin: 44px auto 0;
    border: 0;
    background-color: var(--primary);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #1e4382;
    transform: translateY(-2px);
}

.contact-form button span {
    font-size: 24px;
    line-height: 1;
}


/* Catalogue */
.catalogue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.catalogue-item {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
}

.catalogue-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
}


/* Navbar */
.navbar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: auto;
}

.nav-link {
    font-family: "Urbanist", sans-serif;
    color: #1f1e1e;
    font-weight: 900;
    position: relative;
    z-index: 1;
    font-size: 18px;
    text-decoration: none;
    padding: 35px 12px;
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
}


.product-dropdown {
    position: relative;
}

.product-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    min-width: 250px;
    z-index: 1000;
}

.product-dropdown:hover .product-dropdown-content {
    max-height: 500px;
    transition: max-height 0.6s ease-in-out;
}

.product-dropdown-content a:first-child {
    border-top: 3px solid var(--primary);
}

.product-dropdown-content a,
.mobile-product-dropdown-content a {
    padding: 10px 20px;
    text-decoration: none;
    color: #1f1e1e;
    font-family: "Urbanist", sans-serif;
    font-weight: 800;
    transition: background-color 0.3s ease;
    display: flex;
    gap: 3px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.product-dropdown-content a>span {
    font-size: 0px;
    transition: all 0.3s;
}

.product-dropdown-content a:hover {
    color: var(--primary);
}

.product-dropdown-content a:hover span {
    font-size: 18px;
}

.navbar-sidebar-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    overflow: hidden;
    height: 100vh;
    background-color: #00000067;
    backdrop-filter: blur(5px);
    transition: width 0.3s ease-in-out;

}

.navbar-sidebar-overlay.active {
    display: block;
}

.navbar-sidebar {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 0;
    overflow: hidden;
    height: 100%;
    background-color: #000;
    transition: max-width 0.3s ease-in-out;
}

.navbar-sidebar.active {
    max-width: 350px;
}

.mobile-sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.mobile-logo img {
    max-height: 70px;
}

.sidebar-button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-sidebar-links .nav-link {
    padding: 15px 0;
    width: 100%;
    color: white;
    text-align: left;
}

.mobile-product-dropdown-content a {
    color: white;
}

.mobile-product-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}


.mobile-product-dropdown-content.active {
    max-height: 500px;
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    background-color: var(--primary);
    border: 2px solid white;
    height: 50px;
    width: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}