@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&display=swap');

:root {
    /* Background */
    --background-dark: #000a3f;
    /* Deep navy (primary dark) */
    --background-primary: #005f9e;
    /* Ocean blue (main content) */
    --background-secondary: #e6f2ff;
    /* Light sky blue (secondary) */
    --background-light: #ffffff;
    /* White (cards/light sections) */

    /* Buttons & CTAs */
    --button-bg-primary: #ffb700;
    /* Bright solar yellow (primary action) */
    --button-bg-secondary: #005f9e;
    /* Ocean blue (secondary) */
    --button-bg-light: #ffffff;
    /* White (minimalist buttons) */
    --button-text-primary: #000000;
    /* Black (for yellow buttons) */
    --button-text-secondary: #ffffff;
    /* White (for blue buttons) */

    /* Typography */
    --text-color-primary: #000a3f;
    /* Dark blue (headings) */
    --text-color-secondary: #005f9e;
    /* Ocean blue (subheadings) */
    --text-color-light: #ffffff;
    /* White (on dark backgrounds) */
    --text-color-accent: #ffb700;
    /* Solar yellow (highlight text) */

    /* Accents & Utility */
    --accent-sun: #ffb700;
    /* Solar yellow (icons, highlights) */
    --accent-sky: #00a8e8;
    /* Bright sky blue (gradients) */
    --border-light: #e0e0e0;
    /* Light gray (dividers) */

    --primary-color: #000a3f;
    --secondary-color: #ffb700;
    --radius-sm: 8px;
    --radius-md: 12px;
}


body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background-color: var(--background-light);
    background-image: url(../img/body.png);
    background-blend-mode: luminosity;
    background-size: 20%;
    background-repeat: repeat;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #373636ba url(../img/loader.gif) 50% 50% no-repeat;
    background-size: 70px 70px;
}

/* header */

.header {
    background-color: var(--background-dark);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
}

.header_contacts {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.header_contacts .contact_area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.header_contacts .contact_area i {
    font-size: 2.25rem;
    color: var(--accent-sun);
}

.header_contacts .contact_area .contact_details {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.header_contacts .contact_area .contact_details p {
    margin-bottom: 0;
    color: var(--bs-dark-border-subtle);
    font-size: 0.85rem;
}

.header_contacts .contact_area .contact_details a {
    text-decoration: none;
    color: var(--background-secondary);
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #0000;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    /* background-color: #fff4f4; */
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    max-height: 240px;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}

.header_body {
    display: flex;
    flex-direction: row;
    padding: 1rem 0 3rem 0;
    align-items: center;
}

.logo {
    height: fit-content;
    display: inline-block;
    margin-right: auto;
}

.logo img {
    height: 60px;
}

.menu li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
    color: #795050;
    font-size: 1.2rem;
    font-weight: 500;
}

.menu li a:hover {
    color: #f30707;
}

/* Basic reset and styling for the menu */
.floating_nav {
    position: relative;
}

.floating_nav .nav_bar_full {
    position: absolute;
    left: 0;
    right: 0;
    top: -1.5rem;
    z-index: 1900;
}

.responsive-menu {
    position: relative;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background-color: var(--background-light);
}

.nav-container {
    position: relative;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--background-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-item.active {
    background-color: var(--background-dark);
    border-radius: 0.5rem;
}

.nav-menu .nav-item.activated-data {
    background-color: #000a3f;
    border-radius: 0.5rem;
}

.nav-menu .activated-data .nav-link {
    color: var(--background-light);
}

.nav-menu .active .nav-link {
    color: var(--background-light);
}

.nav-menu .nav-item.activated {
    background-color: #610808;
}

.nav-menu a:hover {
    color: var(--accent-sun) !important;
}

.nav-menu .nav-link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-color-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-menu a:focus {
    color: #fff !important;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000000;
    width: 240px;
    background-color: var(--background-dark);
    border-radius: 0.5rem;
}

.submenu li {
    border-bottom: 1px solid #dddddd3b;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    padding: 12px 28px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    width: 100%;
}

.submenu li.active_submenu a {
    background-color: #610808;
}

/* Show submenu on hover for desktop */
@media (min-width: 1001px) {
    .nav-item:hover .submenu {
        display: block;
    }
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .nav-toggle {
        display: flex;
        padding: 4px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.show {
        width: 300px;
        display: flex;
        position: absolute;
        right: 0;
        background-color: var(--background-dark);
        z-index: 99999999;
        border-radius: 0.5rem;
    }

    .nav-menu .nav-link {
        color: var(--border-light);
    }

    .nav-menu .nav-item {
        border-top: 1px solid #dddddd61;
    }

    .submenu {
        position: static;
        box-shadow: none;
        background-color: var(--button-bg-secondary);
        width: 100%;
    }

    .submenu li {
        border-bottom: 1px solid #dddddd2e;
        padding: 3px 0px;
    }

    .submenu li a {
        color: #fff;
        width: 100%;
        display: inline-block;
        padding: 4px 12px;
        font-size: 14px;
    }

    .nav-menu .nav-link {
        padding: 8px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .submenu li a:hover {
        background-color: #0000;
    }
}

.banner_area {
    position: relative;
    overflow: hidden;
}

.banner_area:after {
    content: '';
    top: 0;
    transform: translateX(100%);
    width: 300%;
    height: 100%;
    position: absolute;
    z-index: 1;
    animation: slide 5s infinite;


    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2128501058626575) 45%, rgba(255, 255, 255, 0.3697128509606967) 52%, rgba(255, 255, 255, 0.18764002182904416) 59%, rgba(255, 255, 255, 0) 100%);
}

/* animation */

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.banner_text {
    position: absolute;
    height: 100%;
    width: 100%;
    width: 100%;
    inset: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgb(3 21 41 / 93%) 10%, rgba(0, 0, 0, 0) 100%);
}

.banner_text h1 {
    color: #fff;
    width: 60%;
    font-family: "Kalnia", serif;
    font-optical-sizing: auto;
}

.banner_text p {
    color: #fff;
    width: 50%;
    font-size: 1.1rem;
}

.banner_text button {
    background-color: var(--accent-sun);
    color: var(--background-dark);
    font-size: 1.2rem;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    border-radius: 0.35rem;
    box-shadow: none;
    border: none;
}

.slider_area {
    aspect-ratio: 23 / 9 !important;
}

.slider_area img {
    /* max-height: 560px; */
}

.main_cards {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
    z-index: 2000;
    margin-bottom: 140px;
}

.all_main_cards {
    display: flex;
    padding: 0 3rem;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.left_card_area {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 15px 0px;
}

.right_card_area {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 15px 0px;
}

.main_card {
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 15px 0px;
    padding: 30px 30px 35px;
    border-style: solid;
    border-width: 0px;
    background-color: #fff;
}

.main_card .top_icon {
    display: flex;
    height: 52px;
    margin-bottom: 0.5rem;
}

.main_card .top_icon i {
    font-size: 3rem;
    color: #ffb700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_card h2 {
    font-size: 1.4rem;
    color: #22338e;
}

.main_card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #979797;
}

.right_card_area .main_card {
    background-color: #ffb700;
}

.right_card_area .main_card .top_icon i {
    color: #fff;
}

.right_card_area .main_card h2 {
    color: #162fb3;
}

.right_card_area .main_card p {
    color: #fff;
}

.highlight-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-icon i {
    color: #1e34a8;
}

.info-card {
    background: white;
    padding: 1rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card i {
    font-size: 24px;
    color: #1e34a8;
}

.about-section {
    padding: 20px 0;
}

.hero-text {
    padding-right: 20px;
}

.about_image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.about_right_area {
    position: relative;
}

.about_right_area .info-card-1 {
    position: absolute;
    top: 10%;
    right: 65%;
}

.about_right_area .info-card-2 {
    position: absolute;
    top: 90%;
    left: 25%;
}

.text-solar {
    color: #1e34a8;
}

.section-title {
    color: #1e34a8;
    font-weight: bold;
}

.btn-primary {
    background-color: #1e34a8;
    border: none;
}

.btn-primary:hover {
    background-color: #162785;
}

.card {
    border-radius: 15px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.tag {
    background-color: #1e34a8;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    display: inline-block;
    margin-top: -15px;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0rem;
}

.contact-btn {
    background-color: #1e34a8;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #ffb700;
    color: #162785;
}


.middle_banner {
    background-color: #070e32;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.middle_banner::before {
    content: "";
    background: url('../images/solar images/img_3.jpg') repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.middle_banner .container {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.middle_banner .title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.middle_banner p {
    font-size: 18px;
    color: #e2e2e2;
    line-height: 1.6;
}

.middle_banner .btn {
    display: inline-block;
    background-color: #fff;
    color: #071765;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 12px;
}

.middle_banner .btn i {
    margin-right: 5px;
}

.middle_banner .btn:hover {
    background-color: #051668;
    color: #fff;
}

.footer {
    /* background-color: #071765; */
    position: relative;
    padding: 100px 0px 10px 0;
    background-image: url("../images/solar images/img_1.jpg");
}

.footer::after {
    content: "";
    background-color: #000c44eb;
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.footer-container {
    position: relative;
    z-index: 10;
}

.footer h2,
.footer h3 {
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.quick-links ul li a:hover {
    color: #ffb700;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #ffb700;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #ffb700;
}

.subscribe {
    display: flex;
    margin-top: 10px;
}

.subscribe input {
    padding: 10px;
    width: 80%;
    border: none;
    border-radius: 5px;
    outline: none;
}

.subscribe button {
    padding: 10px;
    background-color: #ffb700;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 5px;
}

.subscribe button:hover {
    background-color: #ffb700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    position: relative;
    z-index: 20;
}

.footer-bottom a {
    color: #ffb700;
    text-decoration: none;
}

.footer-logo {
    width: 190px;
    margin-bottom: 1rem;
}

.about {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

.about h2 {
    color: #1e34a8;
    font-size: 18px;
    text-transform: uppercase;
}

.about h3 {
    font-size: 28px;
    font-weight: bold;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
    color: #818181;
}

/* Stats Section */
.stat-card {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.stat-card-count {
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.stat-card-count.primary {
    background: #1e34a8;
    color: white;
}

.stat-card-count.secondary {
    background: #f39c12;
    color: white;
}

.stat-card img {
    width: 100%;
    border-radius: 8px;
}

.about_left {
    position: relative;
}

.about_left .stat-card-count {
    position: absolute;
    padding: 0.5rem 1rem;
    top: 0;
    right: 5%;
}

.about_right {
    position: relative;
}

.about_right .stat-card-count {
    position: absolute;
    padding: 0.5rem 1rem;
    bottom: 0;
    left: 5%;
}

.page_details {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #1e34a8;
    text-transform: uppercase;
}

.section-title span {
    color: black;
}

.main-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1e34a8;
    margin-top: 10px;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
}

.sub_banner {
    background-color: #000522;
    height: 280px;
}

.sub_banner_content {
    height: 100%;
    background-image: url(../images/banner_bg.png);
    background-repeat: repeat-x;
    background-size: 350px;
    background-position: bottom;
}

.sub_banner_content .container {
    height: 100%;
}

.sub_banner_details {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 2rem;
    gap: 0.5rem;
}

.sub_banner_details h1 {
    color: #ffb700;
    text-align: center;
}

.sub_banner_details .breadcrumb-item a {
    color: #8b9cff;
    text-decoration: none;
}

.sub_banner_details .breadcrumb-item.active {
    color: #ffffff;
}

.sub_banner_details .breadcrumb-item+.breadcrumb-item::before {
    color: #ffb700;
}

/* Section Layout */
.solar-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Content Section */
.content {}

.contact {
    font-size: 2rem;
    color: #1e34a8;
    font-weight: bold;
    text-transform: uppercase;
}

.heading {
    font-size: 22px;
    color: #f39c12;
    margin-top: 10px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.features li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #555;
}

.features i {
    color: #1e34a8;
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .solar-section {
        flex-direction: column;
    }

    .image-container,
    .content {
        width: 100%;
    }

    .image-container img {
        border-radius: 15px 15px 0 0;
    }
}

/* Gallery Section */
.gallery-title {
    font-size: 36px;
    font-weight: bold;
    color: #1e34a8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-container a {
    width: 24%;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #f39c12;
}

.gallery-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease-in-out;
}

.gallery-container a:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
    .gallery-container a {
        width: 90%;
    }
}

/* Counter */
.counter-box {
    padding: 32px 22px;
    position: relative;
    background: #05135d;
    color: white;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.counter-box::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 36%;
    width: 280px;
    height: 280px;
    background: #0b1c78;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.counter-box:hover::after {
    top: 12%;
    left: 30%;
    transition: all 0.3s ease-in-out;
}

.counter-data {
    position: relative;
    z-index: 2;
}

.counter-box i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.counter-box h3 {
    font-size: 32px;
    margin: 5px 0;
    font-weight: bold;
}

.counter-box p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .counter-box {
        margin: 10px auto;
    }
}


/* Products */
/* .product__title {
    color: var(--primary-color);
    font-weight: bold;
}

.product__card {
    border-radius: var(--radius-md);
    background-color: #fff;
    border: 2px solid #ffcc00;
    transition: 0.3s;
}

.product__card:hover {
    box-shadow: 0 8px 20px rgba(0, 10, 63, 0.1);
    transform: translateY(-5px);
    border-color: #1e34a8;
}

.product__image {
    border-radius: var(--radius-sm);
}

.product__name {
    color: #1a2f9e;
    font-weight: 600;
}

.product__desc {
    font-size: 0.95rem;
    color: #444;
}

.btn__primary {
    border: 1px solid #0c1b6a !important;
    background-color: #fff !important;
    color:  #0c1b6a !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
}

.product__card:hover .btn__primary {
    color: #ffdc73 !important;
    background-color: #0c1b6a !important;
}

.btn__secondary {
    background-color: var(--secondary-color);
    color: #000;
    font-weight: bold;
    border-radius: var(--radius-sm);
}

.btn__secondary:hover {
    background-color: #e6a800;
}

.product__main-img {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
}

.product__thumb {
    width: 70px;
    height: 70px;
    border: 2px solid #ccc;
    border-radius: var(--radius-sm);
    cursor: pointer;
    object-fit: cover;
}

.product__thumb:hover {
    border-color: var(--secondary-color);
}

.product__features {
    list-style: none;
    padding-left: 0;
}

.product__features li {
    margin-bottom: 8px;
    font-size: 1rem;
} */


/* Products Section */
.products-section {
    background-color: #f8f9fa;
}

.section-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.section-title {
    color: #1a2f9e;
    font-weight: 700;
    position: relative;
    display: inline-block;
}


/* Product Card */
.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #1a2f9e;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a2f9e;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
    z-index: -1;
}

.product-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    text-align: center;
}

.product-img {
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 158, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-img-container .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: white;
    color: #1a2f9e;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card:hover .btn-view-details {
    background-color: #ffcc00 !important;
    color: #1a2f9e !important;
}

.product-content {
    padding: 0 5px;
}

.product-name {
    color: #1a2f9e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-rating {
    color: #ffcc00;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-desc {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #495057;
    background: #f1f3f5;
    padding: 5px 10px;
    border-radius: 20px;
}

.spec-item i {
    color: #1a2f9e;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2f9e;
}

.btn-add-to-cart {
    background: #1a2f9e;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #ffcc00;
    color: #1a2f9e;
}

.btn-view-all {
    border: 2px solid #1a2f9e;
    color: #1a2f9e;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1a2f9e;
    color: white;
}

/* Product Modal */
.product-gallery {
    background: #f8f9fa;
    height: 100%;
}

.main-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: #1a2f9e;
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    color: #1a2f9e;
    font-weight: 700;
    margin-bottom: 15px;
}

.stars {
    color: #ffcc00;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2f9e;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #6c757d;
}

.discount-badge {
    background: #ffcc00;
    color: #1a2f9e;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 8px;
}

.spec-item {
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.btn-quantity {
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    font-weight: 600;
    cursor: pointer;
}

.btn-quantity:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    font-weight: 600;
}

.product-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.meta-item i {
    color: #1a2f9e;
    width: 20px;
}

.modal-content .modal-details {
    border-radius: 1rem !important;
    overflow: hidden;
}

.btn_close {
    position: absolute;
    top: -16px;
    right: -16px;
    background-color: #ffcc00 !important;
    color: #1a2f9e !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 3rem !important;
    border: none;
}

.btn_close i:before {
    font-weight: 700 !important;
    font-size: 1.2rem;
}

.btn-add-cart {
    color: #fff !important;
    border-radius: 5px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: inline-block !important;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1) !important;
    outline: none !important;
    background: #1a2f9e !important;
    border: none !important;
}

.btn-add-cart-outlined {
    color: #1a2f9e !important;
    border-radius: 5px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: inline-block !important;
    outline: none !important;
    background: #ffffff !important;
    border: 1px solid #1a2f9e !important;
}

.btn-add-cart-outlined:hover {
    color: #fff !important;
    background: #1a2f9e !important;
}

.modal-detailed-content {
    height: 600px;
    overflow-y: scroll;
    margin: 1rem 0 !important;
}

/* Contact */
/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-weight: 700;
    color: #1a2f9e;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.section-tagline {
    display: inline-block;
    color: #ffcc00;
    background-color: #1a2f9e;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Map Container */
.contact-map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    min-height: 400px;
}

.contact-map {
    display: block;
    width: 100%;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    max-width: 270px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay-info h5 {
    color: #1a2f9e;
    font-weight: 600;
}

.map-overlay-info i {
    color: #ffcc00;
}

.map-overlay-info p{
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #1a2f9e;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-title {
    color: #1a2f9e;
    font-size: 1rem;
    font-weight: 600;
}

.info-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-container {
    border: 1px solid #e9ecef;
}

.form-title {
    color: #1a2f9e;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: #1a2f9e;
    box-shadow: 0 0 0 0.25rem rgba(26, 47, 158, 0.25);
}

.form-floating>label {
    color: #6c757d;
}

.btn-submit {
    background-color: #1a2f9e;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #142583;
    transform: translateY(-2px);
}

/* Success Modal */
.success-icon {
    font-size: 4rem;
    color: #28a745;
}

.modal-title {
    color: #1a2f9e;
    font-weight: 700;
}

.modal-text {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-map-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .map-overlay-info {
        max-width: 200px;
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Contact Info Grid */
.contact-info-grid {
    position: relative;
}

.contact-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 47, 158, 0.2);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-hover:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.bg-primary-light {
    background-color: rgba(26, 47, 158, 0.1);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-content {
    padding-left: 5px;
}

.contact-heading {
    color: #1a2f9e;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

.contact-details {
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    margin-bottom: 8px;
    align-items: baseline;
}

.detail-label {
    font-weight: 500;
    color: #495057;
    min-width: 80px;
    font-size: 0.9rem;
}

.detail-value {
    color: #212529;
    flex-grow: 1;
    font-size: 0.95rem;
}

.detail-value a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
}

.detail-value a:hover {
    color: #1a2f9e;
    text-decoration: underline;
}

.contact-cta .btn {
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timezone-note small {
    font-size: 0.75rem;
}

.support-badge .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .contact-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .detail-label {
        min-width: 70px;
        font-size: 0.85rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .detail-item {
        flex-direction: column;
    }

    .detail-label {
        margin-bottom: 2px;
    }
}

.contact-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}