

:root {
  --primary: #1e88b6;
  --secondary: #4fc3f7;
  --dark: #0f2b3a;
  --light: #f5fbff;
}


/* ================= TOP HEADER ================= */
.top-header {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: #fff;
    transition: 0.3s;
    padding: 10px 0;
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 5px 0;
}

/* NAV LINKS */
.navbar .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
    transition: 0.3s;
}

/* UNDERLINE */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #1e88b6, #4fc3f7);
    transform: translateX(-50%);
    transition: 0.4s ease;
    border-radius: 10px;
}

/* HOVER */
.navbar .nav-link:hover {
    color: var(--primary);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

/* ACTIVE */
.navbar .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.navbar .nav-link.active::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.6);
}

/* BUTTON */
.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .navbar .nav-link::after {
        display: none;
    }

    .top-header {
        text-align: center;
    }
}


/* ================= HERO CLEAN ================= */
.hero-clean {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8fbff;
}

/* HEADING */
.hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #0f2b3a;
}

.hero-heading span {
    color: #2daae1;
}

/* DESC */
.hero-desc {
    margin-top: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: linear-gradient(90deg, #0f2b3a, #2daae1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* IMAGE */
.hero-img {
    max-width: 80%;
    height: auto;
}

/* SWIPER */
.heroCleanSwiper {
    padding-bottom: 40px;
}

/* DOTS */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #2daae1;
    width: 20px;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 991px) {

    .hero-heading {
        font-size: 30px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-btn {
        display: block;
        margin: 20px auto;
        text-align: center;
    }

    .hero-img {
        max-width: 90%;
    }
}

/* ================= BRANDS ================= */
.brands-section {
    background: #f8fbff;
}

/* TEXT */
.brands-sub {
    color: #2daae1;
    font-weight: 500;
}

.brands-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2b3a;
}

.brands-desc {
    color: #6c757d;
}

/* BRAND BOX */
.brand-box {
    border: 1px dashed #ddd;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
}

/* IMAGE */
.brand-box img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

/* HOVER EFFECT */
.brand-box:hover {
    border-color: #2daae1;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE (2 PER ROW ALREADY USING col-6) */
@media (max-width: 767px) {
    .brands-title {
        font-size: 28px;
    }

    .brand-box {
        padding: 20px;
    }

    .brand-box img {
        height: 35px;
    }
}


/* ================= WHY SECTION ================= */
.why-section {
    background: #ffffff;
}

/* TITLE */
.section-sub {
    color: #2daae1;
    font-weight: 500;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2b3a;
}

/* CARD */
.why-card {
    background: #f8fbff;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

/* ICON */
.why-card i {
    font-size: 40px;
    color: #2daae1;
    margin-bottom: 15px;
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: #6c757d;
    font-size: 14px;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    background: #2daae1;
    color: #fff;
}

.why-card:hover i {
    color: #fff;
}

.why-card:hover p {
    color: #fff;
}

/* MOBILE */
@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
}

/* ================= SERVICES ================= */
.services-section {
    background: #f8fbff;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.service-card img {
    height: 60px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: #6c757d;
    font-size: 14px;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(90deg, #0f2b3a, #2daae1);
    border: none;
    border-radius: 30px;
}

/* MOBILE */
@media (max-width: 767px) {
    .service-card {
        padding: 20px;
    }
}

/* ================= SPLIT SECTION ================= */
.split-section {
    background: #f5f5f5;
}

/* TITLE */
.split-title {
    font-weight: 700;
    color: #000;
}

/* BANNER */
.split-banner {
    background: #eaeaea;
    border-radius: 20px;
    padding: 40px;
}

/* TEXT */
.split-banner h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
}

/* IMAGE */
.split-banner img {
    max-height: 250px;
}

/* CARDS */
.split-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
}

/* IMAGE */
.split-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* TEXT */
.split-card h6 {
    font-weight: 600;
}

.split-card p {
    color: #555;
    font-size: 14px;
}

/* HOVER */
.split-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 767px) {

    .split-banner {
        text-align: center;
        padding: 25px;
    }

    .split-banner h3 {
        font-size: 22px;
    }

    .split-banner img {
        margin-top: 20px;
    }
}
/* ================= PREMIUM BANNER ================= */
.premium-banner {
    background: #ffffff;
}

/* MAIN BOX */
.banner-box {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;

    background: url('./img/bg.avif') center/cover no-repeat;

    padding: 60px;
}

/* CONTENT */
.banner-content {
    max-width: 500px;
}

/* TEXT */
.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {

    .banner-box {
        height: 380px;
        padding: 40px;
    }

    .banner-content h1 {
        font-size: 32px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .banner-box {
        height: auto;
        padding: 30px;
        text-align: center;
        background-position: right;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-content h1 {
        font-size: 13px;
    }
}


/* ================= PRODUCTS ================= */
.product-section {
    background: #f8fbff;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

/* IMAGE */
.product-img {
   
    padding: 25px;
}

.product-img img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: 0.4s;
}

/* CONTENT */
.product-content {
    padding: 20px;
}

.product-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* BUTTON */
.order-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.order-btn i {
    margin-right: 5px;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card:hover img {
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {
    .product-img img {
        height: 150px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .product-card {
        border-radius: 25px;
    }

    .product-img {
        padding: 30px;
    }

    .product-img img {
        height: 200px;
    }

    .product-content {
        text-align: center;
    }

    .order-btn {
        width: 100%;
    }
}

/* ================= ABOUT ================= */
.about-section {
    background: #f8fbff;
}

/* IMAGE */
.about-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-img-box img {
    width: 100%;
    transition: 0.4s;
}

.about-img-box:hover img {
    transform: scale(1.05);
}

/* TEXT */
.about-text {
    color: #6c757d;
    margin-top: 10px;
}

/* BUTTON GROUP */
.about-btns .btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
}

/* GOOGLE BUTTON */
.google-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    transition: 0.3s;
}

.google-btn:hover {
    background: #4285F4;
    color: #fff;
    border-color: #4285F4;
}

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(90deg, #0f2b3a, #2daae1);
    color: #fff;
    border: none;
}

/* MOBILE */
@media (max-width: 767px) {

    .about-section {
        text-align: center;
    }

    .about-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about-btns .btn {
        width: 100%;
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    background: #f8fbff;
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
}

/* NAME */
.testimonial-card h6 {
    margin-top: 15px;
    font-weight: 600;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
}

/* SLIDER */
.testimonialSwiper {
    padding-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer-section {
    background: #0f2b3a;
    color: #fff;
    padding: 60px 0 20px;
}

/* ABOUT */
.footer-about {
    font-size: 14px;
    color: #ccc;
}

/* HEADINGS */
.footer-section h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4fc3f7;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    background: #1e88b6;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #4fc3f7;
}

/* CONTACT ICON */
.footer-section i {
    margin-right: 8px;
    color: #4fc3f7;
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #4fc3f7;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 767px) {

    .footer-section {
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* ICON */
.whatsapp-float i {
    font-size: 28px;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* TOOLTIP TEXT */
.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #0f2b3a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

/* SHOW TEXT */
.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* PULSE ANIMATION */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,0.5);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
}

/* ================= SCROLL TOP ================= */
#scrollTopBtn {
    position: fixed;
    bottom: 100px; /* above WhatsApp */
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1e88b6, #4fc3f7);
    color: #fff;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* HOVER */
#scrollTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* SHOW BUTTON */
#scrollTopBtn.show {
    display: flex;
}

/* GLOW EFFECT */
#scrollTopBtn::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79,195,247,0.4);
    animation: glow 1.8s infinite;
    z-index: -1;
}

@keyframes glow {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { opacity: 0; }
}

/* ================= ABOUT PARALLAX ================= */
.about-parallax {
    position: relative;
    height: 350px;
    background: url('./img/bgg.avif') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.about-parallax .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
background-color: #000;
opacity: .60;
    top: 0;
    left: 0;
}

/* CONTENT */
.about-parallax .content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TEXT */
.about-parallax h1 {
    font-size: 42px;
    font-weight: 700;
}

.about-parallax p {
    margin-top: 10px;
    font-size: 16px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .about-parallax {
        background-attachment: scroll;
        height: 250px;
    }

    .about-parallax h1 {
        font-size: 28px;
    }
}

/* ================= ABOUT DETAILS ================= */
.about-details {
    background: #f8fbff;
}

/* IMAGE */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    transition: 0.4s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* TEXT */
.about-text {
    color: #6c757d;
    margin-top: 10px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.about-list i {
    color: #2daae1;
    margin-right: 8px;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(90deg, #0f2b3a, #2daae1);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
}

/* MOBILE */
@media (max-width: 767px) {

    .about-details {
        text-align: center;
    }

    .about-list {
        text-align: left;
    }
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    background: linear-gradient(135deg, #e3f6ff, #ffffff);
}

/* CARD */
.mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

/* ICON */
.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e88b6, #4fc3f7);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* TEXT */
.mv-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mv-card p {
    color: #6c757d;
    font-size: 15px;
}

/* HOVER */
.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 767px) {
    .mv-card {
        padding: 30px 20px;
    }

    .about-list li{
        align-items: center;
        display: flex;
        justify-content: center;
    }
}

/* ================= SERVICES CARDS ================= */
.services-cards {
    background: #f8fbff;
}

/* CARD */
.service-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e88b6, #4fc3f7);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* TEXT */
.service-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    color: #6c757d;
    font-size: 14px;
}

/* HOVER */
.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 767px) {
    .service-box {
        padding: 25px 20px;
    }
}

/* ================= CONTACT ================= */
.contact-section {
    background: #f8fbff;
}

/* CONTACT INFO */
.contact-info {
    background: #0f2b3a;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

/* INFO BOX */
.info-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.info-box i {
    font-size: 20px;
    margin-right: 10px;
    color: #4fc3f7;
}

/* BUTTONS */
.call-btn {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 10px 20px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 10px;
}

/* BUTTON */
.submit-btn {
    background: linear-gradient(90deg, #0f2b3a, #2daae1);
    color: #fff;
    border-radius: 30px;
    padding: 12px;
}

/* MAP */
/* ================= MAP ================= */
.map-section {
    padding: 40px 0;
    background: #f8fbff;
}

/* CONTAINER */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* IFRAME */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* MOBILE */
@media (max-width: 767px) {
    .map-container {
        height: 300px;
        border-radius: 15px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .contact-info {
        text-align: center;
    }

    .info-box {
        justify-content: center;
    }
}