* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: Poppins;
}



:root {

    /**
   * colors
   */

    --gold-web-golden: hsl(50, 95%, 56%);
    --spanish-orange: hsl(24, 100%, 45%);
    --persian-green: hsl(175, 80%, 33%);
    --granite-gray: hsl(0, 0%, 40%);
    --spring-green: hsl(143, 85%, 58%);
    --ultramarine: hsl(260, 100%, 44%);
    --blue-violet: hsl(272, 76%, 53%);
    --smoky-black: hsl(0, 0%, 7%);
    --dark-orange: hsl(33, 100%, 50%);
    --winter-sky: hsl(207.81deg 100% 50%);
    --cultured-1: hsl(0, 0%, 98%);
    --cultured-2: hsl(0, 0%, 95%);
    --cultured-3: hsl(0, 0%, 94%);
    --light-gray: hsl(0, 0%, 80%);
    --alice-blue: hsl(206, 89%, 93%);
    --white_50: hsla(0, 0%, 100%, 0.5);
    --white-1: hsl(0, 0%, 100%);
    --white-2: hsl(0, 0%, 99%);
    --black: hsl(0, 0%, 0%);

    /**
   * typography
   */

    --ff-spartan: 'League Spartan', sans-serif;

    --fs-1: 3rem;
    --fs-2: 2.7rem;
    --fs-3: 2.2rem;
    --fs-4: 1.8rem;
    --fs-5: 1.6rem;

    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-900: 900;

    /**
   * spacing
   */

    --section-padding: 60px;

    /**
   * box shadow
   */

    --shadow-1: 0 2px 25px hsla(0, 0%, 0%, 0.1);
    --shadow-2: 0 8px 14px hsla(0, 0%, 0%, 0.1);
    --shadow-3: 0 14px 30px hsla(0, 0%, 0%, 0.05);

    /**
   * border radius
   */

    --radius-6: 6px;
    --radius-12: 12px;

    /**
   * gradient
   */

    --gradient-1: linear-gradient(to right, var(--winter-sky), var(--dark-orange));
    --gradient-2: linear-gradient(to right, var(--ultramarine), var(--blue-violet));
    --gradient-3: linear-gradient(to right, var(--winter-sky), var(--dark-orange));
    --gradient-4: linear-gradient(to right, var(--ultramarine), var(--blue-violet));
    --gradient-5: linear-gradient(to right, var(--persian-green), var(--spring-green));
    --gradient-6: linear-gradient(to right, var(--spanish-orange), var(--gold-web-golden));

    /**
   * transition
   */

    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
img,
svg,
span,
input,
button,
strong,
ion-icon {
    display: block;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

html {
    font-family: var(--ff-spartan);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white-1);
    color: var(--granite-gray);
    font-size: 1.6rem;
}

:focus-visible {
    outline-offset: 4px;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 15px;
}

.section {
    padding-block: var(--section-padding);
}

.w-100 {
    width: 100%;
}

.h1,
.h2,
.h3 {
    color: var(--black);
    font-weight: var(--fw-900);
    line-height: 1.3;
}

.h1 {
    font-size: var(--fs-1);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-600);
}

.section-text {
    line-height: 1.7;
}

.btn {
    min-height: 50px;
    color: var(--white-1);
    padding-inline: 25px;
    border-radius: var(--radius-6);
}

.btn-primary {
    background-image: var(--gradient-1);
}

.btn-secondary {
    background-image: var(--gradient-2);
}

.btn-link {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
    letter-spacing: 0.3px;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


.header {
 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 20px;
    z-index: 4;
}

.header.active {
    position: fixed;
    top: -75px;
    box-shadow: var(--shadow-1);
    animation: slide-in 0.5s var(--cubic-out) forwards;
    background: #fff;
    padding-block: 3px ;
}

.header.active .logo img{
    width: 70px !important;
}

@keyframes slide-in {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(75px);
    }
}

.header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    color: var(--smoky-black);
    font-size: 3.5rem;
    font-weight: var(--fw-700);
    line-height: 1;
}

.nav-toggle-btn {
    font-size: 30px;
}

.nav-toggle-btn.active .menu-icon,
.nav-toggle-btn .close-icon {
    display: none;
}

.nav-toggle-btn .menu-icon,
.nav-toggle-btn.active .close-icon {
    display: block;
}

.navbar {
    position: absolute;
    top: 100%;
    left: 50%;
    width: calc(100% - 30px);
    transform: translateX(-50%);
    background-color: var(--white-1);
    box-shadow: var(--shadow-2);
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
    transition: 0.25s var(--cubic-out);
}

.navbar.active {
    visibility: visible;
    max-height: max-content;
    transition-duration: 0.35s;
}

.navbar-item:not(:last-child) {
    border-block-end: 1px solid var(--alice-blue);
}

.navbar-link {
    color: #003459;
    font-size:16px;
    font-weight: 400;
    
    padding: 16px;
    transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
    color: var(--winter-sky);
}










/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    background-color: var(--white-1);
    color: var(--black);
    position: fixed;
    bottom: 10px;
    right: 20px;
    border: 1px solid var(--light-gray);
    font-size: 2.2rem;
    padding: 12px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
    z-index: 4;
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 480px screen
 */

@media (min-width: 480px) {

    /**
   * REUSED STYLE
   */

    .header .btn {
        display: block;
        margin-inline-start: auto;
        min-height: 40px;
        padding-inline: 15px;
                background: #2f5ca7;
        border-radius: 46px;
        border: none;
    }

}











@media (min-width: 768px) {






    /**
   * HEADER
   */

    .header .btn {
        font-size: 1.7rem;
        font-weight: var(--fw-500);
        min-height: 45px;
        padding-inline: 25px;
    }




}






@media (min-width: 992px) {










    .nav-toggle-btn {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-list {
        display: flex;
        gap: 5px;
    }

    .navbar-item:not(:last-child) {
        border-block-end: none;
    }

    .navbar-link {
        --fs-4: 2rem;
    }

    .header .btn {
        margin-inline-start: 0;
        min-height: 50px;
        padding-inline: 40px;
    }




}

.myBannerSwiper{
    height: 100vh;
    background: url(../images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-slide {
  display: flex;
  align-items: center;
  padding: 50px 0;
  justify-content: center;
  height: 100vh;
}

.banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.banner-content .btn-main {
  background: #484848;
  padding: 10px 22px;
  color: #fff;
  width: max-content;
  border-radius: 6px;
  border-radius: 20px;
  font-weight: 600;
}

.banner-img img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-slide {
    flex-direction: column;
    text-align: center;
  }
}


.myBannerSwiper .swiper-button-next,
.myBannerSwiper .swiper-button-prev {
    display: none !important;
}


.container._about_container {
    padding: 80px 15px;
}

.container._about_container  h3 {
    font-size: 35px;
    color: #000;
}

.container._about_container  p {
    font-size: 16px;
    text-align: justify;
    line-height: 37px;
    font-weight: 400;
}
.abg_content {
    padding: 0px 60px;
}

img.productimg {
    width: 100%;
    height: 100%;
    object-fit: fill;
    margin: 10px 0px;
    border-radius: 20px;
}


h3.heading_title {
    text-align: center;
    color: #000;
    font-size: 28px;
    margin-bottom: 20px;
}

section.prodcutsections {
    padding: 50px 15px;
}
.rates h5 {

     color: rgb(102, 116, 121);
                    font-family: Poppins;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 18px;
                    letter-spacing: 0%;
                    text-align: left;
                }

                .about_container {
                    padding: 60px 15px;
                    font-family: Poppins;
                }
                .view a {
    border-radius: 8px;
    background: rgb(47 92 167);
    padding: 7px 30px;
    text-decoration: none;
    color: rgb(255 255 255);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    display: block;
}
                h4.price {
                    color: rgb(0, 23, 31);
                    font-family: Poppins;
                    font-size: 20px;
                    font-weight: 500;
                    line-height: 20px;
                    letter-spacing: 0%;
                }
                .product-box h2 {
    color: rgb(47 92 167);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0%;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product_details {
    text-align: center;
}
                h4.heading {
                    color: rgb(0, 0, 0);
                    font-family: Poppins;
                    font-size: 30px;
                    font-weight: 500;
                    line-height: 45px;
                    letter-spacing: 0%;
                    margin-bottom: 25px;
                    text-align: center;
                }

                .products_container {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                }

                .d-flex.rates {
                    gap: 20px;
                }

          .product-box {
    border-radius: 21px;
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.08);
    background: #dcf0fb;
    height: auto;
    padding: 20px;
    width: 23%;
    margin: 20px 0px;
}
                .view {
                    margin: 15px 0px;
                }
                .product-box img {
                    width: 150px;
                    margin: auto;
                    display: block;
                }

                @media screen and (max-width: 767px) {
                 .product-box{
                  width: 100%;
                 }
                 h4.heading{
                  margin-bottom: 15px;
                 }
                 .product-box{
                  margin: 10px 0px;
                 }
                }
                @media (min-width: 768px) and (max-width: 1280px) {
                  .product-box{
                    width: 31%;
                    flex: 1;
                  }
                  .products_container{
                    justify-content: start;
                    gap: 10px;
                  }
                }


.footer-area {
    background: #F5E7C0; /* light cream */
    padding: 60px 0;
}

.footer-logo {
    max-width: 160px;
}

.footer-desc {
    max-width: 350px;
    font-size: 15px;
    color: #333;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 17px;
    color: #000 !important;
}

.footer-links a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    background: #3b3b3b;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.payment-icons img {
    height: 22px;
    margin: 0 4px;
}






@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap');

:root {
    --primary: #f97316;
    --text-main: #1e293b;
    --text-light: #64748b;
    
}



.testimonial-section {
    width: 100%;
   
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide2 {
    background-position: center;
    background-size: cover;
    width: 800px;
    /* Width of active card */
    max-width: 90%;
    transition: all 0.5s ease;
   
    /* Inactive opacity */
    transform: scale(0.85);
    /* Inactive scale */
}

/* Active Slide Styling */
.swiper-slide2-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Card Styling */
.test-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #3b5ba5;
}

.test-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* Image Column */
.test-img-wrapper {
    flex-shrink: 0;
}

.img-blob {
    width: 250px;
    height: 280px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Gray background decoration */
.img-blob::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    border-radius: 30px;
    z-index: 0;
}

.img-blob img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text Column */
.test-text {
    text-align: left;
    flex-grow: 1;
}

.quote {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: #cbd5e1;
    margin-bottom: 1.5rem;
}

.user-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.user-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.rating {
    margin-top: 1rem;
    color: #f59e0b;
    font-size: 0.9rem;
}

/* Navigation Buttons */
.custom-nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.custom-nav-btn::after {
    display: none;
    /* Hide default Swiper arrows */
}

.custom-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.swiper-button-next {
    right: 40px;
}

.swiper-button-prev {
    left: 40px;
}

/* Pagination */
.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Tablet/Mobile Responsiveness */
@media (max-width: 900px) {
    .test-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .test-text {
        text-align: center;
    }

    .divider {
        margin: 1.5rem auto;
    }

    .swiper-slide {
        width: 100%;
        opacity: 1;
        /* Disable fade on mobile for better usability */
        transform: none;
    }

    .custom-nav-btn {
        display: none;
        /* Hide arrows on small screens, verify pagination works */
    }
}

.back-to-top {
    position: fixed;
    bottom: 14px;
    right: 20px;
    background: linear-gradient(45deg, #007bff, #00aaff);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
    transition: 0.3s 
ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
button.nav-toggle-btn {
    background: #1367b0 !important;
    color: rgb(253, 253, 253);
    font-family: Poppins;
    
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 57px;
    border: none;
    padding: 5px 20px;
    background: rgb(80, 81, 81);
}





 @media screen and (max-width:767px) {
    .abg_content{
        padding: 0 !important;
    }
    ul.navbar-list {
    width: 100%;
}
.about_container{
    padding-top: 150px !important;
}
.gallery_container{
    padding-top: 150px !important;
}
.product_container, .contact_container{
    padding-top: 150px !important;
}
.container._about_container h3 {
    font-size: 27px;
    color: #000;
    margin-top: 20px;
}
.navbar.active{
    background: aliceblue;
}
.myBannerSwiper{
    height: auto;
}
.banner-slide{
    height: auto;
    padding-top: 150px;
}
.banner-content h2 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 15px;
}
 .header .btn {
        display: block;
        margin-inline-start: auto;
        min-height: 40px;
        padding-inline: 15px;
                background: #2f5ca7;
        border-radius: 46px;
        border: none;
    }
 }
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;         /* Change as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}


.three-body {
 --uib-size: 83px;
 --uib-speed: 0.8s;
 --uib-color: #5D3FD3;
 position: relative;
 display: inline-block;
 height: var(--uib-size);
 width: var(--uib-size);
 animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
 position: absolute;
 height: 100%;
 width: 30%;
}

.three-body__dot:after {
 content: '';
 position: absolute;
 height: 0%;
 width: 100%;
 padding-bottom: 100%;
 background-color: var(--uib-color);
 border-radius: 50%;
}

.three-body__dot:nth-child(1) {
 bottom: 5%;
 left: 0;
 transform: rotate(60deg);
 transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
 bottom: 0;
 left: 0;
 animation: wobble1 var(--uib-speed) infinite ease-in-out;
 animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
 bottom: 5%;
 right: 0;
 transform: rotate(-60deg);
 transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
 bottom: 0;
 left: 0;
 animation: wobble1 var(--uib-speed) infinite
    calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
 bottom: -5%;
 left: 0;
 transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
 top: 0;
 left: 0;
 animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
 0% {
  transform: rotate(0deg);
 }

 100% {
  transform: rotate(360deg);
 }
}

@keyframes wobble1 {
 0%,
  100% {
  transform: translateY(0%) scale(1);
  opacity: 1;
 }

 50% {
  transform: translateY(-66%) scale(0.65);
  opacity: 0.8;
 }
}

@keyframes wobble2 {
 0%,
  100% {
  transform: translateY(0%) scale(1);
  opacity: 1;
 }

 50% {
  transform: translateY(66%) scale(0.65);
  opacity: 0.8;
 }
}

