@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');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Poppins", serif;
}

:root {
  --white-color: white;
  --block-color: block;


  --primary-color: #6096BA;
  --secondary-color: #1F2937;

  --para-color: #4A4C56;

}



.login-btn a {
    color: #ffffff; /* Set text color to white */
    background-color: #6096BA; /* Set static blue background color */
    text-decoration: none; /* Remove underline */
    padding: 10px 20px; /* Add padding for better appearance */
    border-radius: 15px; /* Keep the existing border radius */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.login-btn a:hover {
    background-color: #1F2937; /* Darker blue on hover */
}


.d-flex {
  display: flex;
  /* gap: 20px; */
}

.align-center {
  align-items: center;
}


.align-end {
  align-items: end;
}


.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
}

.col-1-5 {
  flex: 1.5;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-6 {
  flex: 6;
}

.center {
  text-align: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1600px;
  margin: auto;
  padding: 50px;
}

.container-fluid {
  max-width: 1600px;
  margin: auto;
  padding: 10px 50px;
}

/* CODE STARTS HERE */
header {
  background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
  border-bottom: 1px solid #FFFFFF1A;

}

header .row {
  gap: 0px;  /* Reduced gap between logo and navigation */
}

header .logo a {
  color: var(--white-color);
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0%;
  padding-right: 10px;  /* Reduced padding to the right of the logo */
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0);
  /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/opacity */
  overflow-x: hidden;
  /* Disable horizontal scroll */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%;
  /* 25% from the top */
  width: 100%;
  /* 100% width */
  text-align: center;
  /* Centered text/links */
  margin-top: 30px;
  /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 26px;
  color: #818181;
  display: block;
  /* Display block instead of inline */
  transition: 0.3s;
  /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

header span i {
  font-size: 16px;
  cursor: pointer;
  color: var(--white-color);
  border: 1.6px solid var(--white-color);
  border-radius: 3px;
  padding: 3px 6px;
}

header ul {
  gap: 24px;
}

header ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0%;

  color: var(--white-color);
}

header ul li a.active,
header ul li a:hover {
  color: var(--secondary-color);
}







.heroSection .box.relBox .boxPre h4{
font-weight: 600;
font-size: 24px;
line-height: 28.8px;
letter-spacing: 0%;
text-align: center;
color: #6096BA;
}

.heroSection .box.relBox .boxPre p {
  margin-bottom: 0px !important;


  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0%;
  text-align: center;

  color: #6096BA;
}

.heroSection {
  background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
}

.heroSection .row {
  flex-wrap: wrap;
  gap: 30px;
}

.heroSection .box {
  flex: 1;
}

.heroSection .box h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 67.2px;
  letter-spacing: 0%;
  max-width: 597px;
  color: var(--white-color);
  line-height: 70px;
}

.heroSection .box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0%;

  color: var(--white-color);
  margin-bottom: 14px;
}

.heroSection .box .btn a {
  max-width: 597px;
  width: 100%;
  padding-top: 6px;
  padding-right: 48px;
  padding-bottom: 6px;
  padding-left: 48px;
  border-radius: 43px;
  border-width: 4px;
  border: 4px solid #274C77;
  color: var(--primary-color);
  background-color: rgb(218, 227, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 36px;
  line-height: 43.2px;
  letter-spacing: 0%;

}
/* Hover effect */
.heroSection .box .btn a:hover {
  background-color: #274C77; /* Dark blue on hover */
  color: #ffffff; /* Text turns white */
  transform: scale(1.05); /* Slight zoom effect */
}


/* CODE FOR FUNCTIONALIT SECTION */
.gridBurger,.swiperSection,.swiper,.swiper .swiper-slide{
  background: #F8FAFB !important;

}
.gridBurger .row p#priceRangeValue,
.gridBurger .row p#priceRangeValueOne {
  max-width: 242.98px;
  width: 100% ;
  min-height: 60px;
  gap: 4px;
  opacity: 0.8;
  border-radius: 25px;
  border-width: 3px;
  background: #FFFFFF;
  border: 3px solid #6096BA;
  margin: auto;
  margin-top: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #274C77;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;

}

.gridBurger .row {
  gap: 20px;
  margin-bottom: 90px;
  flex-wrap: 300px;
  flex-grow: 1;
}

.gridBurger .row h1 {
  font-weight: 500;
  font-size: 32px;
  line-height: 41.6px;
  letter-spacing: 0%;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.gridBurger .row p {
  color: var(--para-color);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;

}



.gridBurger .slider-container {
  padding: 20px;
  width: 300px;
  text-align: center;
}

.gridBurger .slider {
  position: relative;
  height: 6px;
  background-color: #ddd;
  border-radius: 5px;
  margin: 20px auto;
  width: 100%;
}

.gridBurger .progress {
  position: absolute;
  height: 100%;
  background-color: rgb(51, 51, 51);
  border-radius: 5px;
  left: 0;
  width: 50%;
  transition: 0s !important;
}

.gridBurger .range {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  pointer-events: auto;
  appearance: none;
  top: 0px;
  left: 0px;
}

.gridBurger .range::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}

.gridBurger #priceRangeValue {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}



/* Toggle button styles */
.gridBurger .toggle-container {
  display: inline-block;
  position: relative;
  width: 100px;
  /* Adjustable width */
  height: 50px;
  /* Adjustable height */
}
.gridBurger .toggle-container img.blackArrow{
  position: absolute;
  bottom: -155px;
  left: -180px;
  width: 210px !important;
  animation: rotateImage 7s infinite ease-out;
}
@keyframes rotateImage {
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(-7deg);
  }
  100%{
    transform: rotate(0deg);
  }
  
}

.gridBurger .toggle-input {
  display: none;
}

.gridBurger .toggle-label {
  display: block;
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.gridBurger .toggle-label::after {
  content: "";
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

/* When toggled ON */
.gridBurger .toggle-input:checked+.toggle-label {
  background: #4CAF50;
}

.gridBurger .toggle-input:checked+.toggle-label::after {
  left: 55px;
}

/* Image styles */
.gridBurger .image-container {
  margin-top: 20px;
  min-height: 170px;
}

.gridBurger .image-container img {
  max-width: 286px;
  width: 100%;
  margin: auto;
}

.gridBurger .image-container img.Favo-Chicken {
  max-width: 400px;
}

.gridBurger .imageBox {
  height: 300px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  gap: 20px;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 4px !important;
  border-radius: 20px !important;
  background-color: #079669 !important;
  z-index: 9;
}

.swiper-slide img {
  max-width: 250px;
  width: 100%;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  cursor: pointer;
  z-index: 999;
}

.swiper .swiper-button-next {
  right: 0px;
  color: #079669 !important;
}

.swiper .swiper-button-prev {
  left: 0px;
  color: #079669 !important;
}

.swiper-slide p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0%;

  color: var(--para-color);
}

.swiper-slide .horizontalLinePara {
  gap: 20px;
}

.swiper-slide .horizontalLinePara .horizontalLine {
  width: 24px;
  border-width: 1px;
  border: 1px solid #1F2937;
}

.swiper-slide .horizontalLinePara p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  color: var(--secondary-color);
}










/* CODE FOR PRICE SECTION */
.mainContainer h1 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0%;
  color: var(--secondary-color);

}

.mainContainer p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0px;

  color: var(--para-color);
  margin-bottom: 40px;
}

.priceDetail .row {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.priceDetail .row .col-1 {
  flex-grow: 1;
  max-width: 374.98px;
  width: 100%;
  flex-basis: 330px;
  min-height: 428.98px;

  border-radius: 16px;
  border-width: 1px;
  padding: 24px;

  border: 1px solid #274C77;
  background: #FFFFFF;

}

.priceDetail .row .col-1 h4 {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0%;
  color: var(--secondary-color);
}

.priceDetail .row .col-1 h1 {
  font-weight: 500;
  font-size: 32px;
  line-height: 41.6px;
  letter-spacing: 0%;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.priceDetail .row .col-1 h1 span {

  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
  color: var(--para-color);
}

.priceDetail .row .col-1 .underline {
  margin-bottom: 35px;
  border: 1px solid #E9E9EA;
}

.priceDetail .row .col-1 .checkList {
  gap: 8px;
  margin-bottom: 24px;
}

.priceDetail .row .col-1 .checkList i {
  color: #274C77;
  font-size: 20px;
}

.priceDetail .row .col-1 .checkList p {
  color: var(--para-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0px;

}

.priceDetail .row .col-1 .heightedPara {
  min-height: 131px;
  margin-bottom: 20px;
}

.priceDetail .row .col-1:nth-child(3) .checkList {
  align-items: start;
}

.priceDetail .row .col-1:nth-child(3) .checkList i {
  margin-top: 6px;
}


/* FOR ACTIVE CLASSES */

.priceDetail .row .col-1.active,
.priceDetail .row .col-1:hover {
  background: #274C77;
  cursor: pointer;
}

.priceDetail .row .col-1.active h4,
.priceDetail .row .col-1.active h1,
.priceDetail .row .col-1.active h1 span,
.priceDetail .row .col-1.active .underline,
.priceDetail .row .col-1.active .checkList i,
.priceDetail .row .col-1.active .checkList p,
.priceDetail .row .col-1:hover h4,
.priceDetail .row .col-1:hover h1,
.priceDetail .row .col-1:hover h1 span,
.priceDetail .row .col-1:hover .underline,
.priceDetail .row .col-1:hover .checkList i,
.priceDetail .row .col-1:hover .checkList p {
  color: var(--white-color) !important;
}

.priceDetail .row .col-1:hover .btn a {
  background-color: white;
}

.priceDetail .row .col-1 .btn a {
  max-width: 326.98px;
  width: 100%;
  min-height: 46px;
  gap: 10px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-radius: 30px;
  border-width: 1px;
  border: 1px solid #274C77;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;

  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.5%;
  color: var(--primary-color);

  background-color: var(--white-color);
}

.priceDetail .row .col-1.active .papularLine {
  flex-wrap: wrap;
}

.priceDetail .row .col-1.active .papularLine p {
  margin-bottom: 14px;
  padding-top: 7px;
  padding-right: 10px;
  padding-bottom: 7px;
  padding-left: 10px;
  border-radius: 20px;
  background-color: var(--white-color);
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  letter-spacing: 0px;

}









/* CODE FOR MENU */
.menu .row {
  flex-wrap: wrap;
  gap: 20px;
}

.menu .row h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0%;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.menu .row p {
  max-width: 615.98px;
  width: 100%;
  color: var(--para-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
}

.menu .row .col-1 img {
  border-radius: 15px;
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.example-pair {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.example-pair img {
  max-width: 550px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  padding: 16px;
  background: #274C77;  /* Dark blue as default */
}

.example-pair img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: #6096BA;  /* Light blue on hover */
}

@media screen and (max-width: 728.98px) {
  .example-pair {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px;
  }
  
  .example-pair img {
    max-width: 100%;
  }

  .examples-section h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .examples-section p {
    font-size: 18px;
    line-height: 28px;
  }
}

/* CODE FOR FORM */
.form {
  background: #F6F8FA;
  padding-top: 50px;
}

.form h1 {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 48px;
  line-height: 62.4px;
  letter-spacing: 0%;
  color: #161721;
}

.form form {
  max-width: 604.98px;
  width: 100%;
  min-height: 506px;
  border-radius: 16px;
  padding: 48px 48px 0px 48px;
  background-color: var(--white-color);
  margin: auto;
  position: relative;
}

.form form label {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.5%;

}


.form form textarea,
.form form input {
  width: 100%;
  margin-bottom: 20px;
  max-width: 508px;
  width: 100%;
  border: 1px solid #E9E9EA;
  backdrop-filter: blur(30px);
  padding-top: 9px;
  padding-right: 23px;
  padding-bottom: 9px;
  padding-left: 23px;
  border-radius: 8px;
  border-width: 1px;
  min-height: 51px;

}

.form form textarea {
  min-height: 170.98px;
}

.form form input.button {
  max-width: 508px;
  width: 100%;
  min-height: 46px;
  padding-top: 10px;
  padding-right: 48px;
  padding-bottom: 10px;
  padding-left: 48px;
  border-radius: 8px;
  background: #274C77;

  color: var(--white-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;

  position: absolute;
  bottom: -46px;
}



footer{
  background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
  text-align: center;
  padding: 20px 0;
}
footer .container{
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
footer p{
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
footer p a{
  color: var(--white-color);
}
footer p a:hover{
  transition: .3s;
  color: var(--secondary-color);
}




/* CODE FOR MOBILE AND TABLET */
@media screen and (max-width: 1116.98px) {
.container {
  padding: 50px 24px;
}

.container-fluid {
  padding: 10px 24px;
}

.heroSection .row{
  flex-direction: column-reverse;
}
.heroSection .box h1,.heroSection .box .btn a,.heroSection .relBox img{
  width: 100%;
  max-width: 100%;
}

}
@media screen and (min-width: 928.98px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 928.98px) {
  .gridBurger .toggle-container img.blackArrow{
    width: 98px !important;
    bottom: -68px !important;
    left: -79px !important;
  }
  .mobile {
    display: none;
  }
  .gridBurger .row,.menu .row{
    flex-direction: column;
    align-items: center;
  }
  .gridBurger .row.rowReverse{
    flex-direction: column-reverse;
  }
  
.gridBurger .row p#priceRangeValue,
.gridBurger .row p#priceRangeValueOne{
  width: 242.98px;
}
.swiper-slide{
  flex-direction: column-reverse;
}
  header .row {
    gap: 10px;  /* Further reduced gap for mobile */
  }
}

@media screen and (max-width: 728.98px) {
  .container {
    padding: 50px 22px;
  }

  .container-fluid {
    padding: 10px;
  }
  .form form input.button{
    position: relative !important;
    bottom: 0px !important;
  }
  .form h1{
    font-size: 30px;
  }
  .heroSection .box h1{
    font-size: 40px;
    line-height: 45px;
  }
  footer .container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 498.98px){
  .container {
    padding: 50px 10px !important;
  }

  .container-fluid {
    padding: 10px;
  }
}

@media screen and (max-width: 1116.98px) {
  .container {
    padding: 50px 24px;
  }
  
  .container-fluid {
    padding: 10px 24px;
  }
  
  }

/* CODE FOR EXAMPLES SECTION */
.examples-section {
    background: #F8FAFB;
    padding: 80px 0;  /* Increased padding */
}

.examples-section .mainContainer {
    margin-bottom: 60px;  /* Increased margin */
}

.examples-section h1 {
    font-weight: 600;
    font-size: 48px;  /* Increased font size */
    line-height: 58px;
    letter-spacing: 0%;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.examples-section p {
    color: var(--para-color);
    font-weight: 400;
    font-size: 20px;  /* Increased font size */
    line-height: 30px;
    letter-spacing: 0%;
}

.examples-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;  /* Increased gap between pairs */
    max-width: 1400px;  /* Added max-width for better layout control */
    margin: 0 auto;
}

.example-pair {
    display: flex;
    gap: 40px;  /* Increased gap between images */
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;  /* Added padding */
}

.example-pair img {
    max-width: 550px;  /* Slightly reduced to accommodate frames */
    width: 100%;
    height: auto;
    border-radius: 16px;  /* Increased border radius */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);  /* Enhanced shadow */
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;  /* Added subtle border */
    padding: 12px;  /* Added padding inside frame */
    background: white;  /* White background for frame */
}

.example-pair img:hover {
    transform: scale(1.02) translateY(-5px);  /* Added slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);  /* Enhanced shadow on hover */
    border-color: #6096BA;  /* Brand color border on hover */
}

@media screen and (max-width: 728.98px) {
    .example-pair {
        flex-direction: column;
        align-items: center;
        gap: 30px;  /* Adjusted gap for mobile */
        padding: 10px;  /* Adjusted padding for mobile */
    }
    
    .example-pair img {
        max-width: 100%;
    }

    .examples-section h1 {
        font-size: 36px;  /* Adjusted for mobile */
        line-height: 44px;
    }

    .examples-section p {
        font-size: 18px;
        line-height: 28px;
    }
}

/* CODE FOR CONTACT PAGE */
.contact-hero {
    background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
    padding: 80px 0;
}

.contact-hero .mainContainer {
    margin-bottom: 50px;
}

.contact-hero h1 {
    color: var(--white-color);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero p {
    color: var(--white-color);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 604.98px;
    margin: 0 auto;
}

.contact-hero form {
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-hero form label {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0.5%;
}

.contact-hero form input,
.contact-hero form textarea {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #E9E9EA;
    backdrop-filter: blur(30px);
    padding: 12px 23px;
    border-radius: 8px;
    min-height: 51px;
}

.contact-hero form textarea {
    min-height: 170.98px;
    resize: vertical;
}

.contact-hero form .button {
    width: 100%;
    min-height: 46px;
    padding: 10px 48px;
    border-radius: 8px;
    background: #6096BA;
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-hero form .button:hover {
    background: #274C77;
}

/* Contact info section on contact page */
.contact-hero + #contactinfo {
    background: #F6F8FA;
    padding: 60px 0;
}

@media screen and (max-width: 728.98px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-hero form {
        padding: 24px;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
    padding: 80px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    color: var(--white-color);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-button.primary {
    background-color: var(--white-color);
    color: #274C77;
    border: 2px solid var(--white-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--white-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.cta-button.secondary:hover {
    background-color: var(--white-color);
    color: #274C77;
}

@media screen and (max-width: 728.98px) {
    .cta-section {
        padding: 60px 24px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact info section styling */
.contactSection .contactContent {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contactSection .box {
    margin-bottom: 20px;
}

.contactSection .logo.box {
    margin-bottom: 30px;
}

.contactSection .logo.box img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.contactSection h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 16px;
}

.contactSection p {
    font-size: 20px;
    color: var(--para-color);
    margin: 8px 0;
}

@media screen and (max-width: 728.98px) {
    .contactSection .logo.box img {
        max-width: 150px;
    }
}

/* Video Example Styles */
.video-example {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.example-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.contact-hero .logo.box {
    margin-bottom: 30px;
    text-align: center;
}

.contact-hero .logo.box img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 728.98px) {
    .contact-hero .logo.box img {
        max-width: 150px;
    }
}

/* Terms Page Styles */
.terms-section {
    background: linear-gradient(108.52deg, #6096BA 0%, #274C77 99.02%);
    padding: 80px 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-content h1 {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: left;
}

.terms-content h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin: 30px 0 15px;
}

.terms-content p {
    color: var(--para-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-content ul li {
    color: var(--para-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

@media screen and (max-width: 728.98px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-content h1 {
        font-size: 28px;
    }
    
    .terms-content h2 {
        font-size: 20px;
    }
}

.terms-section .logo.box {
    margin-bottom: 30px;
    text-align: center;
}

.terms-section .logo.box img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 728.98px) {
    .terms-section .logo.box img {
        max-width: 150px;
    }
}

#IMG_1082 {
    border-radius: 15px;
}