﻿.head {
    background: linear-gradient(45deg, #ffcb20,#000);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height:7rem;
}

    .logo img {
        width: 100%;
        height: 12rem;
        border-radius: 50%;
    }

    .logo span {
        font-weight: bold;
        color: #f2b5a4;
        font-size: 12px;
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

    .nav-links li a,
    .nav-links li a:visited {
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 1.4rem;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            background-color: #dcdbe6;
            color: #332c66;
        }

.login {
    padding: 6px 15px;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    font-size: 1.3rem;
}

    .btn:hover {
        background-color: white;
        color: #332c66;
      
    }

.desktop-buttons {
    display: flex;
    gap: 10px;
}
.mobile-buttons {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}


/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        padding-bottom: 1rem;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            text-align: center;
        }

    .desktop-buttons {
        display: none;
    }
    .mobile-buttons{
        display:block;
    }

    

    /* Show only on small screens */
   
        .mobile-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            display:block;
        }

        .desktop-buttons {
            display: none;
        }
    }


.slid {
    background: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    position: relative;
    text-align: center;
}

    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        max-height: 500px;
    }

/* Text Overlay */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 10px 20px;
}

    .slide-text h1 {
        font-size: 65px;
   
        margin: 0;
    }

    .slide-text h4 {
        font-size: 35px;
        margin: 10px 0 0;
        white-space:nowrap;
      
    }

/* Responsive text */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 24px;
    }

    .slide-text h4 {
        font-size: 14px;
    }
}

/**********about section***********/

.about-wrapper {
    padding: 50px 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.about-text-box {
    flex: 1 1 55%;
}

.about-subtitle {
    font-size: 30px;
    color: #f49f0e;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: fantasy;
    text-transform: uppercase;
}

.about-title {
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 45px;
    text-transform: uppercase;
}

.about-paragraph {
    font-size: 20px;
    color: #000;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-image-box {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-main-image img {
    width: 100%;
    border-radius: 25px 0 0 0;
    object-fit: cover;
}

  
.about-img-rounded {
    border-radius: 0 40px 0 0;
}

.about-img-circle {
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image-box {
        flex-direction: column;
    }

    .about-sub-images {
        flex-direction: row;
        flex-wrap: wrap;
    }

        .about-sub-images img {
            width: 48%;
        }
        .about-title{
            font-size:25px;
        }
    .about-paragraph {
        line-height: 1.7;
    }
    .about-subtitle {
        font-size: 20px;
    }
}

/*<!-- product section -->*/

.product-section {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    background: linear-gradient(45deg, #ffcb20,#000);
}

    .product-section h4 {
        font-size: 30px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color:#f49f0e;
    }

    .product-section h2 {
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        font-size: 45px;
        text-transform: uppercase;
        color:burlywood;
    }

        .product-section h2 span {
            color: #fff;
        }

.product-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.product-box {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;

}

    .product-box i {
        font-size: 28px;
        color: #fff;
    }

    .product-box:hover {
        background-color: #fff;
        color: #2F183B;
    }

        .product-box:hover i {
            color: #2F183B;
        }

.product-box {
    width: 100px;
    height: auto;
    background-color: transparent;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-align: center;
}

    .product-box img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .product-box p {
        margin: 0;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
    }

    .product-box i {
        font-size: 32px;
        color: #fff;
        margin-bottom: 8px;
    }

    .product-box:hover {
        background-color: #fff;
    }

        .product-box:hover p,
        .product-box:hover i {
            color: #2F183B;
        }
.product-box {
    perspective: 1000px;
    width: 100px;
    height: 100px;
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.flip-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    position: relative;
}

.product-box:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
}

    .flip-front img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

.flip-back {
    transform: rotateY(180deg);
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
}
    .flip-back h3 {
        font-size: 14px;
    }

    @media (max-width: 600px) {
        .product-box {
        width: 80px;
        padding: 8px;
    }

        .product-box img {
            width: 30px;
            height: 30px;
        }

        .product-box p {
            font-size: 12px;
        }

    .product-section h2 {
        font-size: 18px;
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        color:antiquewhite;
  
        text-transform: uppercase;
    }
        .flip-back h3 {
            font-size: 14px;
        }
}
/*<!-- product section -->*/



.care-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.care-image {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

    .care-image img {
        width: 100%;
       /* max-width: 400px;*/
        aspect-ratio: 1 / 1;
    /*    border-radius: 50%;*/
        object-fit: cover;
    }

.care-text {
    flex: 1 1 400px;
    max-width: 600px;
}

    .care-text h3 {
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        font-size: 45px;
        text-transform: uppercase;
        color: burlywood;
    
        margin-bottom: 15px;
    }

    .care-text p {
        font-size: 20px;
        line-height: 1.8;
        color: #fff;
    }

@media (max-width: 768px) {
    .care-container {
        flex-direction: column;
        text-align: center;
    }

    .care-text h3 {
        font-size: 22px;
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
       
        text-transform: uppercase;
        color: burlywood;
    }
    

    .care-text p {
        font-size: 15px;
    }

    .care-image img {
     /*   max-width: 300px;*/
    }
}
/********care image hover************/

.care-image {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px; /* optional: for rounded corners */
}

    .care-image img {
        transition: transform 0.8s ease;
        display: block;
    }

    .care-image:hover img {
        transform: scale(1.2); /* Zoom-in on hover */
    }








/****************about banner**************/

.hero-banner {

    background-image: url('../images/b3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-overlay {
  
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.banner-text h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }
}

/*
<!-- ***********next banner******* -->*/
.ideas-section {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

.ideas-banner {
    background-color: #dfc08a;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

    .ideas-banner h2 {
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        font-size: 45px;
        text-transform: uppercase;
        color:#794040;
        margin-bottom: 20px;
    }

/* Image overlaps banner */
.banner-image {
    position: relative;
    margin-top: -40px; /* Controls overlap */
    z-index: 2;
    text-align: center;
    padding: 0 20px 40px;
}

    .banner-image img {
        width: 100%;
        max-width: 800px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        filter: grayscale(40%);
        transition: transform 1s ease, filter 2s ease;
    }

        .banner-image img:hover {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

/* Responsive */
@media (max-width: 768px) {
    .ideas-banner h2 {
        font-size: 24px;
    }

    .banner-image {
        margin-top: -60px;
    }
}

@media (max-width: 480px) {
    .ideas-banner h2 {
        font-size: 20px;
    }

    .banner-image {
        margin-top: -40px;
    }
}
/*<!-- ***********text banner******* -->*/

.welcome-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .welcome-section h3 {
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        font-size: 45px;
        text-transform: uppercase;
        color: burlywood;
        margin-bottom: 20px;
    }

    .welcome-section p {
        font-size: 22px;
        line-height: 1.8;
        color: #333;
    }

/* Responsive for small screens */
@media (max-width: 600px) {
    .welcome-section h3 {
        font-size: 25px;
        color:#874646;
    }

    .welcome-section p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/*<!-- ***********brand banner******* -->*/
.brands-section {
    background-color: #dfc08a;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.brands-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.brands-left {
    flex: 1;
    min-width: 280px;
}

    .brands-left h2 {
        font-size: 38px;
        font-weight: bold;
        color: #2f1c4b;
        border-bottom: 2px solid #ddd;
        margin-bottom: 5px;
    }

    .brands-left h3 {
        font-size: 35px;
        font-weight: bold;
        color: white;
        display: inline-block;
        padding-bottom: 5px;
    }

.brands-right {
    flex: 2;
    min-width: 300px;
    color: #2f1c4b;
}

    .brands-right p {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

/* Responsive */
@media (max-width: 768px) {
    .brands-container {
        flex-direction: column;
    }

    .brands-left, .brands-right {
        text-align: left;
    }

        .brands-left h2 {
            font-size: 26px;
        }

        .brands-left h3 {
            font-size: 20px;
        }

        .brands-right p {
            font-size: 18px;
        }
}

/*<!-- ***********vission banner******* -->*/

/* Keyframes for zoom-in effect */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animation on image */
.vision-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease-out forwards;
    animation-delay: 0.3s;
}
.vision-section {
    background-color:#cb9c60;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.vision-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vision-text {
    max-width: 600px;
}

    .vision-text h2 {
        font-size: 32px;
        font-weight: bold;
        color: #2f1c4b;
        margin-bottom: 15px;
    }

    .vision-text p {
        font-size: 16px;
        color: #333;
        line-height: 1.8;
    }

/* Responsive styles */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-text h2 {
        font-size: 24px;
    }

    .vision-text p {
        font-size: 15px;
    }
}
/*<!-- ***********mission banner******* -->*/
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mission-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.mission-section {
    background-color: #cb9c60;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
    min-width: 280px;
}

    .mission-text h2 {
        font-size: 32px;
        font-weight: bold;
        color: #2f1c4b;
        margin-bottom: 15px;
    }

    .mission-text p {
        font-size: 16px;
        color: #2f1c4b;
        line-height: 1.8;
    }

.mission-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .mission-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mission-text h2 {
        font-size: 24px;
    }

    .mission-text p {
        font-size: 15px;
    }
}



/****************imge hover mission-visssion**************/

/*.mission-image {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;*/ /* optional: for rounded corners */
/*}

    .mission-image img {
        transition: transform 0.8s ease;
        display: block;
    }

    .mission-image:hover img {
        transform: scale(1.2);*/ /* Zoom-in on hover */
    /*}

.vission-image {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;*/ /* optional: for rounded corners */
/*}

    .vission-image img {
        transition: transform 0.8s ease;
        display: block;
    }

    .vission-image:hover img {
        transform: scale(1.2);*/ /* Zoom-in on hover */
    /*}*/



/****************contact banner**************/

.contact-banner {
    background-image: url('../images/contact.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.contact-text h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-family: fantasy;
}

.contact-text p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-banner {
        height: 50vh;
    }

    .contact-text h1 {
        font-size: 28px;
    }

    .contact-text p {
        font-size: 16px;
    }
}
/*<!-- *********** contact text******* -->*/
.natural-products {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
}

.natural-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.left-text {
    flex: 1;
    min-width: 280px;
}

    .left-text h2 {
        font-size: 32px;
        font-weight: bold;
        color: #222;
        line-height: 1.4;
    }

.right-text {
    flex: 1;
    min-width: 280px;
}

    .right-text p {
        font-size: 22px;
        color: #000;
        line-height: 1.8;
        text-align:center;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-self:center;
        align-items:center;
        height:10rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .natural-container {
        flex-direction: column;
        text-align: center;
    }

    .left-text h2 {
        font-size: 24px;
    }

    .right-text p {
        font-size: 15px;
    }
}
/*<!-- *********** contact info******* -->*/
.info-section {
    background-color: #ffcb2094;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-card {
    background-color: #e2d3b0;
    padding: 40px 20px;
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    color: #222;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #84b400;
    margin-top: 30px;
    font-weight: bold;
}

.info-card h3 {
    font-size: 20px;
    color: #2f1c4b;
    margin: 10px 0;
}

.info-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 100%;
    }
}
/*<!-- *********** contact map******* -->*/


.map-container {
 
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
/***************businesss*********/

.banner-business {
    background-image: url('../images/business.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    animation: fadeInDown 2s;
}


.tagline {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 400;
    color: #000;
}

.section-title {
    margin-bottom: 20px;
    animation: fadeInUp 1s;
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 45px;
    text-transform: uppercase;
    color: #794040;
   
}
.banner-business h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffae08;
    font-family: fantasy;
}

    @media (max-width: 768px) {
        .section-title {
            margin-bottom: 20px;
            animation: fadeInUp 1s;
            font-family: fantasy;
            letter-spacing: 0px;
            text-align: center;
            font-weight: 300;
            font-size: 35px;
            text-transform: uppercase;
            color: #794040;
        }


       

    }

    .end {
        margin-bottom: 20px;
        animation: fadeInUp 1s;
        font-family: fantasy;
        letter-spacing: 0px;
        text-align: center;
        font-weight: 300;
        font-size: 45px;
        text-transform: uppercase;
        color: #794040 !important;
    }

    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

    .card-title {
        color: #28A745;
        font-weight: bold;
    }

    .animate-on-scroll {
        opacity: 0;
        transition: all 1s ease-in-out;
    }

        .animate-on-scroll.active {
            opacity: 1;
            transform: translateY(0);
        }


.table-success tr th{
    background-color:#fcb0a6;
}
/* Section Title */
            /*.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}*/
            /* Card Styling */
            /*.card {
    border: 2px solid #f49f0e;
    transition: 0.3s ease;
    border-radius: 10px;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.card-title {
    color: #f49f0e;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}*/
            /* Optional spacing adjustments for smaller screens */
            /*@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .card-title {
        font-size: 18px;
    }
}*/
            /* ----------------- Card Decoration ------------------ */
            .card {
    border: 2px solid #f49f0e;
    border-radius: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #fffaf0, #fff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(244, 159, 14, 0.3);
    }

.card-title {
    color: #f49f0e;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Optional: Badge label */
.card::before {
    content: "Best Value";
    position: absolute;
    top: -12px;
    left: -12px;
    background: #f49f0e;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 0 0 10px 0;
}

/* Optional: Add icon on top of price (FontAwesome required) */
.card-body::before {

    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #f49f0e;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

/* Responsive text adjustments */
@media (max-width: 576px) {
    .card-title {
        font-size: 20px;
    }
}
/*<!-- *****************end sectiom business************** -->*/

.container-last {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left:50px;
    padding-right:50px;
    background: linear-gradient(45deg, #ffcb20,#000);
}

 .last h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #343A40;

   


}

.container-last h1 {
    color: #dfc08a;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
    font-family: fantasy;
    letter-spacing: 0px;
   
    font-weight: 300;
    font-size: 35px;
    text-transform: uppercase;

}


.title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #495057;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: adds a slight rounded corner to images */
    box-shadow: 0 4px 8px rgba(0,0,0,.1); /* Optional: adds a subtle shadow */
}

.content-block {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
/* Custom styling for alignment on smaller screens */
@media (max-width: 767.98px) {
    .order-md-2 {
        order: 2;
    }

    .order-md-1 {
        order: 1;
    }

    .section-img {
        margin-bottom: 20px; /* Add some space below image on small screens */
    }

}


@media (max-width: 767.98px) {
    .container-last h1 {
        font-size: 25px;
    }
}

/*<!-- *****************legal section************** -->*/
.legal-banner {
    background-image: url('../images/legal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.legal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.legal-text h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-family: fantasy;
}



@media (max-width: 768px) {
    .legal-banner {
        height: 50vh;
    }

    .legal-text h1 {
        font-size: 28px;
    }
}
/*<!-- *************certificate legal************** -->*/
.certificate-section {
    padding: 40px 20px;
}

.certificate-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Card */
.certificate-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
}

.certificate-title {
    background-color: #3e1455;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.certificate-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .certificate-grid {
        flex-direction: column;
        align-items: center;
    }
}


























/*<!-- *****************bank section************** -->*/
.bank-banner {
    background-image: url('../images/bank.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bank-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.bank-text h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-family: fantasy;
}



@media (max-width: 768px) {
    .bank-banner {
        height: 50vh;
    }

    .bank-text h1 {
        font-size: 28px;
    }
}


/*<!-- *****************details section************** -->*/
/* Replacing Bootstrap's container with custom one */
.bank-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    display:flex;
    justify-content:space-around;
    background-color:burlywood;
}

.bank-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .bank-img {
        max-height: 300px;
        margin-bottom: 20px;
    }
}
    /*<!-- *****************FOOTER************** -->*/
    .footer {
        background-color: #000;
        color: white;
        padding: 40px 20px;
        font-family: Arial, sans-serif;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 200px;
        min-width: 200px;

    }

        .footer-col h4 {
            color: #f49f0e;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer-col ul li {
                margin-bottom: 8px;
            }

                .footer-col ul li a {
                    color: #ffffff;
                    text-decoration: none;
                    font-size: 14px;
                }

                    .footer-col ul li a:hover {
                        text-decoration: underline;
                    }

    .foot-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

        .foot-icons div {
            text-align: center;
        }

        .foot-icons i {
            font-size: 22px;
            margin-bottom: 5px;
            display: block;
        }

        .foot-icons p {
            font-size: 12px;
        }

    /*.app-buttons img {
    width: 120px;
    margin-right: 10px;
    margin-bottom: 10px;
}
*/
    .social-icons {
        margin-top: 15px;
    }

        .social-icons i {
            font-size: 16px;
            color: white;
            margin-right: 12px;
            padding: 8px;
            border: 1px solid white;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

            .social-icons i:hover {
                background-color: white;
                color: #3b1c4b;
            }

    hr {
        margin-top: 40px;
        border-color: #999;
    }

    .copyright {
        text-align: center;
        font-size: 14px;
        margin-top: 15px;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 30px;
        }

        /* .app-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }*/

        .product-icons {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-col {
            text-align: center;
        }

        .social-icons {
            justify-content: center;
            display: flex;
        }

        .swiper-wrapper {
            height: 20rem !important;
        }

            .swiper-wrapper .swiper-slide {
                height: 100%;
            }

                .swiper-wrapper .swiper-slide img {
                    height: 100%;
                }
    }








/*<!-- *****************TERMS CONDITION************** -->*/
/* Section Styling */
.terms-section {
    background-color: khaki;
    
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    max-width: 1000px;
    margin: 40px auto;
    transition: all 0.3s ease-in-out;
}

.container-term h1 {
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 35px;
    text-transform: uppercase;
    color: rgb(121, 64, 64);
}

.updated-date {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.terms-content h2 {
    margin-top: 25px;
    font-size: 1.5rem;
    color: #1c3e6e;
}

.terms-content p {
    margin-top: 10px;
    color: #444;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }

    .terms-content p {
        font-size: 1rem;
    }

    .terms-section {
        padding: 30px 20px;
    }
}




/*<!-- *****************disclaimer-section************** -->*/

/* Section Styling */
.disclaimer-section {
    background-color: khaki;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    max-width: 1000px;
    margin: 50px auto;
}

.container-dis h1 {
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 35px;
    text-transform: uppercase;
    color: rgb(121, 64, 64);
}

.updated-date {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-content h2 {
    margin-top: 25px;
    font-size: 1.5rem;
    color: #1c3e6e;
}

.disclaimer-content p {
    margin-top: 10px;
    color: #444;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container h1 {
        font-size: 2rem;
    }

    .disclaimer-content h2 {
        font-size: 1.3rem;
    }

    .disclaimer-content p {
        font-size: 1rem;
    }

    .disclaimer-section {
        padding: 30px 20px;
    }
}

/*<!-- *****************privacy-section************** -->*/

/* Section Styling */
.privacy-section {
    background-color: khaki;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    max-width: 1000px;
    margin: 50px auto;
}

.container-pri h1 {
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 35px;
    text-transform: uppercase;
    color: rgb(121, 64, 64);
}

.updated-date {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

.privacy-content h2 {
    margin-top: 25px;
    font-size: 1.5rem;
    color: #1c3e6e;
}

.privacy-content p {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .container h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content p {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 30px 20px;
    }
}




/* Wrapper Section */
.section-wrapper {
    background-color: khaki;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 50px auto;
}

/* Content Styles */
.content-box {
    width: 100%;
}

.content-title  {
    font-family: fantasy;
    letter-spacing: 0px;
    text-align: center;
    font-weight: 300;
    font-size: 35px;
    text-transform: uppercase;
    color: rgb(121, 64, 64);
}

.meta-text {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

.text-block h2 {
    font-size: 1.5rem;
    margin-top: 25px;
    color: #1c3e6e;
}

.text-block p {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .content-title {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.3rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .section-wrapper {
        padding: 30px 20px;
    }
}
