@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Cedarville+Cursive&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Oxanium:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: normal;
}

img {
    max-width: 100%;
}

/* DO NOT TOUCH html, body */
html,
body {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    background: #F6FBF4;
}




/* Only hide horizontal overflow */
.page-wrapper {
    overflow-x: hidden;
}



.container {
    max-width: 1200px;
    padding: 0 12px;
    margin: auto;
}

a {
    text-decoration: none;
}



li {
    list-style: none;
}


/* Full-screen overlay */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #022697;
    /* dark blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 20s ease, visibility 0.5s ease;
}

/* Ring loader */
.ring-loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.ring-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 48px;
    height: 48px;
    margin: 6px;
    border: 6px solid #FCCF00;
    /* accent color */
    border-radius: 50%;
    animation: ring-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #FCCF00 transparent transparent transparent;
}


.ring-loader div:nth-child(1) {
    animation-delay: -0.6s;
}

.ring-loader div:nth-child(2) {
    animation-delay: -0.4s;
}

.ring-loader div:nth-child(3) {
    animation-delay: -0.2s;
}

/* Spin animation */
@keyframes ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide loader after page load */
#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Top Header Start */
.top-header {
    background: #ffb503;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* CONTAINER */
.top-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.top-left .divider {
    color: #555;
}

.top-left i {
    margin-right: 4px;
}

.top-left a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.top-left a:hover {
    text-decoration: underline;
}

/* RIGHT SIDE SCROLL TEXT*/
.top-right {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Wrapper */
.scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Scrolling Text */
.scroll-text {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 12s linear infinite;
    font-size: 14px;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.top-right:hover .scroll-text {
    animation-play-state: paused;
}

/* RESPONSIVE DESIGN*/

/* LARGE SCREENS */
@media (min-width: 1200px) {
    .top-header {
        padding: 15px 40px;
    }
}

/* LAPTOP */
@media (max-width: 1199px) {
    .top-left {
        font-size: 13px;
    }

    .scroll-text {
        font-size: 13px;
    }
}

/* TABLET */
@media (max-width: 991px) {

    .top-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-left {
        display: none;
    }

    .top-right {
        width: 100%;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .top-header {
        padding: 10px 15px;
    }

    .scroll-text {
        font-size: 12px;
        animation-duration: 10s;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .top-header {
        padding: 8px 10px;
    }

    .scroll-text {
        font-size: 11px;
        animation-duration: 8s;
    }
}

/* Top Header End */


/* NAVBAR  START */
.navbar {
    background: #ffff;
    width: 100%;
    position: relative;
    z-index: 999;
    transition: all 0.35s ease;
}

/* Fixed Navbar */
.navbar.fixed {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* logo start */
.navbar-brand img {
    height: 80px;
    border-radius: 5px;
    /* border: 2px solid #104067; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
}

.navbar-brand img:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 10px 25px rgba(23, 108, 177, 0.11); */
}

/* logo end */

/* centre menu start */
.center-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 8px 14px;
}

/* NAV ITEM */
.center-nav .nav-item {
    position: relative;
}

/* NAV LINK */
.center-nav .nav-link {
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: right;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000000 !important;
    transition: all 0.35s ease;
    z-index: 1;
    overflow: hidden;
}

/* ICON */
.center-nav .nav-link i {
    font-size: 15px;
    transition: 0.3s ease;
}

/* Stylish Gradient Glow Background */
.center-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #0191f4, #0191f4);
    opacity: 0;
    transition: 0.35s ease;
    z-index: -1;
}

/* Hover Effect */
.center-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-4px);
}

.center-nav .nav-link:hover::before {
    opacity: 1;
}

/* ACTIVE LINK underline */
.center-nav .nav-link.active::after {
    width: 100%;
}

.center-nav .nav-link:hover i {
    transform: rotate(-8deg) scale(1.1);
}

/* Active underline */
.center-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #0032a5;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Show only for active */
.center-nav .nav-link.active::after {
    width: 60%;

}

.center-nav .nav-link.active {
    color: #0032a5 !important;
    /* text color same as background */
}

/* Remove active background */
.center-nav .nav-link.active::before {
    opacity: 0 !important;
    box-shadow: none !important;
}


/* Responsive */
@media(max-width: 992px) {
    .center-nav {
        gap: 8px;
        padding: 6px 10px;
    }

    .center-nav .nav-link {
        padding: 8px 14px !important;
        font-size: 13px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .btn-quote {
        font-size: 14px !important;
    }
}

/* centre menu end */

/* Drop Down Start */

.custom-dropdown {
    position: relative;
}

/* DROPDOWN CONTAINER */
.dropdown-pane {
    position: absolute;
    top: 115%;
    left: 0;
    min-width: 290px;
    padding: 18px;
    border-radius: 14px;

    background: #ffffff;
    border-top: 2px solid rgba(0, 0, 0, 0.678);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
}

/* Show Dropdown */
.custom-dropdown:hover .dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-pane a {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Highlight Effect */
.dropdown-pane a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0%;
    background: #FFB503;
    border-radius: 4px;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

/* Hover */
.dropdown-pane a:hover {
    background: #fcef011a;
    color: #000000;
    padding-left: 18px;
}

.dropdown-pane a:hover::before {
    height: 60%;
}

/* SUB DROPDOWN */
.sub-dropdown {
    position: relative;
    text-transform: uppercase;
}

/* SUB DROPDOWN PANEL */
.sub-dropdown-pane {
    position: absolute;
    left: 100%;
    top: 0;

    background: #ffffff;
    min-width: 520px;
    padding: 20px;
    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;

    z-index: 999;
}

/* SHOW ON HOVER */
.sub-dropdown:hover>.sub-dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* LINKS STYLE (Card Look) */
.sub-dropdown-pane a {

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1C5685;

    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    border-radius: 12px;

    text-decoration: none;
    transition: all 0.25s ease;

    border: 1px solid rgba(28, 86, 133, 0.08);
}

/* HOVER EFFECT */
.sub-dropdown-pane a:hover {
    background: linear-gradient(135deg, #1C5685, #0d3c61);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(28, 86, 133, 0.3);
}

/* Drop Down end */

/* get a quote button start */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1c5685, #0d3c61);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quote i {
    font-size: 16px;
}

/* Hover Effect */
.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #0d3c61, #1c5685);
}

/* Different Background for User Button */
.user-btn {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.user-btn:hover {
    background: linear-gradient(135deg, #1e7e34, #28a745);
}

/* get a quote button end */

/* Toggle Menu Start*/
.menu-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, #1c5685, #0d3c61);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-btn span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Active Animation (Hamburger to X) */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Toggle Menu End */


/* offcanvas-start */
.stylish-offcanvas {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    color: #1C5685;
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(28, 86, 133, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.stylish-offcanvas .offcanvas-header {
    /* padding: 18px 20px; */
    border-bottom: 1px solid rgba(28, 86, 133, 0.15);
    /* background: #bee3ff; */
}

/* Title */
.stylish-offcanvas .offcanvas-title {
    font-weight: 700;
    font-size: 18px;
    color: #1C5685;
}

/* Close Button */
.stylish-offcanvas .btn-close {
    filter: brightness(0.3);
    opacity: 0.7;
    transition: 0.3s ease;
}

.stylish-offcanvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Body */
.stylish-offcanvas .offcanvas-body {
    padding: 20px;
}

/* offcanvas-header end */


/* MOBILE MENU LINKS */
.mobile-nav-list {
    margin-top: 20px;
    list-style: none;
}

.mobile-nav-list .nav-link {
    text-transform: uppercase;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    color: #58a6ff !important;
}

.mobile-nav-list .nav-link i {
    margin-right: 10px;
    font-size: 16px;
    color: #1C5685;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover i {
    transform: translateX(4px);
    color: #0d3c61;
}

/* MOBILE DROPDOWN */
/* Remove default dropdown arrow */
.mobile-dropdown>.nav-link::after {
    content: none !important;
}

/* Toggle icon */
.mobile-dropdown .toggle-icon {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

/* Rotate toggle icon when open */
.mobile-dropdown.open .toggle-icon {
    transform: rotate(45deg);
    /* + becomes × style */
    color: #000000;
}

/* Dropdown pane */
.mobile-dropdown-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.3s ease;
    list-style: none;
    margin-left: 10px;
}

/* Expanded state */
.mobile-dropdown.open .mobile-dropdown-pane {
    max-height: 600px;
    /* margin-top: 8px; */
    padding: 10px 14px;
    background: #fcef011a;
    border-radius: 10px;
    border-radius: 10px;
}

/* Dropdown links - Modern Card Style */
.mobile-dropdown-pane li .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #000000 !important;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

/* Hover effect */
.mobile-dropdown-pane li .nav-link:hover {
    /* background: linear-gradient(135deg, #1C5685, #0d3c61);
    color: #ffffff !important; */
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(28, 86, 133, 0.25);
}

/* Remove underline animation (cleaner look) */
.mobile-dropdown-pane li .nav-link::after {
    content: none;
}

/* MOBILE SERVICE ROW */
.mobile-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

/* Make toggle icon clickable */
.mobile-dropdown .toggle-icon {
    cursor: pointer;
}

/* offcanvas consult button container start */
.offcanvas-consult-btn {
    margin: 25px 0;
    text-align: center;
}

/* COMMON BUTTON STYLE */
.offcanvas-consult-btn .btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    padding: 12px 16px;

    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;

    text-decoration: none;
    color: #ffffff;

    transition: all 0.3s ease;
}

/* ADMIN BUTTON */
.offcanvas-consult-btn .btn-quote:first-child {
    background: linear-gradient(135deg, #1c5685, #0d3c61);
}

/* USER BUTTON */
.offcanvas-consult-btn .btn-quote:last-child {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    margin-top: 10px;
}

/* HOVER EFFECT */
.offcanvas-consult-btn .btn-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ICON ANIMATION */
.offcanvas-consult-btn .btn-quote i {
    transition: transform 0.3s ease;
}

.offcanvas-consult-btn .btn-quote:hover i {
    transform: scale(1.15);
}

/* offcanvas consult button container end */



/* DIVIDER */
.offcanvas-divider {
    height: 1px;
    width: 85%;
    margin: 18px auto;
    background: #0C93EA;
}

/* CONTACT CARD */
.offcanvas-contact {
    padding: 20px;
    border-radius: 16px;

    background: #0244B7;
    color: #ffffff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Heading */
.offcanvas-contact h6 {
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Contact text */
.offcanvas-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.95;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon inside contact text */
.offcanvas-contact p i {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 8px;
    font-size: 13px;
}

/* SOCIAL BUTTONS CONTAINER */
.offcanvas-socials {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

/* Social Icons */
.offcanvas-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;

    transition: all 0.3s ease;
}

/* Hover effect */
.offcanvas-socials a:hover {
    background: #ffffff;
    color: #1C5685;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Icon scaling */
.offcanvas-socials a i {
    transition: transform 0.3s ease;
}

.offcanvas-socials a:hover i {
    transform: scale(1.2);
}

/* Logo */
.offcanvas-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.offcanvas-logo {
    margin-top: 20px;
    height: 50px;
    width: 100%;
    /* border-radius: 8px; */
}

/* RESPONSIVE */
@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }

    .collapse.navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .center-nav {
        display: none;
    }

    .btn-quote {
        display: none;
    }
}

@media(max-width: 750px) {
    .navbar-brand img {
        height: 50px;
        border-radius: 5px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }
}

/* Navbar-End */



/* hero-section start */
.hero {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    background: #F6FBF4;
}

/* Blob Shape Background */
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #fef10271;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* opacity: 0.5; */
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;

}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #09329A;
    /* change as needed */
    gap: 10px;
    /* space between line and text */
}

.hero-subtitle .line {
    width: 40px;
    /* length of horizontal line */
    height: 2px;
    /* thickness of line */
    background-color: #09329A;
    /* same color as text */
}

.hero-content h1 {
    text-align: left;
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    text-align: left;
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTON AREA */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: #012BA0;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #179BEF;
}

.call-info .phone {
    color: #000000;
    font-weight: 700;
    display: block;
}

.call-info small {
    color: #000000;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    /* height: 400px; */
    margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-container {
        flex-direction: row;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-image img {
        max-width: 450px;
    }
}


/* ===============================
   MOBILE (768px and below)
================================= */
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .btn-primary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .call-info {
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 20px;
    }
}


/* ===============================
   SMALL MOBILE (480px and below)
================================= */
@media (max-width: 480px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }


    .hero-content h1 {
        font-size: 24px;
    }

    .sub-title {
        font-size: 14px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
}

.hero-dots {
    text-align: center;
    margin-top: 20px;
}

.hero-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dots .dot.active {
    background: #0028A0;
    /* match hero color */
}

/* hero-section end */


/* breadcrumb-section start */
.breadcrumb-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #0028A0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

#breadcrumb-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Breadcrumb Container */
.breadcrumb-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Title */
.breadcrumb-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

/* Breadcrumb nav */
.breadcrumb ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 100%;
    flex-wrap: wrap;
    /* Wrap on small screens */
}

/* Separator automatically */
.breadcrumb ul li+li:before {
    content: ">";
    font-weight: 700;
    color: #000;
    font-size: 16px;
    margin-right: 8px;
}

/* Clickable links */
.breadcrumb a {
    text-decoration: none;
    font-size: 18px;
    color: #0028A0;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #0056b3;
}

/* Non-clickable last item */
.breadcrumb span {
    position: relative;
    background: #FFB503;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    font-weight: 500;
    clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%, 10% 50%);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .breadcrumb-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .breadcrumb ul {
        padding: 10px 15px;
        gap: 6px;
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 16px;
        padding: 8px 15px;
    }

    .breadcrumb ul li+li:before {
        font-size: 14px;
        margin-right: 6px;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb-title {
        font-size: 22px;
    }

    .breadcrumb ul {
        flex-direction: row;
        gap: 8px;
        padding: 8px 10px;
    }

    .breadcrumb ul li+li:before {
        content: ">";
        font-weight: 700;
        color: #000;
        font-size: 16px;
        margin-right: 8px;
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 16px;
        padding: 8px 12px;
    }
}

/* breadcrumb-section end */


/* best-choice-section start */
.best-choice-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.best-choice-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT SIDE */
.best-choice-left {
    flex: 1 1 200px;
    min-width: 280px;
}

.best-choice-left .small-title {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0028A0;
    margin-bottom: 10px;
}

.best-choice-left h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.best-choice-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

/* RIGHT SIDE */
.best-choice-right {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.choice-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.choice-card:hover {
    transform: translateY(-5px);
}

.choice-card i {
    font-size: 40px;
    color: #0028A0;
    background: #F2F9FF;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.choice-card h3 {
    color: #000;
    font-weight: 600;
    margin-top: 30px;
    font-size: 18px;
    margin-bottom: 10px;
}

.choice-card p {
    font-size: 14px;
    color: #000000;
}

/* --- RESPONSIVE --- */

/* Tablets */
@media (max-width: 992px) {
    .best-choice-container {
        flex-direction: column;
        gap: 30px;
    }

    .best-choice-right {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .choice-card {
        flex: 1 1 calc(50% - 20px);
        /* 2 columns on tablets */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .best-choice-left h2 {
        font-size: 28px;
    }

    .best-choice-left p {
        font-size: 15px;
    }

    .choice-card {
        flex: 1 1 100%;
        /* stack cards on mobile */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .best-choice-left h2 {
        font-size: 22px;
    }

    .best-choice-left p {
        font-size: 14px;
    }

    .choice-card i {
        font-size: 36px;
    }

    .choice-card h3 {
        font-size: 18px;
    }

    .best-choice-left .small-title {
        font-size: 12px;
    }
}

/* best-choice-section end */


/* about-section start */
.about-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.about-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}


.about-left {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-counters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.counter h3 {
    font-size: 24px;
    color: #0028A0;
    margin-bottom: 5px;
}

.counter p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

/* Right side text */
.about-right {
    flex: 1;
    min-width: 280px;
}

.small-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0028A0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.about-description {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

/* Bold important words automatically in <b> */
.about-description b {
    color: #0028A0;
    font-weight: bold;
}

/* Know More Button */
.btn-know-more {
    display: inline-block;
    background: #0028A0;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-know-more:hover {
    background: #0056b3;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-left,
    .about-right {
        text-align: center;
    }

    .about-right {
        order: -1;
        /* Optional: show text above image on mobile */
    }

    .about-title {
        font-size: 18px;
    }

    .small-label {
        font-size: 12px;
    }

    .about-description {
        font-size: 14px;
    }
}

/* about-section end */


/* top-products-section start */
.top-products-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.top-products-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.top-products-header .small-label {
    font-size: 14px;
    color: #0028A0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.top-products-header .top-products-title {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 40px;
}

/* Grid */
.top-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

/* Card */
.top-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.top-product-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.top-product-card .product-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.top-product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Name */
.top-product-card .product-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

/* Product Price */
.top-product-card .product-price {
    font-size: 14px;
    color: #0028A0;
    font-weight: bold;
}

/* Take Dealership Button */
.btn-dealership {
    display: inline-block;
    background-color: #0028A0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-dealership:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .top-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .top-products-grid {
        grid-template-columns: 1fr;
    }

    .top-products-header .top-products-title {
        font-size: 22px;
    }

    .top-products-header .small-label {
        font-size: 12px;
    }
}

/* top-products-section end */


/* inner-products start */
.inner-products {
    padding: 80px 5%;
    background: #fff;
}

.inner-products-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image */

.inner-product-image {
    flex: 1;
    text-align: center;
}

.inner-product-image img {
    max-width: 380px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inner-product-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content */

.inner-product-content {
    flex: 1.2;
}

.inner-product-title {
    font-size: 34px;
    margin-bottom: 10px;
    color: #0028A0;
}

.inner-product-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: #444;
}

.inner-product-description {
    line-height: 1.7;
    margin-bottom: 20px;
}

.inner-product-benefits {
    padding-left: 18px;
    margin-bottom: 20px;
}

.inner-product-benefits li {
    margin-bottom: 7px;
}

.inner-product-info p {
    margin: 6px 0;
}

/* Buttons */

.inner-product-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.distributor-btn {
    background: #0028A0;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.distributor-btn:hover {
    background: #001e7a;
}

/* Responsive */

@media(max-width:768px) {

    .inner-products-container {
        flex-direction: column;
        text-align: center;
    }

    .inner-product-buttons {
        justify-content: center;
    }

}

/* inner-products end */


/* why-choose-section start  */
.why-choose-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Header */
.why-choose-header .small-label {
    font-size: 14px;
    color: #0028A0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.why-choose-header .why-choose-title {
    font-size: 34px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 40px;
}

/* Cards Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

/* Individual Card */
.choose-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.4s;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Card Hover Effect */
.choose-card:hover {
    background: linear-gradient(to bottom, #0028A0, #0056b3);
    color: #fff;
}

.choose-card:hover .choose-icon {
    color: #ffc107;
    /* Icon color change on hover */
}

/* Title */
.choose-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Icon */
.choose-icon {
    font-size: 36px;
    color: #0028A0;
    margin-bottom: 15px;
    transition: color 0.3s;
}

/* Description */
.choose-description {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-header .why-choose-title {
        font-size: 18px;
    }

    .why-choose-header .small-label {
        font-size: 12px;
    }

}



/* why-choose-section end */


/* testimonial-section start */
.testimonial-section {
    padding: 70px 20px;
    background: #f7f7f7;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #0028A0;
}

.testimonial-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 10px;
    color: #000000;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform .5s ease;
}

.testimonial-card {
    min-width: 33.33%;
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    position: relative;
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
}

.quote-img {
    position: absolute;
    top: 30px;
    left: 20px;

}

.quote-img img {
    width: 100%;
    height: 100%;

}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 50px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.stars {
    color: #FBCF01;
    font-size: 14px;
}

.testimonial-user h4 {
    margin: 2px 0;
    font-size: 16px;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}

/* DOTS */

.testimonial-dots {
    text-align: center;
    margin-top: 25px;
}

.testimonial-dots span {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dots span.active {
    background: #ff6a4d;
}

/* responsive */

@media(max-width:992px) {
    .testimonial-card {
        min-width: 50%;
    }
}

@media(max-width:600px) {
    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-title h2 {
        font-size: 22px;
    }

    .testimonial-title span {
        font-size: 12px;

    }
}

/* testimonial-section end */



/* mission-vision-section start */
.mission-vision-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.mission-title {
    text-align: center;
    margin-bottom: 50px;
}

.mission-title span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #0028A0;
    font-weight: 600;
}

.mission-title h2 {
    font-size: 34px;
    margin-top: 10px;
    font-weight: 700;
    color: #000000;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    font-size: 40px;
    color: #0028A0;
    margin-bottom: 15px;
}

.mission-card h3 {
    color: #0028A0;;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* mission-vision-section end */


/* contact-section start */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f7f7, #eef3ff);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Map */

.contact-map {
    height: 100%;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Details */

.contact-details {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */

.contact-details h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
    color: #000000;
}

/* Description */

.dres p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* UL */

.contact-details ul {
    padding: 0;
    margin: 0;
}

/* LI */

.contact-details li {
    list-style: none;
    margin-bottom: 20px;
}

/* Contact card */

.contact-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #FBCF01;
}

/* Card title */

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0028A0;
}

/* Address lines */

.contact-details p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Icons */

.contact-details p i {
    color: #0028A0;
    font-size: 18px;
    min-width: 22px;
    margin-top: 3px;
}

/* strong text */

.contact-details p strong {
    color: #000;
    font-weight: 600;
}

/* Responsive */

@media(max-width:900px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

}

@media(max-width: 650px) {
    .contact-details h2 {
        font-size: 24px;
    }

}

/* contact-section end */


/* aarya-form-section start */
.aarya-form-section {
    max-width: 700px;
    margin: 50px auto;
    padding: 35px;
    background: aliceblue;
    border: 1px solid #777777b0;
    border-radius: 12px;
    transition: 0.3s;
}

.aarya-form-section:hover {
    transform: translateY(-3px);
    border: 1px solid #033BBA;
}

/* Heading */
.aarya-form-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    color: #033BBA;
}

/* Form Layout */
#orderForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Inputs */
#orderForm input,
#orderForm select,
#orderForm textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

/* Focus Effect */
#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
    border-color: #033BBA;
    box-shadow: 0 0 6px rgba(11, 107, 58, 0.25);
}

/* Textarea */
#orderForm textarea {
    resize: none;
    min-height: 100px;
}

/* Submit Button */
#orderForm button {
    background-color: #FFB503;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

/* Button Hover */
#orderForm button:hover {
    background: #0F7BD2;
    transform: translateY(-2px);
}

/* Placeholder style */
#orderForm input::placeholder,
#orderForm textarea::placeholder {
    color: #888;
}

/* Two column layout for desktop */
.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
}

/* Responsive Design */

@media (max-width:768px) {

    .aarya-form-section {
        margin: 30px 15px;
        padding: 25px;
    }

    .aarya-form-section h2 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
    }

}

@media (max-width:480px) {

    .aarya-form-section {
        padding: 20px;
    }

    #orderForm button {
        font-size: 15px;
        padding: 12px;
    }

}

/* aarya-form-section end */

/* popup-overlay start */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    animation: popupScale 0.3s ease;
}

.popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #FFB503;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: popupIcon 0.5s ease;
}

/* small animation */
@keyframes popupIcon {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #033BBA;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #041e5c;
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* popup-overlay end */


.gallery-section {
    padding: 60px 5%;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* Popup */

.gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.gallery-popup img {
    max-width: 80%;
    max-height: 80%;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}



/* Responsive */

@media(max-width:992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 24px;
    }
}



/* Footer-start */
.footer-top {
    display: flex;
    justify-content: space-between;
    /* text left, buttons right */
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* optional if you want background */
    flex-wrap: wrap;
    /* ensures responsive stacking on small screens */
}

.footer-top h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
}

.footer-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

/* WhatsApp Button */
.footer-buttons .whatsapp-btn {
    background-color: #25D366 !important;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-buttons .whatsapp-btn:hover {
    background-color: #1ebe5d !important;
}

/* Call Button */
.footer-buttons .call-btn {
    background-color: #0662BA;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-buttons .call-btn:hover {
    background-color: #001d73;
}

/* Hide call button on desktop */
.footer-buttons .call-btn {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .footer-buttons .call-btn {
        display: inline-flex;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-top h2 {
        font-size: 20px;
    }
}

footer.footer {
    background-color: #022697;
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Footer Main: 5 Columns */
footer .footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 15px;
}

.footer-logo {
    height: 100px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Social Media Icons */
.footer-social .bi {
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 10px;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.footer-social .bi:hover {
    background-color: #FCCF00;
    border: none;
    color: #000000;
    transform: scale(1.2);
    cursor: pointer;
}

.footer-about {
    font-size: 14px;
    margin-top: 10px;
}

/* Column Headings */
footer .footer-main h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer Links */
footer .footer-main ul {
    list-style: none;
    padding: 0;
}

footer .footer-main ul li {
    font-size: 14px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer .footer-main ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-main ul li a:hover {
    color: #cccccc;
}

/* Social Media Icons */
footer .footer-main div.flex a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

footer .footer-main div.flex a:hover {
    color: #cccccc;
}

/* Gallery Images */
footer .footer-main div.grid img {
    width: 100%;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.25rem;
    transition: transform 0.3s ease;
}

footer .footer-main div.grid img:hover {
    transform: scale(1.05);
}

.footer-contact {
    color: #fff;
    font-size: 14px;
}

/* Footer Bottom: Copyright */
footer .footer-bottom {
    background-color: #011b6f;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}

footer .footer-bottom a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

footer .footer-bottom a:hover {
    color: #cccccc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    footer .footer-top {
        flex-direction: column;
        /* gap: 1rem; */
    }

    footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

}

@media (max-width: 480px) {
    footer .footer-main {
        grid-template-columns: 1fr;
    }

    footer .footer-bottom {
        font-size: 12px;
    }
}

/* Footer-end */




/* ===============================
   ANIMATED BACK TO TOP BUTTON
   =============================== */

/* Button base */
#et-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #f4a100, #ff7b00);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

/* Show button */
#et-top-btn.et-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: et-top-outline 1.5s ease-in-out infinite;
}

/* Arrow inside */
.et-top-arrow {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover lift and arrow effect */
#et-top-btn:hover {
    transform: scale(1.05);
}

#et-top-btn:hover .et-top-arrow {
    transform: translateY(-2px);
}

/* Glowing outline animation */
@keyframes et-top-outline {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 207, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 12px 8px rgba(252, 207, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 207, 0, 0.5);
    }
}

/* Mobile */
@media (max-width: 600px) {
    #et-top-btn {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 15px;
    }

    .et-top-arrow {
        font-size: 18px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===== Call Floating Button ===== */
.call-float {
    position: fixed;
    left: 12px;
    /* slightly off-screen */
    bottom: 90px;
    /* balanced with other buttons */
    width: 52px;
    height: 52px;
    background: #1D56DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9997;
    transition: all 0.3s ease;
}

/* Hover / Tap effect */
.call-float:hover {
    left: 25px;
    transform: scale(1.08);
    color: #ffffff;
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .call-float {
        display: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
    }
}


/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #06A7D4;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #06A7D4;
    border-radius: 0;
}

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #06A7D4 transparent;
}