/* Global styling */
*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* back to the top button starts */

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #BC1823;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #333;
}

/* back to the top button ends */

/* section 1 starts  */

/* Background color for section 1 */
.sec-1-background-color{
    background-color: #EFEFEF;
}

/* Logo positioning for section 1 */
.sec-1-logo-postioning{
    margin-left: 5%;
    margin-top: 5%;
}

/* Logo size for section 1 */
.sec-1-logo{
    width: 5%;
}

/* Main container styling */
.container {
    width: auto;
    margin: 0 auto;
    margin-bottom: 5%;
}

/* Left side container styling for section 1 */
.sec-1-left-side {
    float: left;
    width: 50%;
    
}

/* Text positioning for section 1 */
.sec-1-text-postion{
    margin-top: 20%;
    margin-left: 10%;
}

/* Heading text size for section 1 */
.sec-1-text-postion h1{
    font-size: 4em;
}

/* Order Now button styling */
.order-now-btn {
    background-color: #BC1823;
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 2.5%;
    margin-left: 2.5%;
    margin-bottom: 2.5%;
}

/* Right side container styling for section 1 */
.sec-1-right-side{
    float: right;
    width: 50%;
}

/* Header image size for section 1 */
.sec-1-header-img{
    width: 70%;
}

.order-now-btn:hover{
  transition: transform 0.3s; /* Add a smooth transition effect */
  transform: scale(1.1); /* Enlarge the button by 10% when hovering */
}

/* section 1 ends */

/* section 1 media */

/* Media query for 1920px screen size */
@media screen and (max-width: 1920px) {
  /* Add your desired styles for 1920px screen size here */
}

/* Media query for 1280px screen size */
@media screen and (max-width: 1280px) {
  .sec-1-text-postion h1 {
    font-size: 3em;
  }

  .sec-1-logo {
    width: 7%;
  }

  .sec-1-header-img {
    width: 60%;
  }
}

/* Media query for 768px screen size */
@media screen and (max-width: 768px) {
  .sec-1-left-side{
    width: 100%;
    margin-bottom: 5%;
    margin-left: 0%;
    display: flex;
    align-content: center;
    align-items: center;
  }

  .sec-1-right-side {
    width: 100%;
    margin-bottom: 5%;

  }

  .sec-1-right-side img{
    margin-bottom: 5%;
    width: 80%;
    margin-left: 10%;
  }

  .sec-1-text-postion{
    align-self: center;
  }

  .sec-1-text-postion h1 {
    font-size: 4em;
  }

  .sec-1-text-postion h3 {
    font-size: 1.4em;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
  }

  .sec-1-logo {
    width: 10%;
  }

  .sec-1-header-img {
    width: 80%;
  }

  .order-now-btn {
    font-size: 14px;
    padding: 8px 24px;
  }
}

/* Media query for 375px screen size */
@media screen and (max-width: 375px) {
  .sec-1-text-postion h1 {
    font-size: 2.5em;
  }

  .sec-1-logo {
    width: 15%;
  }

  .sec-1-header-img {
    width: 100%;
  }

  .order-now-btn {
    font-size: 12px;
    padding: 6px 18px;
  }
}

/* section 1 media  */









/* section 2 starts */

/* Section styling */
.sec-2 {
    display: flex;
    width: 100%;
    height: auto; /* Adjust the height as needed */
    overflow-y: hidden;
    overflow-x: hidden;
    color: white;
}

/* Left half styling */
.left-half {
    width: 50%;
    overflow-y: hidden;
    overflow-x: hidden;
}

/* Left image styling */
.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right half styling */
.right-half {
    width: 50%;
    background-color: #BC1823;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Right text container styling */
.sec-2-right-text-container {
    text-align: left;
}

/* Text styling for section 2 */
.sec-2-h1-text{
    margin-bottom: 2.5%;
    font-size: 3em;
}

.sec-2-h4-2-text{
    margin-top: 5%;
    margin-bottom: -2.5%;
    font-weight: 100;
    font-size: 1.5em;
}

.sec-2-h4-text{
    font-weight: 100;
    font-size: 1.5em;
    margin-right: 10%;
}

/* Order Now button styling */
.sec-2-order-now-btn {
    background-color: black;
    border: none;
    color: white;
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 7.5%;
}

.sec-2-order-now-btn:hover{
  transition: transform 0.3s; /* Add a smooth transition effect */
  transform: scale(1.1); /* Enlarge the button by 10% when hovering */
}



/* section 2 ends */

/* section 2 media */
/* Media query for screen width 1920px */
@media (max-width: 1920px) {
   
  .sec-2-h1-text {
    font-size: 2.5em;
  }

  .sec-2-h4-text,
  .sec-2-h4-2-text {
    font-size: 1.3em;
  }

  .sec-2-order-now-btn {
    font-size: 14px;
    padding: 6px 25px;
  }
}

/* Media query for screen width 1280px */
@media (max-width: 1280px) {
   
  .sec-2-h1-text {
    font-size: 2em;
  }

  .sec-2-right-text-container{
    margin-left: 10%;
    margin-right: 0%;
  }

  .sec-2-h4-text,
  .sec-2-h4-2-text {
    font-size: 1.1em;
  }

  .sec-2-order-now-btn {
    font-size: 12px;
    padding: 5px 20px;
  }
}

/* Media query for screen width 768px */
@media (max-width: 768px) {
   
  .sec-2 {
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    padding: 0;
    margin: 0;
  }

  .left-half,
  .right-half {
    background-color: black;

  }

  .left-image {
    width: 100%;
    margin-bottom: 10%;
    border-radius: 25px;
  }

  .sec-2-right-text-container {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-left: 0%;
    text-align: center;

  }

  .sec-2-h1-text {
    font-size: 2em;
  }

  .sec-2-h4-text,
  .sec-2-h4-2-text {
    font-size: 1em;
  }

  .sec-2-order-now-btn{
    margin-bottom: 10%;
  }


}


/* Media query for screen width 500px */
@media (max-width: 500px) {
   
  .sec-2-h1-text {
    font-size: 1.2em;
  }

  .sec-2-h4-text,
  .sec-2-h4-2-text {
    font-size: 0.9em;
  }

  .sec-2-order-now-btn {
    font-size: 8px;
    padding: 3px 10px;
  }
}

/* Media query for screen width 375px */
@media (max-width: 300px) {
   
  .sec-2-h1-text {
    font-size: 0.8em;
  }

  .sec-2-h4-text,
  .sec-2-h4-2-text {
    font-size: 0.5em;
  }

  .sec-2-order-now-btn {
    font-size: 8px;
    padding: 3px 10px;
  }
}

/* section 2 media */





/* section 3 starts */

/* Section styling */
.sec-3{
    text-align: center;
}

/* Background color for section 3 */
.sec-3-background-color{
background-color: #EFEFEF;
}

/* Header text positioning for section 3 */
.sec-3-header-text-postioning{
margin-top: 2.5%;
}

/* Images container styling */
.images-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
flex-wrap: nowrap;
}

/* Image styling */
.sec-3-image-row {
max-width: 33.33%;
height: auto;
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
margin-bottom: 5%;
border-radius: 25px;
}

/* Order Now button styling */
.sec-3-order-now-btn {
background-color: #BC1823;
border: none;
color: white;
padding: 10px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 25px;
cursor: pointer;
margin-bottom: 5%;
}

/* section 3 ends */


/* section 3 media */
/* Media query for screen width 1920px */
@media (max-width: 1920px) {
   
}

/* Media query for screen width 1280px */
@media (max-width: 1280px) {
   
}

/* Media query for screen width 768px */
@media (max-width: 768px) {
   
  .images-container {
    flex-wrap: wrap;
  }

  .sec-3-image-row {
    max-width: 100%;
    margin-left: 20%;
    margin-right: 20%;
  }
}

/* Media query for screen width 375px */
@media (max-width: 375px) {
   
  .sec-3-header-text-postioning h1 {
    font-size: 1em;
  }

  .sec-3-header-text-postioning h3 {
    font-size: 0.7em;
  }

  .sec-3-order-now-btn {
    font-size: 12px;
    padding: 6px 18px;
  }
}


/* section 3 media */




/* section 4 starts */

/* Main section styling: center alignment and white text color */
.sec-4 {
    text-align: center;
    color: white;
}

/* Background color for the section */
.sec-4-background-color {
    background-color: #BC1823;
}

/* Header text positioning: center alignment and margins */
.sec-4-header-text-postioning {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* Container for the column layout: flexbox, space distribution, and bottom margin */
.sec-4-column-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
}

/* Individual row styling: flex sizing, margins, and center alignment */
.sec-4-row {
    flex: 1;
    margin: 0 10px;
    text-align: center;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

/* Image styling for the rows: dimensions, border-radius, and object-fit */
.sec-4-row img {
    width: 50%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* H1 text styling for the rows: font size and margin */
.sec-4-row h1 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* P text styling for the rows: font size and margin */
.sec-4-row p {
    font-size: 1em;
    margin: 10px 0;
}

/* Star rating styling: font size and color */
.star-rating {
    font-size: 1.5em;
    color: gold;
}

/* section 4 ends */

/* section 4 media */
/* Media query for screen width 1920px */
@media (max-width: 1920px) {
   
}

/* Media query for screen width 1280px */
@media (max-width: 1280px) {
   
}

/* Media query for screen width 800px */
@media (max-width: 800px) {
   
  .sec-4-column-container {
    flex-direction: column;
    align-items: center;
  }

  .sec-4-row {
    width: 80%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* Media query for screen width 375px */
@media (max-width: 375px) {
   
  .sec-4-row h1 {
    font-size: 1.2em;
  }

  .sec-4-row p {
    font-size: 0.9em;
  }

  .star-rating {
    font-size: 1.2em;
  }
}

/* section 4 media */



/* section 5 starts */

/* Main section styling */
.sec-5 {
    display: flex;
    width: 100%;
    height: auto; /* Adjust the height as needed */
    overflow: hidden;
}

/* Left half styling */
.left-half {
    width: 60%;
    position: relative;
}

/* Left image styling */
.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0%;
}

/* Right half styling */
.right-half {
    width: 40%;
    background-color: black;
    color: white;
    display: flex;
    align-items: left;
    flex-direction: column;
}

/* Right text container styling */
.right-text-container {
    text-align: left;
}

/* Adjust text color, size, and spacing as needed */
.sec-5-text {
    margin-top: 20%;
    margin-bottom: 20%;
    overflow-y: hidden;
    overflow-x: hidden;
}

.sec-5-text h3 {
    font-size: 1.8em;
}

.sec-5-text p {
    font-size: 1.2em;
}

/* section 5 ends */

/* section 5 media */
/* Media query for screen width 1920px */
@media (max-width: 1920px) {
   
}

/* Media query for screen width 1280px */
@media (max-width: 1280px) {
   
}

/* Media query for screen width 768px */
@media (max-width: 768px) {
   
  .sec-5 {
    flex-direction: column;
  }

  .left-half,
  .right-half {
    width: 100%;
  }

  .sec-5-text {
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

/* Media query for screen width 375px */
@media (max-width: 375px) {
   
  .sec-5-text h3 {
    font-size: 1.5em;
  }

  .sec-5-text p {
    font-size: 1em;
  }
}

/* section 5 media */

