@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');

:root{
    --main-color: rgb(249, 88, 29);
    --black: #000;
    --ligth-color: #868e96;

}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    text-transform: capitalize;
    transition: all .2s linear;
    
}

::selection{
    background: var(--main-color);
    color: #fff;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
}


html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: #fafafa;
}

html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}

section{
    padding: 2rem 9%;
}

html {
  scroll-behavior: smooth;
}




.heading{
    font-size: 4rem;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: var(--black);
    text-transform: uppercase;
}

.heading span{
    text-transform: uppercase;
    color:var(--main-color);
}

.btn{

    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
    color: var(--main-color);
    font-size: 1.7rem;

}

.btn:hover{
    background:var(--main-color);
    color: #fff;
    letter-spacing: .1rem;
}


/*-------header section ------*/


/*-------header section ------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(225, 225, 225, .1);
    box-shadow: 0rem 1rem 5rem rgba(0, 0, 0, .1);
    z-index: 1000;
}

.header .logo {
    flex: 0 0 auto;
    font-size: 4.5rem;
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.header .logo img {
    max-height: 150px;
    width: auto;
    vertical-align: middle;
    border-radius: 90%;
    padding: 5px;

    /* ✅ Ensures visibility on any background */
    background-color: transparent;
    box-shadow: 0 0 10px rgb(236, 238, 236);

    transition: all 0.3s ease;
}

.header .logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(228, 226, 226); /* Slightly darker shadow on hover */
}

.header.active .logo img {
    background-color: rgb(254, 252, 252);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.header .navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .navbar a {
    font-size: 1.7rem;
    color: #fff;
    margin: 0 1.5rem; /* Adds horizontal spacing between the links */
    text-transform: capitalize;
}

.header .navbar a.active,
.header .navbar a:hover {
    color: var(--main-color);
}

.header .social-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header .social-icons a {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}


.header .icons a{
    font-size: 3rem;
    letter-spacing: 1.2rem;
    color: #fff;
    background: transparent;
    font-weight: 500;
    text-transform: uppercase;
    padding: .8rem 2rem;
    border: none;
}

.header .icons a:hover{
    color: var(--main-color);
}

.header .icons div{
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem;
    cursor: pointer;
    margin-left: 4rem;
}

.header .icons div:hover{
    transform: rotate(180deg);
    color: var(--main-color);
}

#menu-btn {
    display: none;
}

.header.active {
    padding: 2rem 9%;
    background: rgba(0, 0, 0, .9);
}



@media (max-width: 991px) {
    .header .navbar {
        display: none;
        flex-direction: column;
        align-items: center;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0.5rem 0; /* Reduced the top and bottom padding */
    }

    .header .navbar.active {
        display: flex;
    }

    .header .navbar a {
        display: block;
        padding: 0.8rem; /* Reduced the item padding */
        margin: 0.3rem 0; /* Reduced the spacing between items */
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        color: #fff;
        background: none;
        transition: color 0.3s ease;
    }

    .header .navbar a:hover,
    .header .navbar a:active {
        color: var(--main-color); /* Pink color on hover */
    }

    #menu-btn {
        display: block;
    }

    #menu-btn:hover {
        color: var(--main-color); /* Pink color on hover */
    }

    .header .icons a{
        font-size: 2.5rem !important;
        letter-spacing: .1rem;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        max-height: 125px;
    }

    .header .social-icons {
        gap: 4rem;
    }

    .header .social-icons a {
        font-size: 4.2rem;
    }

    .header .icons a{
        font-size: 2.5rem !important;
        letter-spacing: -1rem;
    }
}
.header .social-icons {
    flex: 0 0 auto; 
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header .social-icons a {
    font-size: 3.5rem;
    color: #fff;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header .social-icons a:hover {
    transform: scale(1.05);
    box-shadow:  0 0 15px rgba(255, 255, 255, 0.2);
}


@media (max-width: 991px) {
    .header .social-icons {
        margin-left: auto; /* This will push the icons to the right */
        padding-right: 20px; /* This adds some space from the right edge */
    }
}

/* Further adjustments for smaller screens if needed */
@media (max-width: 480px) {
    .header .social-icons {
        padding-right: 5px; /* Slightly less padding for very small screens */
    }
    
    .header .social-icons a {
        font-size: 3.2rem; /* Slightly smaller icons for very small screens */
        width: 40px;
        height: 40px;
    }
}


/*------------------ HOME SECTION START ------------------*/

.home {
  padding: 0;
}

.home .home-slider .box {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .home-slider .box .background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.85);
}

.center-content {
  animation: fadeInUp 1s ease forwards;
  position: relative;
  z-index: 2;
}

/* Center-aligned content styling */
.home .home-slider .box .center-content {
  text-align: center;
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

/* Brand heading */
.brand-heading {
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: slideDown 1.2s ease forwards;
}

/* Tagline */
.tagline {
  display: inline-block;
  background-color: rgb(249, 88, 29);
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  animation: fadeIn 1.5s ease forwards;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Subtext */
.discount-line {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  animation: fadeIn 2s ease forwards;
}

/* Supporting message */
.supporting-text {
  font-size: 1.8rem;
  color: #f8e6d0;
  margin-bottom: 2rem;
  font-family: 'Roboto Slab', serif;
  animation: fadeIn 2.2s ease forwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button wrapper */
.home .home-slider .box .center-content .button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  animation: popIn 2.5s ease forwards;
}

/* Primary button */
.home .home-slider .box .center-content .button a {
  font-size: 1.8rem;
  padding: 1.4rem 3.2rem;
  border-radius: 6px;
  background-color: rgb(249, 88, 29);
  color: white;
  font-weight: bold;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.home .home-slider .box .center-content .button a:hover {
  background: white;
  color: rgb(249, 88, 29);
  transform: scale(1.08);
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
  border: 2px solid rgb(249, 88, 29);
}

/* Animations */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slideDown {
  0% {opacity: 0; transform: translateY(-40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes popIn {
  0% {opacity: 0; transform: scale(0.95);}
  100% {opacity: 1; transform: scale(1);}
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .brand-heading {
    font-size: 4rem;
  }

  .tagline {
    font-size: 2rem;
  }

  .discount-line,
  .supporting-text {
    font-size: 1.6rem;
  }

  .home .home-slider .box .center-content .button a {
    font-size: 1.4rem;
    padding: 1.2rem 2rem;
  }
}



/*------------------ HOME SECTION ENDS ------------------*/





/*------------------ HOME SECTION ENDS ------------------*/






/* BRS Catering section starts */

/*------------------ HOME SECTION START ------------------*/

.home {
  padding: 0;
}

.home .home-slider .box {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .home-slider .box .background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.88); /* Adds classy dim for text visibility */
}

.center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 2rem;
}

/* Brand heading */
.brand-heading {
  font-size: 4.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  animation: slideDown 1.2s ease forwards;
}

/* Tagline styling */
.tagline {
  display: inline-block;
  background: rgba(249, 88, 29, 0.92);
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease forwards;
}

/* Discount/subheading line */
.discount-line {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  animation: fadeIn 2s ease forwards;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Supporting text */
.supporting-text {
  font-size: 1.8rem;
  color: #ffeed9;
  margin-bottom: 2.5rem;
  font-family: 'Roboto Slab', serif;
  animation: fadeIn 2.2s ease forwards;
}

/* Button group */
.button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  animation: popIn 2.5s ease forwards;
}

/* Primary button */
.btn-1 {
  font-size: 1.6rem;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  background-color: rgb(249, 88, 29);
  color: white;
  font-weight: bold;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

.btn-1:hover {
  background: white;
  color: rgb(249, 88, 29);
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
  border: 2px solid rgb(249, 88, 29);
}

/* Secondary button */
.btn-2 {
  font-size: 1.6rem;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  background-color: white;
  color: rgb(249, 88, 29);
  font-weight: bold;
  border: 2px solid rgb(249, 88, 29);
  transition: all 0.4s ease;
}

.btn-2:hover {
  background-color: rgb(249, 88, 29);
  color: white;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slideDown {
  0% {opacity: 0; transform: translateY(-40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes popIn {
  0% {opacity: 0; transform: scale(0.95);}
  100% {opacity: 1; transform: scale(1);}
}

/* Responsive */
@media (max-width: 1024px) {
  .brand-heading { font-size: 3.6rem; }
  .tagline { font-size: 1.8rem; padding: 0.8rem 2rem; }
  .discount-line, .supporting-text { font-size: 1.5rem; }
  .btn-1, .btn-2 { font-size: 1.4rem; padding: 1rem 2rem; }
}

/*------------------ HOME SECTION ENDS ------------------*/




/*------------------------feature section starts-------------*/


/* BRS Catering section starts */

.brs-catering {
    padding: 4rem 2rem;
    background-color: #fdfdfd; /* Cleaner white background */
    font-family: 'Poppins', sans-serif;
}

.brs-catering .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brs-catering .left {
    flex: 1 1 40%;
    text-align: center;
}

.brs-catering .left img {
    max-width: 100%;
    height: auto;
}

.brs-catering .right {
    flex: 1 1 55%;
}

.brs-catering .right h2 {
    font-size: 4.2rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brs-catering .right h2 span {
    color: #f97316; /* Warm orange like your logo */
}

.brs-catering .right h3 {
    font-size: 2.6rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.brs-catering .right p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.brs-catering .benefits {
    margin-top: 2.5rem;
}

.brs-catering .benefits ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-left: 0;
}

.brs-catering .benefits li {
    flex: 1 1 calc(50% - 1rem);
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
    padding-left: 2.2rem;
    line-height: 1.4;
}

.brs-catering .benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f97316; /* Matches logo orange */
    font-weight: bold;
}

/* Mobile-Friendly Two Column Layout */
@media (max-width: 768px) {
    .brs-catering {
        padding: 3rem 1.5rem;
    }

    .brs-catering .container {
        flex-direction: column;
        text-align: center;
    }

    .brs-catering .right h2 {
        font-size: 3rem;
    }

    .brs-catering .right h3 {
        font-size: 2.2rem;
    }

    .brs-catering .benefits ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        justify-items: start;
    }

    .brs-catering .benefits li {
        font-size: 1.5rem;
        padding-left: 2rem;
    }
}

/* BRS Catering section ends */






/*------------------------feature section ends-------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.custom-nutrition-section {
  background-image: url('trythis.jpg'); /* adjust path if needed */
  background-size: cover;
  background-position: right center;
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #ffffff;

  /* Improves clarity on all systems */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.custom-nutrition-content {
  max-width: 640px;
}

.custom-nutrition-content h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.custom-nutrition-content p {
  font-size: 2.3rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #ffffff;
}

.custom-nutrition-content p strong {
  font-weight: 600;
  color: #ffffff;
}

.custom-nutrition-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('sample2.jpg');
}


.learn-more-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 1.2rem 1.9rem;
  background-color: var(--main-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.learn-more-btn:hover {
  background-color:var(--main-color);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-nutrition-section {
    padding: 3rem 1.5rem;
    background-position: center;
  }

  .custom-nutrition-content h2 {
    font-size: 3.2rem;
  }

  .custom-nutrition-content p {
    font-size: 2.1rem;
  }

  .learn-more-btn {
    font-size: 2rem;
    padding: 0.95rem 1.9rem;
  }
}


/* tailor section ends*/
/* ---------------------------schedule section starts------ */


.schedule{
    background: #eee;
}

.schedule .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
    grid-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.schedule .box-container .box{
    background: #eee;
    overflow: hidden;
    padding: 1rem;
}


.schedule .box-container .box .content{
    padding: 1rem;
}

.schedule .box-container .box .content h3{
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

.schedule .box-container .box .content p{
    color:#000;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1rem;
   
}

.schedule .box-container .box .icons{
    padding: 0 2rem;
}

.schedule .box-container .box .icons span{
    display: block;
    font-size: 1.3rem;
    color:#000;
    padding: .3rem 0;
}

.schedule .box-container .box .icons span i{
    margin-right: .5rem;
}

.schedule .box-container .box .btn{
    margin: 1.5rem 2rem;
    background: var(--main-color);
    color:#eee;
}

.schedule .box-container .box .btn:hover{
    background: palevioletred;
}

.schedule .box-container .box img{
    width: 100%;
    height: 85%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* -----------schedule section ends------ */


/* transformation section starts */

.transformations .transformation-slider{
    padding-bottom: 2rem;
}

.transformations .transformation-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

.transformations .transformation-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.transformations .transformation-slider .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.transformations .transformation-slider .box .name{
    padding: 2rem 0;
}

.transformations .transformation-slider .box .name h1{
    font-size: 3rem;
    color: #222;
    font-weight: 600;
}


/* transformation section ends */


/* registration section starts */


.image-containerrr {
    position: relative;
    gap: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url('sample2.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #ffffff; /* white fallback */
}

.form-wrapperrr {
    position: absolute;
    top: 50%;
    left: 50%;   /* was 30% */
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
}


.wrapperrr {
    width: 100%;
    background: rgba(255, 255, 255, 0.9); /* light transparent white for softness */
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wrapperrr h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--main-color); /* deep green */
    font-weight: 700;
}

.input-boxx {
    margin-bottom: 20px;
}

.input-boxx input {
    width: 100%;
    background: #f5f5f5;
    border: 2px solid #c8e6c9; /* subtle green border */
    border-radius: 30px;
    font-size: 16px;
    color: #333;
    padding: 14px 20px;
    outline: none;
    transition: 0.3s;
}

.input-boxx input:focus {
    border-color: var(--main-color);
    background: #fff;
}

.input-boxx input::placeholder {
    color: #999;
}

.btnnn {
    width: 100%;
    height: 45px;
    background: var(--main-color); /* Nutri-Guru primary green */
    border: none;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.btnnn:hover {
    background: white;
    color: var(--main-color); /* darker green on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .form-wrapperrr {
        width: 90%;
        top: 50%;
        left: 50%;
        bottom: 20%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 480px) {
    .form-wrapperrr {
        width: 90%;
        top: 45%;
        left: 50%;
        bottom: 10%;
        transform: translate(-50%, -50%);
        max-width: calc(100% - 40px);
    }
}




/* registration section ends*/

/* Timings section starts */

.category-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.section-title span {
    color: var(--main-color);
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 25px; /* spacing between cards */
    flex-wrap: wrap;
}

.category-card {
    position: relative;
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.section-title {
    font-size: 38px !important;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.overlay-text h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Responsive adjustments */
@media (max-width: 1024px) {

    .section-title{
        font-size: 38px;
    }
    .category-card {
        width: 45%;
    }
}

@media (max-width: 768px) {

    .section-title{
        font-size: 35px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 38px;
    }

    .category-card {
        width: 100%;
    }
}
/* Glow effect on hover */
.category-card {
    position: relative;
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 25px 5px rgba(0, 128, 0, 0.6),
        0 0 20px 10px rgba(0, 255, 0, 0.3);
}

.overlay-text h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Timings section ends */


.category-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.section-title span {
    color: var(--main-color);
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 25px; /* spacing between cards */
    flex-wrap: wrap;
}

.category-card {
    position: relative;
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.section-title {
    font-size: 38px !important;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.overlay-text h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Responsive adjustments */
@media (max-width: 1024px) {

    .section-title{
        font-size: 38px;
    }
    .category-card {
        width: 45%;
    }
}

@media (max-width: 768px) {

    .section-title{
        font-size: 35px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 38px;
    }

    .category-card {
        width: 100%;
    }
}
/* Glow effect on hover */
.category-card {
    position: relative;
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 25px 5px rgba(0, 128, 0, 0.6),
        0 0 20px 10px rgba(0, 255, 0, 0.3);
}

.overlay-text h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Timings section ends */



.feature .feature-slider{
    padding-bottom: 4rem;

}

.feature{
    animation: fadeInUp 2s ease;
}

.h1{
    animation: fadeInRight 2s ease;
}

.feature .feature-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

.feature .feature-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.feature .feature-slider .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feature .feature-slider .box:hover .image img{
    transform: scale(1.2);
}

.feature .feature-slider .box .content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.feature .feature-slider .box .content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background: rgba(0,0,0,.3);
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 0.3rem solid transparent;
    display: inline-block;
}

.feature .feature-slider .box:hover .content h3 {
    background: rgba(51, 226, 24, 0);
    border: 0.3rem solid #fff;
}

.feature .feature-slider .box .content .price{
    width: 10rem;
    height: 10rem;
    line-height: 10rem;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    background: lightgreen;
    font-size: 2rem;
    font-weight: bolder;
    color:#fff;
}



@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}



/* testimonial section starts */

/* testimonial section starts */

.testimonials {
    padding: 40px 0;
    background: #f9f9f9;
    color: #434343;
    text-align: center;
}

.inner {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border {
    width: 160px;
    height: 5px;
    background: var(--main-color);
    margin: 26px auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col {
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.name {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0;
    color: #333;
}

.stars {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

@media screen and (max-width: 950px) {
    .col {
        flex: 100%;
        max-width: 100%;
    }
}

/* testimonial section ends */





/* testimonial section ends */






/* whatsapp section starts */

.whatsapp-btn-container{
    position: fixed;
    right: 30px;
    bottom: 3px !important;
    padding: 24px;
    display: flex;
    align-items: center;
    z-index: 10000;
   
} 
   


.whatsapp-btn-container .whatsapp-btn{
    font-size: 60px;
    color: rgb(44, 236, 44);
    display: inline-block;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover{
    transform: scale(1.2);
}


.whatsapp-btn-container span {
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 4px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: white;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span{
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}


.home .swiper-wrapper{
    position: relative;
    z-index: 1; /* Ensure Swiper slides are below the WhatsApp button */
}


@media (max-width: 768px) {
    .whatsapp-btn-container {
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }

    .whatsapp-btn-container .whatsapp-btn {
        font-size: 40px;
    }

    .whatsapp-btn-container span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn-container {
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }

    .whatsapp-btn-container .whatsapp-btn {
        font-size: 40px;
    }

    .whatsapp-btn-container span {
        font-size: 10px;
    }
}

/* whatsapp section ends */



/* About us section starts */

/* Prevent browser auto-scaling on mobile */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* One canonical paragraph style for the About section */
.about .Whyus p,
.about .Whatwedo p,
.about .qualityassurance p,
.about p {
  font-family: 'Open Sans', Arial, sans-serif !important;
  font-size: 21px !important;          /* exact same size everywhere */
  line-height: 1.8 !important;
  color: #333 !important;
  margin-bottom: 20px !important;
  text-transform: none !important;
  font-weight: 400 !important;
  animation: fadeInRight 2s ease;
}

/* If there are spans/strong/em inside <p>, keep the same size */
.about p * { font-size: inherit !important; }


.about {
    background-image: url('aboutbackground.jpg'); /* Update path as needed */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Optional: Creates a parallax scroll effect */
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}




/* Optional: Add a soft white overlay to improve text readability */
.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);  /* Adjust opacity as needed */
    z-index: -1;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
}

.about{
    animation: fadeInUp 2s ease;
}

.about-home{
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('sample2.jpg');

}

.about-home h1{
    animation: fadeInRight 2s ease;
}

.h1 .heading{
    margin-bottom: 50%;
}

.about p {
    font-family: 'Open Sans', Arial, sans-serif; /* Consistent font for all paragraphs */
    font-size: 21px;
    line-height: 1.8;
    color: #333; /* Slightly softer than pure black for better readability */
    margin-bottom: 20px;
    animation: fadeInRight 2s ease;
    text-transform: none;
    font-weight: 400; /* Matches the "normal" look but keeps consistency */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
}

nav ul li a.active {
    font-weight: bold;
}

section#about {
    padding: 50px 0;
}

h2{
    color: black;
    font-size: 26px;
    margin-bottom: 10px;
}

h1{
    margin-bottom: 40px;
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}



/* About us page section ends */


/* services page starts */

body {
   
    background-size: cover;
    background-position: top;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 0%;
}

.service{
    animation: fadeInUp 2s ease;
}

.service-home h1{
    animation: fadeInRight 2s ease;
}

header h1 {
    margin: 0;
}

p{
    color: #555;
    font-size: 18px; /* Increase font size */
    line-height: 1.8; /* Adjust line height for better readability */
    margin-bottom: 20px; /* Add some bottom margin for spacing between paragraphs */
    animation: fadeInRight 2s ease;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    
    text-decoration: none;
}

nav ul li a.active {
    font-weight: bold;
}

section#feature {
    padding: 50px 0;
}

h2{
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

h1{
    margin-bottom: 40px;
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}


.service-home{
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('products.jpg');
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.service-home h1{
    
    color: #eee;
    border-color: var(--main-color);
    font-size: 4.2rem;
    letter-spacing: 1px;
}

#service-container{
    width: 100%;
    height: auto;
    
}

.fixed-image{
    position: absolute;
    left: 20%;
    top: 230px;
    width: 450px;
 
    
}




#service-container .service img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    
   
}
   

#service-container .service-text{
    position: absolute;
    right: 900px;
    top: 240px;
    width: 100px;
    
}


#service-container .service-text h2{
    color: #29303b;
    margin-bottom: 15px;
    margin:0%;
    
}

#service-container .service-text p{
    line-height: 1.5;
    font-size: 18px;
    color: #686f7a;
    font-weight: 300 ;
}

#service-container .service-text .service-fe{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

#service-container .service-text .service-fe img{
    width: 50px;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

#service-container .service-text .service-fe .fe-text{
    width: 90%;
}

/* services section  */



/* Products section starts */


.product-categories {
  padding: 40px 20px;
  text-align: center;
}

.product-categories .heading {
  font-size: 35px;
  margin-bottom: 30px;
}

.product-categories .heading span {
  color: var(--main-color);
}

/* Grid layout for product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}


/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image wrapper */
.product-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Text Info */
.product-title {
  font-size: 20px !important;
  font-weight: 600;
  margin: 12px 0 6px;
}

.product-description {
  font-size: 14px !important;
  color: #555;
  margin-bottom: 8px;
}

.product-price {
  font-size: 18px !important;
  font-weight: bold;
  color: #000 !important;
  margin-bottom: 12px;
}

/* Button */
.add-to-cart {
  padding: 8px 16px;
  font-size: 14px;
  background: var(--main-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.add-to-cart:hover {
  background: #f0f1f0;
  color: var(--main-color);
  transform: scale(1.05);
}

/* Responsive - No changes from your original mobile styling */
@media (max-width: 768px) {
  .product-categories {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .product-image {
    height: 160px;
  }

  .product-title {
    font-size: 15px;
  }

  .product-price {
    font-size: 18px !important;
    font-weight: bold;
    color: #000;
  }

  .product-description {
    font-size: 13px;
  }

  .add-to-cart {
    width: 100%;
  }
}

/* products section ends */



/* about products section starts */

.regular-products { 
    padding: 60px 20px; 
    background-color: #f9f9f9; 
    text-align: center; } 

.regular-products h2 { font-size: 32px; 
    margin-bottom: 20px; color: #222;
 } 
    .regular-products .intro { max-width: 800px; 
        margin: 0 auto 40px;
         font-size: 16px; color: #555;
          line-height: 1.6; 
        }
        
    .spice-grid 
    { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; } .spice-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 3px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: left; } .spice-card h3 { font-size: 20px; color: var(--main-color); margin-bottom: 10px; } .spice-card p { font-size: 15px; color: #333; line-height: 1.6; } .spice-card:hover { transform: translateY(-5px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); }


/* about products section ends */


/* cart section starts */


/* cart section ends  */

/* services page ends */


   

/* product1details page ends */





/* product2details page starts */


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 140px;

}

.product-detail-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 5%;
  max-width: 1200px;
  margin: 0 auto 40px;
  margin-top: 200px !important;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-detail-image {
  flex: 1;
  max-width: 400px;
  padding-top: 50px;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-detail-info {
  flex: 2;
  padding-right: 10px;
}

.product-detail-info h1 {
  font-size: 36px;
  color: #222;
  margin-bottom: 15px;
}

.product-detail-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.nutritional-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 16px;
}

.nutritional-table th,
.nutritional-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
}

.nutritional-table th {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
}

.nutritional-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* ✅ BUTTON STYLING FIXED */
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.product1button {
  width: 200px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--main-color);
  color: white;
  border: 2px solid #c72c2c;
  box-sizing: border-box;
}

.product1button:hover {
  background-color: white;
  color: var(--main-color);
  border-color: var(--main-color);
}

/* ✅ Responsive Fix (Optional) */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    align-items: center;
  }

  .button-group {
    flex-direction: column;
    gap: 15px;
  }

  .product1button {
    width: 100%;
  }
}


.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  max-width: 90%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #8B0000; /* Dark red text */
  background: #fff; /* White background */
  border: 2px solid #8B0000; /* Dark red border */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  text-align: center;
}
.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}


/* Show animation */
.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

@keyframes toast-slide-up {
  0% {
    opacity: 0;
    bottom: 30px;
  }
  100% {
    opacity: 1;
    bottom: 60px;
  }
}

.toast.show {
  visibility: visible;
  animation: toast-slide-up 0.5s forwards;
}


   

/* product2details page ends */

/* more products section starts */


.product-section {
  padding: 60px 30px;
  background-color: #fdfdfd;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px 0 5px;
  color: #222;
  font-size: 1.2rem;
}

.product-card p {
  padding: 0 15px;
  font-size: 0.95rem;
  color: #666;
}

.btn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: white;
  border: 2px solid rgb(249, 88, 29);
  box-sizing: border-box;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: rgb(14, 13, 13);
  color: var(--main-color);
  border-color: var(--main-color);
}


@media (max-width: 768px) {
  .product-section {
    padding: 50px 60px;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 2rem;
  }

  .product-card p {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 1.5rem;
  }
}

/* more products section ends */




/* gallery section starts */

.gallery-home {
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('products.jpg');
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.gallery-home h1 {
    color: #eee;
    border-color: var(--main-color);
    font-size: 4.2rem;
    letter-spacing: 1px;
}
.gallery{
    animation: fadeInUp 2s ease;
}

.gallery-home h1{
    animation: fadeInRight 2s ease;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Gallery Section */
.gallery {
    padding: 20px;
}

.gallery .heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-grid:hover {
    box-shadow: 0 8px 16px rgb(68, 223, 65);
}

.gallery-item {
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}


/* Full-Screen Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-image {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.video-container {
    display: flex;
    justify-content: space-between;  /* Space between the videos */
    gap: 20px;                       /* Adjust the gap as needed */
    margin-top: 20px;                /* Optional: adds some space above */
    flex-wrap: wrap;  
    margin-bottom: 15px;               /* Ensures the videos wrap in smaller screens */
}

.video-container video {
    width: 32%;                      /* Each video takes 32% of the width for 3 in a row */
    height: 500px;                   /* Sets uniform height */
}

/* Adjustments for Tablet View */
@media (max-width: 768px) {
    .video-container video {
        width: 48%;                  /* Two videos side by side for tablets */
        height: 400px;               /* Reduce height slightly for tablets */
    }
}

/* Adjustments for Mobile View */
@media (max-width: 480px) {
    .video-container {
        justify-content: center; 
        margin-bottom: 15px;     /* Center the videos for mobile view */
    }
    .video-container video {
        width: 100%;                 /* Stack the videos vertically in mobile view */
        height: auto;                /* Automatically adjust height */
    }
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 1 1 calc(33.33% - 20px);
    }

    .gallery-home h1 {
        font-size: 5.2rem;
    }

    .gallery .heading {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
    }

    .gallery-home h1 {
        font-size: 4.8rem;
    }

    .gallery .heading {
        font-size: 4.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 calc(100% - 20px);
    }

    .gallery-home h1 {
        font-size: 4.4rem;
    }

    .gallery .heading {
        font-size: 4.6rem;
    }
}

/* gallery section ends */



/* Gallery Home Section */

.galleryy .galleryy-slider{
    padding-bottom: 2rem;
}

.galleryy .galleryy-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

.galleryy .galleryy-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.galleryy .galleryy-slider .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.galleryy .galleryy-slider .box .name{
    padding: 2rem 0;
}

.galleryy .galleryy-slider .box .name h1{
    font-size: 3rem;
    color: #222;
    font-weight: 600;
}

/* More button styles */
.more-button-container {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.more-button {
    display: inline-block;
    padding: 10px 50px;
    background-color: var(--main-color); /* Pink color to match your theme */
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-button:hover {
    background-color: #fff; /* Slightly darker shade for hover effect */
    transform: translateY(-3px);
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.more-button:active {
    transform: translateY(-1px);
    color: var(--main-color);
}

/* Gallery section ends */

/* Owner's Section Styles */
/* Owner's Section Styles */
.owners-section {
    padding: 10px 220px;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.owners-heading {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--black);
}

.owners-heading span {
    color: var(--main-color);
}

.owners-grid {
    display: flex;
    justify-content: center;
}

.owner-card {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    max-width: 400px;
}

.owner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.owner-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.owner-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .owners-heading {
        font-size: 28px;
    }
    .owner-card {
        padding: 20px;
        max-width: 100%;
    }
    .owner-card h3 {
        font-size: 20px;
    }
    .owner-card p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .owners-section {
        padding: 8px 12px;
    }
    .owners-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .owner-card {
        padding: 20px;
    }
    .owner-card h3 {
        font-size: 18px;
    }
    .owner-card p {
        font-size: 14px;
    }
}




/* contact page starts */

body {
    background-size: cover;
    background-position: top;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 0%;
}

.contact-us{
    animation: fadeInUp 2s ease;
}

.contact-us h1{
    animation: fadeInRight 2s ease;
}

header h1 {
    margin: 0;
}

p{
    color: #555;
    font-size: 14px; /* Increase font size */
    line-height: 1.8; /* Adjust line height for better readability */
    margin-bottom: 20px; /* Add some bottom margin for spacing between paragraphs */
    animation: fadeInRight 2s ease;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    
    text-decoration: none;
}

nav ul li a.active {
    font-weight: bold;
}

section#feature {
    padding: 50px 0;
}

h2{
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

h1{
    margin-bottom: 40px;
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}

.contact-us{
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('contactus.jpg');
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.contact-us h1{
    
    color: #eee;
    border-color: var(--main-color);
    font-size: 4.2rem;
    letter-spacing: 1px;
}

#contact-container{
    width: 100%;
    height: auto;
    
}

.fixed-image{
    position: absolute;
    left: 20%;
    top: 230px;
    width: 450px;
 
    
}

.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-image{
    flex: 1 1 40rem;
}


.contact-image img{
    width: 100%;
    height: auto;
    display: block;
}

.form-container{
    flex: 1 1 30rem;
}

.form-container form{
    border: 1px solid var(--main-color);
    padding: 2rem;
    max-width: 65rem;
}

.form-container form h1{
    font-size: 35px;
    margin-top: 0;
}

.form-group{
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.boxx{
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    box-sizing: border-box;
}

.btnn{
    width: 30%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btnn:hover{
    background-color: var(--main-color);
}


/* contact page ends */

/* faq section starts */
/* faq section */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.accordion {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.accordion-heading {
  width: 100%;
  background: #f7f7f7;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.accordion-heading h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

.accordion-heading i {
  transition: transform .25s ease;
}

.accordion.open .accordion-heading i {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;                 /* closed by default */
  transition: max-height .3s ease;
  padding: 0 18px;               /* horizontal padding stays */
}

.accordion.open .accordion-content {
  /* vertical padding applied only when open via inner p margin */
  padding-bottom: 10px;
  padding-top: 10px;
}

.accordion-content p {
  margin: 6px 0 10px 0;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* Optional hover/active states */
.accordion-heading:hover {
  background-color: var(--main-color, #f9581d);
  color: #fff;
}
.accordion-heading:hover h3 { color: inherit; }

/* Better focus for keyboard users */
.accordion-heading:focus-visible {
  box-shadow: 0 0 0 3px rgba(249,88,29,.35);
  background: #fff4ee;
}

/* faq section ends */








/* google maps section starts */

.maps .maps-slider{
    padding-bottom: 4rem;

}


.maps .maps-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

/* google maps section ends */



/* contact page starts */

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Adjust the height as needed */
    background-color: #f0f0f0;
    padding: 20px;
}

.icons-container {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.iconss {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.iconss:hover {
    box-shadow: 0 8px 16px rgb(200, 46, 46);
}

.iconss i {
    font-size: 40px;
    color: #333;
}

.iconss h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.iconss p {
    font-size: 14px;
    color: #777;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .icons-container {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns for tablet view */
        grid-gap: 15px;
    }
    
    .iconss {
        padding: 15px;
    }
    
    .iconss i {
        font-size: 35px;
    }
    
    .iconss h3 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
    
    .iconss p {
        font-size: 13px; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .icons-container {
        grid-template-columns: 1fr; /* Change to single column for mobile view */
        grid-gap: 10px;
    }
    
    .iconss {
        padding: 15px;
    }
    
    .iconss i {
        font-size: 30px;
    }
    
    .iconss h3 {
        font-size: 15px; /* Adjust font size for mobile screens */
    }
    
    .iconss p {
        font-size: 12px; /* Adjust font size for mobile screens */
    }
}






































/* footer section starts */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    overflow-x: hidden;
}

.footer {
    width: 100%;
    background: #222;
    color: #fff;
    padding: 40px 0px; /* Removed bottom padding */
    text-align: center;
    margin: 0;
}

.footer .footerbox-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    text-align: left;
    margin-right: 20px; /* Add space between boxes */
}

.footer .box:last-child {
    margin-right: 0; /* Remove margin from the last box */
}

.footer .box:nth-child(3) {
    flex: 0 1 auto; /* Allow this box to shrink */
    min-width: 150px; /* Reduce minimum width */
}

.footer .box a {
    display: block;
    margin-bottom: 10px;
}

.footer .box h1 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* General Text and Link Styling */
.footer .box p,
.footer .box a {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Social Media Icons Styling */
.footer .box .iconsss a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Social Media Icons Hover Effect */
.footer .box .iconsss a:hover {
    background: #fff; /* White background on hover */
    color: var(--main-color); /* Icon color changes to pink */
    transform: translateY(-5px); /* Pop-up effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.footer .box .iconsss a:active {
    transform: translateY(-3px) scale(0.95); /* Slightly reduce size when clicked */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Less shadow on click */
}

/* Heading Hover Effect */
.footer .box h1:hover {
    color: var(--main-color); /* Change to pink on hover */
    transform: translateY(-3px); /* Slight upward movement */
}

/* Paragraph Text and Link Hover Effect */
.footer .box p:hover,
.footer .box a:hover {
    color: var(--main-color); /* Change to pink on hover */
    transform: translateY(-3px); /* Slight upward movement */
    padding: 2px 5px; /* Add padding for emphasis */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for effect */
}

/* Footer Credit Hover Effect */
.footer .credit span:hover {
    color: var(--main-color); /* Change to pink */
    transform: translateY(-3px); /* Slight upward movement */
    padding: 2px 5px; /* Add padding for emphasis */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for effect */
}

.footer .credit {
    margin-top: 20px;
    padding: 20px 20px 0; /* Adjusted padding */
    border-top: 1px solid #444;
    font-size: 16px;
    color: #ccc;
}

.footer .credit span {
    color: var(--main-color);
}


/* footer section ends */

/* about home section starts*/

.about-home{
    background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),url('about.jpg');
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.about-home h1{
    
    color: #eee;
    border-color: var(--main-color);
    font-size: 4.2rem;
    letter-spacing: 1px;
}

#about-container{
    width: 100%;
    height: auto;
    
}

.fixed-image{
    position: absolute;
    left: 20%;
    top: 230px;
    width: 450px;
 
    
}

.about-logo{
    position: relative;
    height: auto;
    width: 90px;
    margin-left: 80%;
    
}



#about-container .about-img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    
   
}
   

#about-container .about-text{
    position: absolute;
    color: #fff;
    right: 900px;
    top: 240px;
    width: 100px;
    
}


#about-container .about-text h2{
    color: #fff;
    margin-bottom: 15px;
    margin:0%;
    
}

#about-container .about-text p{
    line-height: 1.5;
    font-size: 18px;
    color: #fff;
    font-weight: 300 ;
}

#about-container .about-text .about-fe{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

#about-container .about-text .about-fe img{
    width: 50px;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

#about-container .about-text .about-fe .fe-text{
    width: 90%;
}

.Whyus h2 {
    font-size: 3rem; /* Adjust this value as needed */
    color: #000; /* Ensures readability */
    margin-bottom: 20px;
}

.Whyus p {
    font-size: 1.8rem; /* Increase font size for the paragraph */
    line-height: 1.8; /* Increase line spacing for better readability */
    color: #000;
}


/* about home section ends*/













/*-------------media queries section-----------*/

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    .header.active{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    };

   
}

/*------------768px----------*/

@media(max-width:768px){
    
    #menu-btn{
        display:inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(0,0,0,.9);
        border-top: .1rem solid white;
        clip-path: polygon(0 0,100% 0, 100% 0, 0 0);
    }


    .header .navbar.active{
        clip-path: polygon(0 0 , 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        margin: 2rem;
        font-size: 2rem;
    }

    .feature .feature-slider .box .content h3{
        padding:1rem;
    }

}


/*---------450px----------*/

@media (max-width:450px){
    html{
        font-size: 55%;
    }

    .header .icons a{
        letter-spacing: none;
        font-size: 1.3rem;
        padding: 1rem;
    } 
}