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

body {
    font-family: 'Roboto';
}


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

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





/* section 1 start */

/* Applies the background image to the section and scales it to be as large as possible */

div {
  overflow-x: hidden;
  overflow: hidden;
}

.sec-1 {
    background-image: url('sec-1 background image.png'); /* Replace 'your-image-url.jpg' with the actual image URL */
    background-size: cover; 
    /* Aligns the background image to the center */
    background-position: center; 
    /* Prevents the background image from repeating */
    background-repeat: no-repeat; 
    /* Sets the height of the section to automatically adjust to its content */
    height: auto; 
}

/* Applies a white text color to the background div */
.sec-1-background{
color: white;
}

/* Positions the logo within its container and adds margins for spacing */
.sec-1-logo-positioning {
    margin-left: 5%; /* Adds some right margin to the logo for spacing */
    margin-top: 5%; /* Adds some top margin to the logo for spacing */
}

/* Sets the size and adds margin to the logo image */
.sec-1-logo-positioning img{
    width: 5%;
    margin-bottom: 15%;
}

/* Aligns the text to the left and vertically centers it using flexbox */
.sec-1-text {
    color: #FFF; /* Sets the text color (change to your desired color) */
    text-align: left; /* Aligns the text to the left */
    display: flex; /* Sets the display to flex for alignment purposes */
    flex-direction: column; /* Sets the direction of the flex items to column */
    justify-content: center; /* Aligns the items vertically to the center */
    margin-left: 5%; /* Adds left margin for the text container */
    margin-bottom: 7.5%; /* Adds some bottom margin for spacing */
}

/* Sets the font size for the heading */
.sec-1-text h1 {
    font-size: 5em;
}

/* Sets the font size and color for the paragraph text */
.sec-1-text p {
    font-size: 1.5em;
    color: #9B9B9B;
    margin-top: 5%; /* Adds some top margin for spacing */
}

/* section 1 end */



/* section 1 optimization  */

/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 768px) {
  /* Note: Adjust font sizes and margins for better readability on smaller screens */

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

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

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

  .sec-1-logo-positioning {
    margin-top: 3%;
  }

  .sec-1-text {
    margin-left: 4%;
    margin-bottom: 5%;
  }
}

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and logo size for better readability and appearance on very small screens */

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

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

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

  .sec-1-logo-positioning {
    margin-top: 2%;
  }

  .sec-1-text {
    margin-left: 3%;
    margin-bottom: 4%;
  }
}


/* section 1 optimization  */















/* section 2 start */

.sec-2{
    color: white;
}

.sec-2-background{
    background-color: #141414;
}

/* Centers the container and sets a max width */
.sec-2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: auto;
    margin: 0 auto;
    margin: 10% 0%;
  }
  
  /* Positions the image on the left side of the container and sets some spacing */
  .sec-2-left {
    flex-basis: 50%;
    padding: 0 10px 0 0;
  }
  
  /* Sets the size and alignment for the image */
  .sec-2-left img {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
  }
  
  /* Positions the text on the right side of the container */
  .sec-2-right {
    flex-basis: 50%;
    padding: 0 0 0 10px;
    margin-left: 5%;
  }
  
  /* Sets the font size and margin for the title text */
  .sec-2-title {
    font-size: 4em;
  }
  
  /* Sets the font size and margin for the paragraph text */
  .sec-2-text {
    font-size: 2em;
    margin-top: 5%;
  }
  
  /* Styles the button */
  .sec-2-button {
    background-color: #9B9B9B;
    color: #fff;
    font-size: 1.5em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5%;
  }

  

/* section 2 ends */


/* section 2 optimization */
/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 900px) {
  /* Note: Adjust font sizes, margins, and layout for better readability on smaller screens */

  .sec-2-container {
    flex-direction: column;
  }

  .sec-2-left {
    padding: 0;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .sec-2-right {
    flex-basis: 100%;
    padding: 0;
    margin-left: 10%;
    margin-top: 5%;
  }

  .sec-2-title {
    font-size: 3em;
  }

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

  .sec-2-button {
    font-size: 1.2em;
  }
}

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and layout for better readability and appearance on very small screens */

  .sec-2-title {
    font-size: 2.5em;
  }

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



  .sec-2-button {
    font-size: 1em;
  }
}

/* section 2 optimization  */




/* section 3 starts */
/* sec-3-background: sets the background color and text color for section 3 */
.sec-3-background {
  background-color: #141414;
  color: white;
}

/* sec-3-column: sets up a flex container with row direction and wraps content */
.sec-3-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10%;
}

/* sec-3-left img: sets the width and alignment for the left column image */
.sec-3-left img {
  width: 80%;
  text-align: center;
}

/* sec-3-left: sets the margin and width for the left column */
.sec-3-left {
  margin-left: 10%;
  width: 50%;
}

/* sec-3-left h1: sets the font size for the left column heading */
.sec-3-left h1 {
  font-size: 4em;
}

/* sec-3-left img: sets the top margin for the left column image */
.sec-3-left img {
  margin-top: 10%;
}

/* sec-3-column .sec-3-left: sets the width and text alignment for the left column */
.sec-3-column .sec-3-left {
  width: 40%;
  text-align: left;
}

/* sec-3-column .sec-3-right: sets the width and flex properties for the right column */
.sec-3-column .sec-3-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: left;
  text-align: left;
  flex-direction: column;
}

/* sec-3-right h1: sets the text alignment for the right column heading */
.sec-3-right h1 {
  text-align: left;
}

/* sec-3-right-h1: sets the font size for the right column heading */
.sec-3-right-h1 {
  font-size: 3em;
}

/* sec-3-right p: sets the top and bottom margins for the right column paragraph */
.sec-3-right p {
  margin-top: 5%;
  margin-bottom: 5%;
}

/* sec-3-column .sec-3-right h1: sets the font size and weight for the right column heading */
.sec-3-column .sec-3-right h1 {
  font-size: 1.5em;
  font-weight: bolder;
}

/* sec-3-column .sec-3-right p: sets the font size for the right column paragraph */
.sec-3-column .sec-3-right p {
  font-size: 1.2em;
}

/* sec-3-right: sets the top margin for the right column */
.sec-3-right {
  margin-top: 2.5%;
}

/* em: sets the font style, weight, and size for emphasized text */
em {
  font-style: normal;
  font-weight: bolder;
  font-size: 1.4em;
}
/* section 3 ends */

/* section 3 media */
/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 900px) {
  /* Note: Adjust font sizes, margins, and layout for better readability on smaller screens */

  .sec-3-column {
    flex-direction: column;
    align-content: left;
  }

  .sec-3-left,
  .sec-3-right {
    width: 80%;
    margin-left: 10%;
  }

  .sec-3-left {
    margin-left: 10%;
    margin-bottom: 5%;
  }

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

  .sec-3-left img{
    width: 150%;
  } 

  .sec-3-right {
    margin-top: 0;
  }

  .sec-3-right h1 {
    font-size: 1.2em;
  }

  .sec-3-right p {
    font-size: 1em;
    margin-bottom: 20%;
  }

  em {
    font-size: 1.2em;
  }
}

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and layout for better readability and appearance on very small screens */

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

  .sec-3-left {
    margin-left: 10%;
  }

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

  .sec-3-right h1 {
    font-size: 1em;
  }

  .sec-3-right p {
    font-size: 0.8em;
  }

  em {
    font-size: 1em;
  }
}

/* section 3 media  */








/* section 4 starts - Image column with 3 rows and semi-transparent overlay at the bottom */

.sec-4-background{
  background-color: white;
}

.sec-4-headline-text{
  margin-left: 7.5%;
  margin-top: 10%;
  margin-bottom: 10%;
}

.sec-4-headline-text h1{
  font-size: 3.5em;
}

.sec-4-headline-text p{
  font-size: 2.5em;
}

/* Column and row styles */
.sec-4-image-column {
  display: flex;
  flex-direction: row;
  margin-left: 5%;
  margin-right: 5%;
}

.sec-4-image-row {
  position: relative;
  margin-bottom: 20px;
  margin-left: 2.5%;
  margin-right: 2.5%;
}

.sec-4-image-row img {
  width: 100%;
  display: block;
}

/* Overlay styles */
.sec-4-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  color: #fff;
  font-size: 0.5em;

}

/* section 4 ends - Image column with 3 rows and semi-transparent overlay at the bottom */


/* section 4 media */
/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 900px) {
  /* Note: Adjust font sizes, margins, and layout for better readability on smaller screens */

  .sec-4-headline-text h1 {
    font-size: 2.5em;
  }

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

  .sec-4-image-column {
    flex-direction: column;
  }

  .sec-4-image-row {
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10%;
  }


  .sec-4-image-overlay {
    font-size: 0.8em;
  }
}

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and layout for better readability and appearance on very small screens */

  .sec-4-headline-text {
    margin-left: 5%;
  }

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

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

  .sec-4-image-overlay {
    font-size: 0.7em;
  }
}

/* section 4 media */





/* section 5 starts */

.sec-5-background{
  background-color: #141414;
}

/* sec-5: sets the background color for section 5 and centers the content */
.sec-5 {

  height: auto; /* Sets the height of the section to 100% of the viewport height */
  display: flex; /* Sets the section to use the flexbox layout */
  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Centers the content vertically */
}

/* sec-5-container: contains the centered text */
.sec-5-container {
  text-align: center; /* Aligns the text within the container */
  margin-top: 20%;
  margin-bottom: 20%;
}

/* sec-5-text: sets the text color and styling for the centered text */
.sec-5-text {
  color: #fff;
  margin-top: 20%;
  margin-bottom: 20%;
}


.sec-5-text-p{
  color: #fff;
  font-size: 5em;
  margin-left: 2.5%;
  margin-right: 2.5%;
}

.sec-5-text-h3{
  margin-top: 5%;
  color: #9B9B9B;
  font-size: 2em;
}




/* section 5 ends */


/* section 5 media */
/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 768px) {
  /* Note: Adjust font sizes, margins, and layout for better readability on smaller screens */

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

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

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

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and layout for better readability and appearance on very small screens */

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

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

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

/* section 5 media */







/* Section 6 start */

/* sec-6: parent container of the section, for styling purposes */
.sec-6 {
  background-color: #141414;
  color: white;
}

/* sec-6-row: container for the text and image content, responsible for layout and positioning */
.sec-6-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 80%;
  padding: 50px 0;
}

/* sec-6-text: container for the text content, responsible for text alignment and positioning */
.sec-6-text {
  width: 50%;
  margin-left: 10%;
}

.sec-6-text h1{
  font-size: 1.5em;
  margin-bottom: 2.5%;
}

.sec-6-text p{
  margin-bottom: 10%;
}

/* sec-6-image: container for the image content, responsible for image alignment and positioning */
.sec-6-image {
  width: 50%;
  text-align: left;
}

.sec-6-image h1{
 font-size: 2.5em;
 margin-bottom: 10%;
}


/* sec-6-image img: styles for the image */
.sec-6-image img {
  max-width: 100%;
  height: auto;
}

/* Section 6 end */

/* Section 6 media */

/* Media Queries */

/* 1920px screen size */
/* Note: No adjustments needed for this screen size as the base styles should work fine */

/* 1280px screen size */
/* Note: No major adjustments needed for this screen size as the base styles should still work fine */

/* 768px screen size */
@media (max-width: 900px) {
  /* Note: Adjust font sizes, margins, and layout for better readability on smaller screens */

  .sec-6-row {
    flex-direction: column;
  }

  .sec-6-image {
    width: 100%;
    text-align: center;
  }

  .sec-6-text {
    width: 100%;
    margin-left: 0;
  }

  .sec-6-image h1 {
    font-size: 2.5em;
    margin-bottom: 10%;
  }

  .sec-6-text h1 {
    margin-top: 10%;
    font-size: 1.5em;
    margin-bottom: 2%;
  }

  .sec-6-text p {
    font-size: 1.2em;
    margin-bottom: 5%;
  }
}

/* 375px screen size */
@media (max-width: 375px) {
  /* Note: Adjust font sizes, margins, and layout for better readability and appearance on very small screens */

  .sec-6-row {
    flex-direction: column;
  }

  .sec-6-image h1 {
    font-size: 1.7em;
    margin-bottom: 4%;
  }

  .sec-6-text h1 {
    font-size: 1.1em;
    margin-bottom: 1.5%;
  }

  .sec-6-text p {
    font-size: 0.9em;
    margin-bottom: 4%;
  }
}


/* section 6 media */

