@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --font-size: 16px;
    --primary-font: 'Montserrat', sans-serif;
    /* 🎨 Colors */
    --color-primary: #d92828;
    --color-bg-secondary: #242424;
    --color-bg-main: #3d3d3d;
    --color-heading: #ffffff;
    --color-text: rgba(255, 255, 255, 0.8);


    /* 🔠 Font Sizes */
    --font-h1: 3rem;
    /* 48px */
    --font-h2: 2.5rem;
    /* 40px */
    --font-h3: 2rem;
    /* 32px */
    --font-h4: 1.5rem;
    /* 24px */
    --font-h5: 1.25rem;
    /* 20px */
    --font-h6: 1rem;
    /* 16px */
    --font-body: 1rem;
    /* 16px */
    --font-small: 0.875rem;
    /* 14px */
    --font-button: 1rem;
    /* 16px */

    /* 🌑 Shadow */
    --color-shadow: rgba(0, 0, 0, 0.25);
    --shadow-main: 0 4px 12px var(--color-shadow);

    /* 🔤 Font */
    --font-family: "Montserrat", sans-serif;

    /* 📐 Layout */
    --sidebar-width: 100px;
    --navbar-height: 100px;
}

/* 🌍 Global */
body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--primary-font);
    font-size: var(--font-body);
    background: var(--color-bg-main);
    color: var(--color-text);
}

.left-sidebar.sidebar-open {

    transition: all 0.3s ease;
}

.left-sidebar.sidebar-open {
    top: 200px;
    height: calc(100% - var(--navbar-height) * 2);
}

/* 🔴 Top Left Red Square */
.top-square {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--navbar-height);
    height: var(--navbar-height);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: top 0.4s ease;
}

.top-square.move-down {
    top: var(--navbar-height);
}

/* 🍔 Custom Toggler */
.custom-toggler {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.custom-toggler span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.custom-toggler span:nth-child(1) {
    top: 0;
    width: 70%;
}

.custom-toggler span:nth-child(2) {
    top: 10px;
    width: 100%;
}

.custom-toggler span:nth-child(3) {
    top: 20px;
    width: 50%;
}

/* Active → Cross */
.custom-toggler.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    width: 100%;
}

.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
    width: 100%;
}

/* 📌 Left Sidebar */
.left-sidebar {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100% - var(--navbar-height));
    background-color: var(--color-bg-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #333;
    z-index: 1040;
    text-align: center;
}

.left-sidebar .social-line {
    padding: 30px 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.left-sidebar .social-line::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    bottom: 30px;
    width: 1px;
    background-color: #4c4c4c;
}

.left-sidebar .social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-bg-main);
    padding: 2rem 0;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.left-sidebar .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #4c4c4c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;

}

.left-sidebar .social-icons a svg {
    color: rgba(255, 255, 255, 0.4);
    width: 20px;
    height: 20px;
    transition: color 0.2s ease-in-out;
}

.left-sidebar .social-icons a:hover {
    background-color: var(--color-primary);
}

.left-sidebar .social-icons a:hover svg {
    color: white;
}


.left-sidebar .bottom-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: var(--font-body);
    font-weight: 600;
    color: var(--color-text);
    background-color: var(--color-bg-secondary);
    padding: 5rem 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.fixed-logo,
.left-sidebar,
.offcanvas.show,
.top-square {
    z-index: 9999;
}

/* 🏷 Fixed Logo */
.fixed-logo {
    position: fixed;
    width: 200px;
    top: 0;
    left: var(--sidebar-width);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    background: var(--color-bg-secondary);
    color: var(--color-heading);
    font-size: var(--font-h5);
    font-weight: 700;
    padding: 0 30px;
    transition: all 0.4s ease;
}

.fixed-logo.move-top {
    left: 0;
    top: 0;
    justify-content: center;
}

/* 🖤 Horizontal Navbar */
.main-navbar {
    margin-left: var(--sidebar-width);
    background: var(--color-bg-secondary);
    height: var(--navbar-height);
    color: var(--color-heading);
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: var(--sidebar-width);

}

.main-navbar .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background-color: var(--color-bg-main);
    padding: 1rem;
    border-radius: 4px;
}

.main-navbar .contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.main-navbar .contact-info a svg {
    width: 25px;
    height: 25px;
    color: white;
}

/* 📂 Offcanvas */
.offcanvas-custom {
    background: var(--color-bg-secondary);
    color: var(--color-heading);
    padding: 30px;
    border-top: 1px solid #333;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 10;
    width: 300px;
    position: absolute;
}

.offcanvas-custom ul li {
    padding: 1rem;
    padding-left: 0;
}

.offcanvas-custom ul li a {
    text-decoration: none;
    font-size: var(--font-h4);
    color: white;
}

.offcanvas-custom ul li:hover a {
    color: var(--color-primary);
}

.offcanvas-start {
    transform: translateX(-100%);
}

/* .modal-backdrop.show {
    display: none;
} */
.btn-close {
    background-color: white;
}

.btn-dark.gallery-close-btn {
    top: -40px;
    right: -40px;
}

.btn-dark svg {
    width: 25px;
    height: 25px;
    color: white;
}

.btn-dark.gallery-next-btn {
    right: -10%;
}

.btn-dark.gallery-prev-btn {
    left: -10%;
}

.btn-dark {
    border-radius: 50%;
    padding: 1rem;
}

.offcanvas.show {
    transform: none;
    left: var(--sidebar-width);
    top: var(--sidebar-width);
}

.offcanvas-custom:focus-visible {
    outline: none;
}

.main-container {
    margin-left: var(--sidebar-width);

}

/* 🎨 Hero Section */
/* Hero container full screen, no padding */
.hero-slider {
    height: calc(100vh - var(--navbar-height));
    background: var(--color-bg-main);
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .swiper-slide {
    height: 100%;
}

/* Video card full height, no gap */
.video-card {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    pointer-events: none;
    transition: transform 0.5s ease-in-out;
}

/* 🔥 Default 3-gradient overlay (dark → light → dark) */
.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.video-card:hover::before {
    background: transparent;
}

/* 🟢 Hover overlay (bottom primary → top transparent) */
.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(217, 40, 40, 0.7) 0%,
            rgba(217, 40, 40, 0.6) 40%,
            transparent 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.video-card:hover::after {
    opacity: 1;
}

.video-card:hover video {
    transform: scale(1);
}

.video-overlay {
    position: absolute;
    left: 10%;
    width: 80%;
    bottom: 10%;
    color: var(--color-heading);
    font-size: var(--font-h5);
    font-weight: 600;
    z-index: 3;
}

.video-overlay::before {
    content: '';
    height: 2px;
    width: 0;
    background-color: var(--color-primary);
}

.video-overlay:hover::before {
    width: 10px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-heading {
    font-size: var(--font-h3);
    color: var(--color-heading);
    font-weight: 700;
    letter-spacing: 0.7px;
    margin-bottom: 0.5rem;
    position: relative;

}

.section-subheading {
    font-size: var(--font-h4);
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: 0;

}

.section-heading::after {
    content: '';
    display: flex;
    width: 150px;
    left: 0px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    background-color: var(--color-primary);
}

.section-heading::before {
    content: '';
    display: flex;
    width: 150px;
    right: 0px;
    position: absolute;
    bottom: -10px;
    margin-left: -30px;
    height: 4px;
    background-color: var(--color-primary);
}

.section-text {
    font-size: var(--font-body);
    color: var(--color-text);
    letter-spacing: 0.5px;
    margin-bottom: 0;

}

/* about us---------------- */

section.about-us {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
}

.about-points {
    /* list-style: none; */
    /* padding: 0; */
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 25px;
}

.about-points li {
    background: var(--color-bg-secondary);
    padding: 6px 12px;
    font-size: var(--font-body);
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
}

.about-points li:hover {
    transform: translateY(-5px);
    background: var(--color-primary);
    color: #fff;
}

/* services---------------- */

section.service-section {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
}

section.service-section .section-content,
.testimonial-section .section-content {
    align-items: center;
    text-align: center;
}

.service-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card>div:last-of-type {
    flex: 1;
}

.service-card h4 {
    font-size: var(--font-h5);
    font-weight: bold;
}

.service-card .icon-style {
    width: 120px;
    height: 120px;
    border: 1px solid #2e2e2e;
    text-align: center;
    margin-right: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-style::after,
.service-card .icon-style::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.service-card:hover .icon-style::after,
.service-card:hover .icon-style::before {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover .icon-style {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.service-card:hover .icon-style {
    background-color: var(--color-primary);
}

.service-card .icon-style::before {
    top: 0;
    left: 0;
    border-top: 2px solid #6c6c6c;
    border-left: 2px solid #6c6c6c;
}

.service-card .icon-style::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #6c6c6c;
    border-right: 2px solid #6c6c6c;
}

.service-card .icon-style svg {
    transform: scale(1);
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover .icon-style svg {
    transform: scale(0.8);
}

/* banner section middle---------- */
.banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* adjust as needed */
    background: url('../images/home/middle-banner.webp') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.banner-heading {
    font-size: var(--font-h2);
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-h5);
    opacity: 0.8;
    margin-bottom: 25px;
}

.banner-cta {
    display: inline-block;
    background: var(--color-primary);
    /* #d92828 */
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-cta:hover {
    background: #a71f1f;
    /* darker red on hover */
    transform: translateY(-2px);
}


/* feature section ----------------------- */

.featured-section {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

.featured-section .feature-img {
    height: 500px;
    width: 100%;
    position: relative;
}

.featured-section .feature-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

.featured-section .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-section .feature-content {
    padding: 0 70px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-bg-main);
}

.feature-content .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;

}

.feature-content:hover .feature-icon {
    transform: scale(0.8);
    background-color: var(--color-primary);
    border: 4px solid var(--color-primary);

}

.feature-content .feature-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.feature-content .feature-title {
    font-size: var(--font-h3);
    color: white;
    text-align: center;
}

.feature-content .feature-text {
    font-size: var(--font-body);
    text-align: center;
}

.feature-content .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.feature-content .list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* shadow height */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    pointer-events: none;
    /* click ke liye card accessible rahe */
}

.feature-content .list ul {
    list-style: none;
    padding: 0;
    flex: 1;
    position: relative;
    z-index: 3;
}


.feature-content li {
    font-size: var(--font-body);
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.feature-content li::before {
    content: '';
    width: 6px;
    height: 3px;
    background-color: var(--color-primary);
}

.feature-content li b {
    flex: 1;
    text-align: end;
}


/* testimonial section -------------------- */
.testimonial-section {
    padding: 60px 0;
    background: #242424;
    /* section background */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.testimonial-card.swiper-slide {
    opacity: 0.6;
    transform: scale(0.8) !important;
}

.testimonial-card.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-card .review-img {
    width: 40%;
    margin: auto;
}

.testimonial-card p {
    font-size: var(--font-small);
    margin-bottom: 15px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* gallery-section------- */


section.gallery-section {
    padding: 80px 0 0 0;
    background-color: var(--color-bg-secondary);
}

.gallery-section .gallery-swiper {
    width: 100%;
}

.gallery-section .swiper-slide {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.gallery-section .gallery-item {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: pointer;

}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-section .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(217, 40, 40, 0.4);
    transition: left 0.5s ease;
}

.gallery-section .gallery-item:hover .overlay {
    left: 0;
}

/* footer section-------- */
.site-footer {
    background: var(--color-bg-secondary);
    color: var(--color-text);
    padding: 50px 0;
    padding-left: 100px;
}

.site-footer .footer-col {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-about {
    font-size: var(--font-small);
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: var(--font-body);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.footer-contact li a{
    color: white;
    text-decoration: none;
}

.footer-contact .footer-contact-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

.footer-col {
    border-right: 0.1px solid;
    padding: 0 1rem;
}

.footer-col:last-of-type {
    border: none;
}


.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev {
    color: white;
    opacity: 1 !important;
}




/* about us page --------------- */
section.page-banner-section {
    padding: 200px 0 100px;
    text-align: center;
    background-image: url(../images/banner-bg.webp);
    background-size: cover;
    background-position: center center;
}

section.page-banner-section .page-banner-title {
    font-size: var(--font-h1);

}

section.features-section {
    padding: 80px 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0) 100%),
        url(../images/home/middle-banner.webp) center / cover no-repeat;
    background-attachment: fixed;
}

.features-section .col-md-4 {
    padding: 0;
    border: 1px solid white;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
}

.feature-card .feature-icon svg {
    width: 80px;
    height: 80px;
}

.feature-card .feature-title {
    font-size: var(--font-h5);
    text-align: center;
    color: white;
}

.feature-card .feature-text {
    font-size: var(--font-body);
    text-align: center;
    color: white;
}

section.wcu {
    padding: 80px 0;
}

.wcu-points {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.wcu-points li {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: var(--font-h5);
}

.wcu-points .wcu-icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.wcu-points .wcu-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* service section --------------- */
.service-card2 {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.service-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

/* gallery page ------------------ */
.gallery-item-wrapper {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox-img,
.lightbox-video {
    width: 50%;
    height: auto;
    border-radius: 10px;
    animation: scaleUp 0.4s ease;
}

.close,
.prev,
.next {
    position: absolute;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.close {
    top: 20px;
    right: 30px;
}

.prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.close:hover,
.prev:hover,
.next:hover {
    color: #ff4081;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* contact section --------- */
.contact-section{
    padding: 80px 0;
}
.contact-detail {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-detail .contact-card{
    border: 1px solid white;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    min-height: 100%;
}
.contact-detail .contact-card svg{
    width: 40px;
    height: 40px;
}
.contact-detail .contact-card .contact-link{
    color: white;
    font-size: var(--font-h6);
    text-decoration: none;
}
.contact-detail .contact-card .contact-text{
    font-size: var(--font-small);
    margin-bottom: 0;
}

.contact-form{
    display: flex;
    flex-wrap: wrap;
}
.contact-form form{
    border: 1px solid white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-right: 0;
}

.contact-form form input,
.contact-form form textarea{
    border: none;
    border-bottom: 1px solid #525252;
    background: transparent;
    padding: 1rem;
    transition: border 0.3s ease-in;
}
.contact-form form input:focus,
.contact-form form textarea:focus{
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid white;
}
.contact-form .btn-submit{
    border: none;
    background-color: var(--color-bg-secondary);
    margin-top: 1rem;
    padding: 1rem;
    font-size: var(--font-h5);
    font-weight: 600;
    color: white;
    opacity: 0.7;
    transition: opacity 0.2s ease-in;
}
.contact-form .btn-submit:hover{
    opacity: 1;
}