/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #6b6b6b;
    background: linear-gradient(145deg, #fff5e6, #fffdf9); /* light warm tone */
    font-family: 'Lato', sans-serif;
    background-attachment: fixed;
    background-size: cover;
}

/* Headers with logo accent colors */
h1, h2, h3, h4, h5, h6 {
    color: #f15a29; /* red-orange tone */
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(249, 158, 34, 0.2);
}

/* Link styling with hover effects */
a {
    color: #f99e22;
    transition: 0.3s;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

a:hover, a:active, a:focus {
    color: #d93864;
    outline: none;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(217, 56, 100, 0.25);
}

/* Buttons and input focus */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 12px rgba(241, 90, 41, 0.4);
    outline: none;
}

/* Main container card */
.container-fluid {
    max-width: 1366px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

/* Back to top button with vibrant gradient */
.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(145deg, #f99e22, #f15a29);
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 20px;
    bottom: 20px;
    transition: background 0.4s, transform 0.2s;
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top i {
    color: #ffffff;
    padding-top: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background: linear-gradient(145deg, #d93864, #fcb530);
    transform: translateY(-5px);
}

.back-to-top:hover i {
    color: #fff;
}

/* Glassy 3D card */
.card-3d {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    padding: 24px;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: translateY(-8px);
}

/* Responsive margin */
@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, #e8f3ff, #cfdff0); /* Light glossy gradient */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    padding: 0 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar .top-bar-left {
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 40px;
    padding: 0 14px;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    border-radius: 6px;
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar .text:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-bar .text i {
    font-size: 14px;
    color: #092a49;
    margin-right: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.top-bar .text h2,
.top-bar .text p {
    color: #092a49;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.top-bar .text p {
    margin-left: 6px;
}

.top-bar .social {
    display: flex;
    height: 40px;
    font-size: 0;
    justify-content: flex-end;
    margin-left: 10px;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #0796fe, #4cb9ff);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border-radius: 8px 0 0 8px;
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}




/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
/* ===================== Navbar Base ===================== */
/* ===================== Navbar Container ===================== */
/* ===================== Navbar Base ===================== */
.navbar {
    position: relative;
    z-index: 999;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(252, 181, 48, 0.25), rgba(255, 247, 230, 0.1));
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
}

/* ===================== Sticky Navbar ===================== */
.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(135deg, #f15a29, #fcb530);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 -1px 1px rgba(255, 255, 255, 0.15);
    border-radius: 0 0 18px 18px;
}

/* ===================== Brand Logo and Name ===================== */
.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 42px;
    font-weight: 600;
    color: #fcb530;
    text-transform: uppercase;
    text-shadow:
        1px 1px 0 #fff,
        2px 2px 6px rgba(241, 90, 41, 0.4);
}

.navbar .navbar-brand img {
    height: 48px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

/* ===================== Nav Links ===================== */
.navbar-dark .navbar-nav .nav-link {
    padding: 12px 18px;
    margin: 0 5px;
    font-size: 18px;
    color: #0f0c0c;
    font-weight: 500;
    letter-spacing: 0.8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fcb530;
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 0 0 rgba(0, 0, 0, 0);
    transform: translateY(-1px);
}

/* ===================== Dropdown Menu ===================== */
.navbar .dropdown-menu {
    border-radius: 12px;
    border: none;
    background: #fcb530;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 10px 0;
}

/* ===================== Toggler (Hamburger Button) ===================== */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 10px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: none;
    width: 26px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Sticky Fix for Toggler */
.navbar.nav-sticky .navbar-toggler,
.navbar.nav-sticky .navbar-toggler-icon,
.navbar.nav-sticky .navbar-toggler-icon::before,
.navbar.nav-sticky .navbar-toggler-icon::after {
    background-color: #1c1616;
}

/* ===================== Responsive ===================== */
@media (min-width: 992px) {
    .navbar {
        top: 35px;
        width: 100%;
        padding: 20px 60px;
        background: linear-gradient(135deg, rgba(252, 181, 48, 0.12), rgba(255, 247, 230, 0.08)) !important;
    }
    .navbar.nav-sticky {
        background: linear-gradient(135deg, #f15a29, #fcb530) !important;
    }
    .page .navbar {
        background: #f15a29 !important;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #f15a29 !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        background: rgba(255, 255, 255, 0.95);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px;
    }
}
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(120deg, #f15a29, #fcb530, #f15a29);
    background-size: 300% 300%;
    animation: borderGradient 5s ease infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: linear-gradient(135deg, #f15a29, #fcb530);
    margin-bottom: 45px;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.2);
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel .carousel-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1;
    border-radius: 0;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: relative;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: #fff;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.carousel .carousel-text h1 {
    font-size: 60px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fce5bb;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.carousel .carousel-text .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #f15a29, #fcb530);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.carousel .carousel-text .btn:hover {
    background: #ffffff;
    color: #f15a29;
    box-shadow: 0 12px 30px rgba(241, 90, 41, 0.4);
    transform: translateY(-2px);
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: auto;
    bottom: 20px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fcb530, #f15a29);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    background: #ffffff;
    color: #f15a29;
    transform: scale(1.1);
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

/* Modal Styling */
#videoModal .modal-dialog {
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal .close {
    position: absolute;
    top: -30px;
    right: 0;
    background: #000;
    color: #fff;
    font-size: 30px;
    width: 30px;
    height: 30px;
    z-index: 999;
    opacity: 1;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }

    .carousel .carousel-text h1 {
        font-size: 40px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 24px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}



/*******************************/
/******* Section Header ********/
/*******************************/
/* ===================== Section Header ===================== */
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 60px;
    padding-left: 60px;
    perspective: 800px; /* Enables 3D appearance */
}

.section-header p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
    font-weight: 400;
    transform: translateZ(10px);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.section-header h2 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 48px;
    font-weight: 300;
    color: #222;
    transform: translateZ(20px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Icon Styling */
.section-header .section-icon {
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    animation: pulse 2s infinite ease-in-out;
    transform-origin: center;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}

/* 3D Skewed Border Underline */
.section-header h2::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) skewX(-20deg);
    width: 220px;
    height: 12px;
    
    z-index: -1;
    transition: all 0.4s ease;
    border-radius: 6px;
}

.section-header h2:hover::after {
    transform: translateY(-50%) skewX(0deg) scaleX(1.05);
}

/* Pulse animation for SVG */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* ===================== Responsive Styles ===================== */
@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 42px;
    }
    .section-header h2::after {
        width: 180px;
        height: 10px;
    }
}

@media (max-width: 767.98px) {
    .section-header {
        padding-left: 30px;
    }
    .section-header h2 {
        font-size: 36px;
    }
    .section-header h2::after {
        width: 140px;
        height: 8px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header .section-icon {
        margin-bottom: 8px;
    }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
/* ===================== Fact Section ===================== */
.fact {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    z-index: 1;
    perspective: 1500px;
}

.fact::before,
.fact::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
}

.fact::before {
    top: -200px;
    left: -200px;
}

.fact::after {
    bottom: -250px;
    right: -250px;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    padding: 50px 30px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #eaeaea);
    border-radius: 30px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg) scale(1);
    cursor: pointer;
    z-index: 2;
}

.fact .fact-item:hover {
    transform: rotateY(8deg) rotateX(4deg) scale(1.08);
    box-shadow:
        0 40px 70px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.fact .fact-item::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 35px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
    transition: opacity 0.5s;
}

.fact .fact-item:hover::before {
    opacity: 1;
}

.fact .fact-item img {
    max-height: 70px;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.fact .fact-item:hover img {
    transform: scale(1.2) rotate(5deg);
}

.fact .fact-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a192f;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.2),
                 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fact .fact-item:hover h2 {
    transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .fact {
        padding: 80px 30px;
        gap: 40px;
    }

    .fact .fact-item {
        max-width: 45%;
        padding: 40px 25px;
    }
}

@media (max-width: 767.98px) {
    .fact .fact-item {
        max-width: 90%;
    }
}

@media (max-width: 575.98px) {
    .fact .fact-item {
        padding: 30px 20px;
    }

    .fact .fact-item h2 {
        font-size: 20px;
    }

    .fact .fact-item img {
        max-height: 60px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 60px 0;
    perspective: 1000px;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
    transform: translateZ(10px);
}

/* Image Container with 3D Layering */
.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s ease;
    transform-style: preserve-3d;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

/* Decorative border with 3D style */
.about .about-img::after {
    content: "";
    position: absolute;
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    border: 30px solid;
    border-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 0.5%,
        rgba(0, 0, 0, 0.1) 0.5%,
        rgba(0, 0, 0, 0.1) 1%
    ) 30;
    z-index: 1;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: 0.4s;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 0.5%,
        rgba(0, 0, 0, 0.05) 0.5%,
        rgba(0, 0, 0, 0.05) 1%
    ) 30;
    transform: scale(1.02) rotateZ(1deg);
}

/* Image layering */
.about .about-img-1 {
    position: relative;
    margin: 0 auto;
    transform: none;
}

/* Ensure images scale cleanly */
.about .about-img-1 img,
.about .about-img-2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Text section with depth */
.about .about-text p {
    font-size: 16px;
    color: #444;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    transform: translateZ(10px);
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 8px;
    background: linear-gradient(145deg, #f9f9f9, #e0e0e0);
    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.about .about-text a.btn:hover {
    color: #0796fe;
    background: #092a49;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 5px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }

    .about .about-img-1,
    .about .about-img-2 {
        margin: 0;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .about .about-img-2 {
        margin-top: 20px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 80px 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    z-index: 1;
}

.service .service-item {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
    padding: 40px 30px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.15),
        -10px -10px 30px rgba(255, 255, 255, 0.8),
        inset 5px 5px 15px rgba(0, 0, 0, 0.05),
        inset -5px -5px 15px rgba(255, 255, 255, 0.4);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
    animation: floatIn 1s ease forwards;
    opacity: 0;
}

@keyframes floatIn {
    0% {
        transform: translateY(50px) rotateX(5deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.service .service-item:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.service .service-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.4), transparent);
    z-index: -1;
    transition: 0.5s;
}

.service .service-item img {
    max-height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.service .service-icon {
    margin-bottom: 15px;
    color: #f15a29;
}

.service .service-icon:hover {
    transform: scale(1.15);
}

.service .service-item:hover img {
    transform: scale(1.15);
}

.service .service-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #092a49;
    margin-bottom: 10px;
    text-shadow:
        1px 1px 0 #fff,
        2px 2px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.service .service-item p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #0796fe;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: 0;
    left: 10%;
    background: #0796fe;
    transition: 0.3s;
}

.service .service-item:hover a {
    color: #092a49;
}

.service .service-item:hover a::after {
    background: #092a49;
    width: 90%;
}

@media (max-width: 991.98px) {
    .service {
        padding: 60px 20px;
        gap: 30px;
    }

    .service .service-item {
        max-width: 45%;
    }
}

@media (max-width: 767.98px) {
    .service .service-item {
        max-width: 90%;
    }
}

@media (max-width: 575.98px) {
    .service .service-item {
        padding: 35px 20px;
    }

    .service .service-item h3 {
        font-size: 20px;
    }

    .service .service-item img {
        max-height: 50px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.feature .col-md-6 {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1200px;
}

.feature .feature-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.feature .feature-img:hover {
    transform: rotateY(8deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.feature .feature-img img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.feature .feature-img:hover img {
    transform: scale(1.05);
}

/* Optional Glass Layer */
.feature .feature-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

.feature .counters {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature .counters .col-6 {
    flex: 1 1 45%;
    background: #fff;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.feature .counters .col-6:hover {
    transform: translateY(-5px);
}

.feature .counters i {
    font-size: 28px;
    color: #0796fe;
    background: rgba(7, 150, 254, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.feature .counters h2 {
    font-size: 28px;
    color: #0796fe;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.feature .counters h2::after {
    content: "+";
    position: absolute;
    right: -12px;
    top: -10px;
    font-size: 20px;
}

.feature .counters p {
    font-size: 16px;
    color: #092a49;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .feature .col-md-6 {
        width: 100%;
    }

    .feature .counters {
        flex-direction: column;
        align-items: center;
    }

    .feature .counters .col-6 {
        width: 90%;
    }
}
/***********************************/
/************Why Choose us**********/
/***********************************/
/***********************************/
.why-choose-us {
  padding: 60px 20px;
  background: transparent; /* background aapka same rahega */
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 36px;
  color: #092a49;
  margin-bottom: 40px;
}

.why-choose-us .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  perspective: 1200px;
}

.why-choose-us .card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.why-choose-us .card:hover {
  transform: rotateY(8deg) translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.why-choose-us .icon {
  font-size: 40px;
  color: #0796fe;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.why-choose-us .card:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.why-choose-us h3 {
  font-size: 22px;
  color: #092a49;
  margin-bottom: 15px;
}

.why-choose-us p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .why-choose-us .section-title {
    font-size: 28px;
  }

  .why-choose-us .card {
    padding: 25px 15px;
  }
}

/*******************************/
/****** Brand With Us **********/
/*******************************/
.trusted-brands {
  padding: 60px 20px;
  background: transparent;
  text-align: center;
}

.trusted-brands .section-title {
  font-size: 36px;
  color: #092a49;
  margin-bottom: 40px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform-style: preserve-3d;
  overflow: hidden; /* important for inner image zoom */
}

.brand-card:hover {
  transform: rotateY(5deg) translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.brand-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.5s ease-in-out;
}

.brand-card:hover img {
  transform: scale(1.15); /* zoom on hover */
}
/* Responsive */
@media (max-width: 600px) {
  .brand-card {
    width: 120px;
    height: 80px;
  }
  .trusted-brands .section-title {
    font-size: 28px;
  }
}





/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    
}

.team .team-item {
    position: relative;
    margin-bottom: 80px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team .team-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team .team-img {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.team .team-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.team .team-item:hover .team-img img {
    transform: scale(1.08);
}

.team .team-text {
    position: absolute;
    bottom: -50px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 25px 15px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: height 0.4s ease;
}

.team .team-item:hover .team-text {
    height: 180px;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0796fe;
    margin-bottom: 10px;
}

.team .team-text p {
    font-size: 14px;
    color: #092a49;
    margin-bottom: 10px;
}

.team .team-social {
    margin-top: 10px;
}

.team .team-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 32px;
    margin: 0 4px;
    text-align: center;
    font-size: 15px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        -4px -4px 8px rgba(255, 255, 255, 0.7);
    color: #092a49;
    border: 2px solid #eaeaea;
    transition: all 0.3s ease;
}

.team .team-social a:hover {
    color: #fff;
    background: #0796fe;
    border-color: #0796fe;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(7, 150, 254, 0.4);
}



/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: #092a49;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
    background: #092a49;
}

@media (max-width: 767px) {
    .team .team-text {
        left: 10px;
        width: calc(100% - 20px);
        height: 110px;
        padding: 20px 10px;
    }
    .team .team-item:hover .team-text {
        height: 170px;
    }
}
.testimonial .stars {
    margin: 5px 0 15px;
    color: #fcb530; /* Gold */
    font-size: 18px;
}

.testimonial .stars i {
    margin: 0 2px;
    transition: transform 0.2s ease;
}

.testimonial .stars i:hover {
    transform: scale(1.2);
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: #0796fe;
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0796fe;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: #092a49;
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: #0796fe;
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: #092a49;
    border-radius: 0;
    border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #0796fe;
    background: #092a49;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
/* 3D container styling */
.contact {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #092a49;
}

.contact-info{
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}
.contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #0796fe;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 8px 15px rgba(7, 150, 254, 0.3);
}

.contact-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #092a49;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Form styling */
.contact-form form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 200%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.05),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    background: #f8fbff;
    font-size: 14px;
    color: #333;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(7, 150, 254, 0.15);
}

.send-btn {
    display: inline-block;
    background: #0796fe;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(7, 150, 254, 0.3);
    text-transform: uppercase;
}

.send-btn:hover {
    background: #055cbd;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .contact-info,
    .contact-form {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .contact-text {
        text-align: left;
    }
}




/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}

/*******************************/
/********* Product Section**********/
/*******************************/



.product-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.product-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
  gap: 0;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image {
  flex: 1;
  overflow: hidden;
}

.product-details {
  flex: 1;
  padding: 30px;
}

.product-details h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a73e8;
}
.product-details p {
  font-size: 18px;
    color: #100e0e;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    transform: translateZ(10px);
}
.product-details li {
  margin-bottom: 5px;
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
}
.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.product-features li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.product-features i {
  color: #0796fe;
  margin-right: 10px;
  font-size: 18px;
}

/* Button */
.btn-primary {
  background-color: #0796fe;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(7, 150, 254, 0.3);
  transition: 0.3s;
  color: #fff;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #067cd4;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }

  .product-details {
    padding: 20px;
  }
}

/**********Floting Whatsap and inquiry*********************/
.floating-contact-glass {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  color: #d42020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* Hover Animation */
.contact-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

/* Neon Glow per Icon */
.contact-btn.whatsapp:hover {
  box-shadow: 0 0 12px #25D366, 0 0 20px #25D366;
  border-color: #25D366;
}
.contact-btn.call:hover {
  box-shadow: 0 0 12px #007bff, 0 0 20px #007bff;
  border-color: #007bff;
}
.contact-btn.email:hover {
  box-shadow: 0 0 12px #dc3545, 0 0 20px #dc3545;
  border-color: #dc3545;
}
.contact-btn.inquiry:hover {
  box-shadow: 0 0 12px #17a2b8, 0 0 20px #17a2b8;
  border-color: #17a2b8;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: linear-gradient(135deg, #f15a29, #fcb530);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
    border-radius: 20px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #0796fe;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #092a49;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #092a49;
    background: none;
    border-radius: 0;
    border: 2px solid #092a49;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #2321cb;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0a0b0b;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.industries-section {
      padding: 60px 20px;
      text-align: center;
    }

    .industries-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #2c3e50;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .industry-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.12);
    }

    .industry-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #007bff;
    }

    .industry-name {
      font-size: 20px;
      color: #333;
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .industries-section h2 {
        font-size: 28px;
      }
    }


    /*****************Sample view********************/
   .card-options-section {
      padding: 60px 20px;
      text-align: center;
    }

    .card-options-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .card-options-section p {
      font-size: 16px;
      color: #555;
      margin-bottom: 40px;
    }

    .options-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .option-card {
      background: white;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .option-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.12);
    }

    .option-icon {
      font-size: 40px;
      margin-bottom: 10px;
      color: #007bff;
    }

    .option-title {
      font-size: 18px;
      color: #333;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .thumbnail {
      width: 100%;
      max-width: 180px;
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .sample-btn {
      background-color: #007bff;
      color: #fff;
      padding: 8px 18px;
      border: none;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .sample-btn:hover {
      background-color: #0056b3;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      position: relative;
      background: white;
      max-width: 700px;
      width: 90%;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
    }

    .modal-content img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 26px;
      color: #333;
      cursor: pointer;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #007bff;
      color: #fff;
      border: none;
      font-size: 20px;
      padding: 8px 12px;
      border-radius: 50%;
      cursor: pointer;
    }

    .prev-btn {
      left: 10px;
    }

    .next-btn {
      right: 10px;
    }

    @media (max-width: 500px) {
      .nav-btn {
        font-size: 16px;
        padding: 6px 10px;
      }
    }