body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 5px;
}





/*header section*/




/* Hero Section */
/* 
/* Header Section */
/* .header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}

.navbar-brand img {
  height: 50px;
} */

/* Hero Section Styling */


/* Header Section Styling */
/* .header_section {
  height: 9vh ;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white ; /* Light background color */
  

/* Logo Container */
/* header containe */


.container5{
  padding-left: 5vw;
}
.hero_section {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* 

Styling for the video overlay */
.video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  /* z-index: 1; */
}
.hero_text {
  position: relative;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: left; /* Align content to the left */
  align-items: center; /* Center content vertically */
  /* Add some padding from the left side */
  background: url('your-background-image.jpg') no-repeat center center/cover; /* Add background image */
  color: #000000; /* Text color */
}

/* Optional: Styling for the text container */
.hero_text_inner {
  max-width: 600px; /* Limit the width of the text */
}

/* Style the heading and paragraph */
.hero_text h1 {
  font-size: 65px;
  margin: 0;
  font-weight: bold;
}

.hero_text p {
  font-size: 23px;
  margin: 20px;
  font-weight: normal;

}

.hero_text a {
  font-size: 20px;
  display: inline-block;
  background-color: #03A9F4;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  margin-top: 15px;
}

.hero_text a:hover {
  background-color: #0056b3;
}

/* Styling for the video */
.hero_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}



/* heading section  */

.header_section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;


 
  padding: 15px 30px; /* Spacing for the header */
  z-index: 3;
  background: transparent; /* Transparent background */
}

.logo-container {
 display: flex;

  width: 100%;
}

.logo1 img {
  height: 95px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6)); /* Add shadow for better visibility */
  padding-left: 50px;
  
}



/* Responsive Design - Reduce Height */
@media (max-width: 1024px) {
  .hero_section,
  .hero_text,
  .hero_video {
    height: 70vh; /* 25% less height */
  }

  .hero_text {
    padding-left: 30px;
  }

  .hero_text h1 {
    font-size: 60px;
  }

  .hero_text p {
    font-size: 24px;
  }

  .hero_text a {
    font-size: 18px;
    padding: 8px 18px;
  }

  .logo1 img {
    height: 100px;
  }
}

@media (max-width: 1199px) {
  .hero_section,
  .hero_text {
    height: 80vh; /* Reduce even more for mobile */
  }
  .hero_video {
    height: 60vh; /* Reduce even more for mobile */
  }
  .hero_text h1 {
    font-size: 60px;
  }
  
  .hero_text p {
    font-size: 24px;
  }
  
  .hero_text a {
    font-size: 20px;
    padding: 8px 16px;
  }
  
  .header_section {
    padding: 12px 25px;
  }
  
  .logo1 img {
    height: 100px;
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .hero_section {
      height: 60vh; /* Reduce height */
      padding: 0 3%;
  }

  .hero_text {
      text-align: center;
      justify-content: center;
  }

  .hero_text_inner {
      max-width: 90%;
  }

  .hero_text h1 {
      font-size: 48px;
  }

  .hero_text p {
      font-size: 22px;
  }

  .hero_text a {
      font-size: 20px;
      padding: 8px 16px;
  }

  .logo-container {
      flex-direction: column;
      align-items: center;
  }

  .logo1 img {
      height: 60px;
  }
}

/* For Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero_section {
      height: 50vh; /* Reduce height for mobile */
      padding: 0 2%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start; /* Move content higher */
      align-items: center;
      position: relative;
  }

  .hero_text {
      text-align: center;
      justify-content: center;
      margin-top: 9vh; /* Move text higher */
  }

  .hero_text h1 {
      font-size: 33px;
      margin-bottom: 5px; /* Adjust spacing */
  }

  .hero_text p {
      font-size: 15px;
      margin-bottom: 7px; /* Adjust spacing */
  }

  .hero_text a {
      font-size: 13px;
      padding: 4px 12px;
  }

  .logo1 img {
      height: 50px;
      margin-top: 10px; /* Space between text and logo */
  }
}




/* yha tak hero section tha  */





/*  prising section  */
.container3 {
  padding: 30px;
  text-align: center;
  height: 100%;
  font-size: 23px;
  padding-top: 30px;
  
 
}
.container3 h2 {
  padding-left: 5px;
  position: relative;
  font-weight: bold;
  font-size: 70px;
  margin-bottom: 5vh;
  margin-top: 3vh;
  
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 15px;
  color: #060606;
  text-align: center;
  
  text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #3554d1;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}









.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand img {
  width: 90px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  height: 80px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 50px;
  width: 30px;
  height: 30px;
}

.lg_toggl-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 40px;
  cursor: pointer;
}

.lg_toggl-btn:focus {
  outline: none;
}

.User_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 35px;
}

.User_option a {
  color: #ffffff;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  right: 15px;
  top: 7px;
}

.custom_menu-btn button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn button span {
  display: block;
  width: 50px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.menu_btn-style {
  position: fixed;
  right: 40px;
  top: 7px;
}

.custom_menu-btn .s-2 {
  width: 25px;
  margin-left: auto;
}

.custom_menu-btn .s-3 {
  width: 25px;
  margin-left: auto;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  background-color: rgba(53, 84, 209, 0.9);
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  padding: 0px;
  text-decoration: none;
  font-size: 22px;
  color: #f1f1f1;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
}

.overlay a:hover {
  color: #252525;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu_width {
  width: 100%;
}











/* 
.hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
} */

/* .hero_content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero_content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
} */
/* 
.hero_button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero_button:hover {
  background: #e05500;
} */






.about_section .img-box img {
  width: 100%;
  height: 100%;
}

.about_section .detail-box p {
  margin-top: 1px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 20px 30px;
  background-color: transparent;
  color: #3554d1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #3554d1;
  border-radius: 25px;
  margin-top: 25px;
}

.about_section .detail-box a:hover {
  background-color: #3554d1;
  border-color: transparent;
  color: #ffffff;
}

.about_section .square-box {
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 75px;
}

.about_section .square-box img {
  width: 100%;
}
 


/* rotaing animation */

.animate-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

/* Slide elements */
.slide-element {
  position: absolute;
  width: 170px;
  height: 170px;
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

/* Left sliding element */
.slide-left {
  left: -6rem;
  top: 33%;
  transform: translateX(-300px);
}

/* Right sliding element */
.slide-right {
  right: -6rem;
  top: 57%;
  transform: translateX(300px);
}

/* Animation trigger */
.animate .slide-left,
.animate .slide-right {
  opacity: 1;
  transform: translateX(0);
}

/* Placeholder box styling */
.placeholder-box {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 8px;
  animation: continuous-rotate 20s linear infinite;
}
.placeholder-box img{
  height: 1000px;
  width: 2000px;
}
/* Keyframes for rotation */
@keyframes continuous-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .slide-element {
    width: 150px;
    height: 150px;
  }

  .slide-left {
    left: -5rem;
    top: 30%;
    transform: translateX(-250px);
  }

  .slide-right {
    right: -5rem;
    top: 55%;
    transform: translateX(250px);
  }

  .placeholder-box {
    font-size: 18px;
  }

  .placeholder-box img {
    height: 900px;
    width: 1800px;
  }
}

@media (max-width: 768px) {
  .slide-element {
    width: 120px;
    height: 120px;
  }

  .slide-left {
    left: -4rem;
    top: 28%;
    transform: translateX(-200px);
  }

  .slide-right {
    right: -4rem;
    top: 52%;
    transform: translateX(200px);
  }

  .placeholder-box {
    font-size: 16px;
  }

  .placeholder-box img {
    height: 700px;
    width: 1400px;
  }
}

@media (max-width: 480px) {
  .slide-element {
    width: 90px;
    height: 90px;
  }

  .slide-left {
    left: -3rem;
    top: 25%;
    transform: translateX(-150px);
  }

  .slide-right {
    right: -3rem;
    top: 50%;
    transform: translateX(150px);
  }

  .placeholder-box {
    font-size: 14px;
  }

  .placeholder-box img {
    height: 500px;
    width: 1000px;
  }
}




   /*   heading of our services  */
   .heading_container {
  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
        
  }
  
  .heading_container h1 {
    padding-left: 5px;
    margin-top: 15px;
  
    position: relative;
    font-weight: bolder;
    font-size: 60px;
    margin-bottom: 30px;
   
    
  }
  .heading_container h2 {
    padding-left: 5px;
    position: relative;
    font-weight: bolder;
    font-size: 47px;
    ;
    
  }
  .heading_container p {
    

    padding-left: 5px;
    position: relative;
    margin-top: 10px;
    font-size: 22px;;
    
  }


/* Responsive Design */
@media (max-width: 1024px) {
  .heading_container h1 {
    font-size: 60px;
    margin-bottom: 25px;
  }

  .heading_container h2 {
    font-size: 45px;
  }

  .heading_container p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .heading_container h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .heading_container h2 {
    font-size: 40px;
  }

  .heading_container p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .heading_container h1 {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .heading_container h2 {
    font-size: 30px;
  }

  .heading_container p {
    font-size: 16px;
    padding: 10px;
   
  }
}

/* sale section */



.sale_container {
  display: grid;
  /* Each column will be at least 200px wide but can grow to fill extra space */
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-gap: 35px; /* Space between boxes */
}

.box5 {
  background-color: #fff;
  border-radius: 8px; /* Slightly more rounded corners */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Larger shadow for emphasis */
  overflow: hidden;
  width: calc(50% - 60px); /* Two-column layout with gap */
  max-width: 600px; /* Ensures boxes don't grow too large */
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  clip-path: inset(70px 0 0px 0); /* Adjust the cut-off area */
  padding: 15px 15px 0px 15px;
/* Adjust height here */

  /* You can adjust height here if needed */
  /* height: 300px; */
}

/* About Section */
.about_section .row {
  align-items: center;
}

/* Image Box */
.img-box {
  width: 100%;
  overflow: hidden;
 

  /* You can add height here */
  /* height: 400px; */
}

.img-box iframe {
  clip-path: inset(70px 0 21px 0);
  

  /* You can adjust height of iframe */
  /* height: 250px; */
}

/* Sale Section */
.sale_section .heading_container {
  align-items: center;
 
}

.sale_section .sale_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sale Section Box */
.sale_section .sale_container .box .img-box img {
  width: 90%;
  height: 100%;

  /* Adjust height for images here */
  /* height: auto; */
}

.sale_section .sale_container .box .detail-box {
  margin-top: 1px;
}

.sale_section .sale_container .box .detail-box h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
}

/* Button Box */
.sale_section .btn-box {
  display: flex;
  justify-content: center;
}

.sale_section .btn-box a {
  display: inline-block;
  padding: 7px 30px;
  background-color: transparent;
  color: #3554d1;
  transition: all 0.3s;
  border: 1px solid #3554d1;
  border-radius: 25px;
  margin-top: 35px;
}

.sale_section .btn-box a:hover {
  background-color: #3554d1;
  border-color: transparent;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .sale_container {
    grid-gap: 50px;
  }
  
  .img-box {
    height: 650px;
  }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
  .sale_container {
    grid-gap: 40px;
  }
  
  .img-box {
    height: 550px;
  }
  
  .box5 {
    max-width: 650px;
  }
}

/* Tablet screens (768px to 991px) */
@media (max-width: 991px) {
  .sale_container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  
  .img-box {
    height: 500px;
  }
  
  .box5 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Mobile screens (576px to 767px) */
@media (max-width: 767px) {
  .sale_container {
    grid-gap: 25px;
    padding: 15px;
  }
  
  .img-box {
    height: 400px;
  }
  
  .box5 {
    padding: 0 15px;
    clip-path: inset(50px 0 0px 0);
  }
  
  .img-box iframe {
    clip-path: inset(70px 0 21px 0);
  }
  
  .sale_section .btn-box a {
    padding: 6px 25px;
    font-size: 14px;
  }
}

/* Small mobile screens (up to 575px) */
@media (max-width: 575px) {
  .sale_container {
    grid-gap: 20px;
    padding: 10px;
  }
  
  .img-box {
    height: 350px;
  }
  
  .box5 {
    padding: 0 10px;
    clip-path: inset(40px 0 0px 0);
  }
  
  .img-box iframe {
    clip-path: inset(60px 0 21px 0);
  }
  
  .sale_section .heading_container {
    margin-bottom: 25px;
  }
  
  .sale_section .btn-box a {
    padding: 5px 20px;
    margin-top: 25px;
  }
}


 /* heading fo */


 

 .container1 {
  padding: 20px;
  text-align: center;
  height: 100%;
 margin-top: 60px;
}
.container1 iframe{
  width: 70%;
  height: 75vh;
  border-radius: 10px;
  margin-top: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15); /* Depth and shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animations for hover effects */
}
.container1 img {

  width: 70%;
  height: 55vh;
  border-radius: 10px;
  margin-top: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15); /* Depth and shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animations for hover effects */
}

.container1 video {
  width: 70%;
  height: 55vh;
  border-radius: 10px;
  object-fit: cover; /* Ensures the video covers the area without distorting */
  margin-top: 20px;
  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15); /* Depth and shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container1 video:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 8px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.container1 img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 8px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}


.container1 h2 {
  padding-left: 5px;
  position: relative;
  font-weight: bold;
  font-size: 50px;
  ;
}
/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .container1 h2 {
    font-size: 40px;
  }
}

/* Adjust font size for smaller screens */
@media (max-width: 768px) {
  .container1 h2 {
    font-size: 35px;
  }
}

/* Adjust font size for very small screens */
@media (max-width: 480px) {
  .container1 h2 {
    font-size: 28px;
  }
}



/* Large screens (1200px and up) */


/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) {
  .container1 iframe,
  .container1 img,
  .container1 video {
    width: 80%;
    height: auto;
  }
  
  .container1 iframe {
    height: 55vh;
  }
  
  .container1 img,
  .container1 video {
    height: 45vh;
  }
}

/* Small screens (576px to 767px) */
@media (max-width: 768px) {
  
  .container1 img,
  .container1 video {
    width: 90%;
  }
  .container1 iframe{
    width: 90%;
    height: auto;
  }
  .container1 iframe {
    height: 55vh;
  }
  
  .container1 img,
  .container1 video {
    height: 40vh;
  }
  
  .container1 h2 {
    font-size: 36px;
  }
}


/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
  .container1 {
    padding: 10px;
    margin-top: 30px;
    
  }
  
  .container1 iframe,
  .container1 img,
  .container1 video {
    width: 95%;
  }
  
  .container1 iframe {
    height: 37vh;
  }
  
  .container1 img {
    height: 30vh;
  }
  .container1 video {
    height: 30vh;
    
    
  }
}
  @media (max-width: 480px) {
    .container1 {
      padding: 10px;
      margin-top: 30px;
      
    }
    

    .container1 img,
    .container1 video {
      width: 95%;
    }
    .container1 iframe{
      width: 95%;
      height: auto;
    }
    
    .container1 iframe {
      height: 28vh;
    }
    
    .container1 img {
      height: 25vh;
    }
    .container1 video {
      height: 25vh;
      
      
    }
  
  
  
  /* Reduce hover effect on mobile */
  .container1 video:hover,
  .container1 img:hover {
    transform: scale(1.01);
  }
}



.title-over-container4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  padding: 20px;
}
.title-over-container4 h2{
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Adjust for tablets and smaller devices */
@media (max-width: 768px) {
  .title-over-container4 {
    margin-top: 15px;
    padding: 15px; /* Slightly reduce padding on smaller screens */
  }

  .title-over-container4 h2 {
    font-size: 40px; /* Reduce font size */
    margin-bottom: 15px; /* Adjust bottom margin */
  }
}

/* Further adjust for mobile screens */
@media (max-width: 480px) {
  .title-over-container4 {
    margin-top: 10px;
    padding: 10px; /* Further reduce padding on small screens */
  }

  .title-over-container4 h2 {
    font-size: 30px; /* Reduce font size for mobile */
    margin-bottom: 10px; /* Reduce margin bottom */
  }
}

/* =====================================================
   Container for Boxes
===================================================== */
.container4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;
  margin: 3vw auto;
  max-width: 70vw; /* Centered and limits max width */
  box-sizing: border-box;
}

/* =====================================================
   Box Styles (Standard Box)
===================================================== */
.box {
  background-color: #fff;
  border-radius: 8px; /* Slightly more rounded corners */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Larger shadow for emphasis */
  overflow: hidden;
  width: calc(50% - 60px); /* Two-column layout with gap */
  /* Ensures boxes don't grow too large */
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  padding-top: 10px;
  padding: 0 15px 0 15px;
  
}

.box:hover {
  transform: translateY(-10px); /* More noticeable hover effect */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger hover shadow */
}

/* =====================================================
   Box Styles (Alternate Box, .box1)
===================================================== */
.box1 {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: calc(50% - 60px);
  padding: 0 15px 0 15px;
  
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;

}

/* =====================================================
   Image Styles for Boxes
===================================================== */
.box img,
.box1 img {
  width: 100%; /* Full width */
  height: 300px; /* Larger image for bigger boxes */
  /* object-fit: cover; Uncomment if you want cropping */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 20px;

}

.box1 img {
  padding: 0 4vw;
}
.box1 p{
  color: #555;
  line-height: 1.8;
  font-size: 20px; /* Slightly larger text for better readability */
}

/* =====================================================
   Box Content
===================================================== */
.box-content {
  padding: 15px; /* More padding for a spacious look */
}

.box-content h3 {
  margin: 0 0 5px;
  color: #222;
  font-size: 1.5rem; /* Larger heading */
}

.box-content p {
  color: #555;
  line-height: 1.8;
  font-size: 17px; /* Slightly larger text for better readability */
}

/* =====================================================
   Responsive Adjustments
===================================================== */

/* For screens 1024px and below (small laptops/tablets) */
@media (max-width: 1024px) {
  .container4 {
    max-width: 90vw;
  }
  .box,
  .box1 {
    width: calc(50% - 40px); /* Slightly smaller gap */
  }
  .box img,
  .box1 img {
    height: 350px;
  }
  .box-content h3 {
    font-size: 1.6rem;
  }
  .box-content p {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .container4 {
    gap: 4vw;               /* Slightly reduce gap */
    max-width: 95vw;         /* Allow container to be a bit wider */
  }
  
  .box,
  .box1 {
    width: calc(50% - 40px);  /* Reduce space subtracted */
  }
  
  .box img,
  .box1 img {
    height: 300px;           /* Reduce image height */
  }
  
  .box-content h3 {
    font-size: 1.6rem;
  }
  
  .box-content p {
    font-size: 18px;
  }
}

/* For devices between 576px and 767px (Small Tablets & Large Phones) */
/* For devices between 576px and 767px (Small Tablets & Large Phones) */
@media (max-width: 767px) {
  .container4 {
      max-width: 90vw;
      gap: 4vw;
  }

  .box,
  .box1 {
      width: calc(50% - 20px);
      padding: 10px;
  }

  .box img,
  .box1 img {
      height: 270px;
      margin-top: 0; /* Remove extra top spacing */
  }

  .box-content h3 {
      font-size: 1.3rem;
  }

  .box-content p,
  .box1 p {
      font-size: 16px;
  }
}


@media (max-width: 576px) {
  .container4 {
    max-width: 100%;
    gap: 10px;
    padding: 10px;
  }
  
  .box,
  .box1 {
    width: 90%;
    margin: 10px 0;
  }
  
  .box img,
  .box1 img {
    height: 250px;
    margin-top: 0; /* Ensure no extra space */
  }

  .box-content {
    padding: 15px;
  }

  .box-content h3 {
    font-size: 1.3rem;
  }

  .box-content p {
    font-size: 14px;
  }
}


/* For Mobile Devices (max-width: 480px) */

@media screen and (max-width: 480px) {
  .container4 {
    max-width: 95vw;
    gap: 2vw;
  }

  .box,
  .box1 {
    width: 100%;
    margin: 10px 0;
  }

  .box img,
  .box1 img {
    height: 200px;
    margin-top: 0; /* Remove any extra space */
  }

  .box-content {
    padding: 10px;
  }
}



/* qr items  */
.title-over-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10vh;
  margin-bottom: 6vh;
}

.title-over-qr h2 {
  font-size: 55px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .title-over-qr {
    margin-top: 30px;
    margin-bottom: 30px;
  
    padding: 15px; /* Slightly reduce padding on smaller screens */
  }

  .title-over-qr h2 {
    font-size: 40px; /* Reduce font size */
    margin-bottom: 15px; /* Adjust bottom margin */
  }
}

/* Further adjust for mobile screens */
@media (max-width: 480px) {
  .title-over-qr {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px; /* Further reduce padding on small screens */
  }

  .title-over-qr h2 {
    font-size: 30px; /* Reduce font size for mobile */
    margin-bottom: 10px; /* Reduce margin bottom */
  }
}


/* bg animation */

/* Add these styles to your existing CSS */
/* Update existing card-container CSS */
.rotating-bg {
  position: fixed;
  width: 300px;
  height: 300px;
  z-index: 0;
  opacity: 0;
  transition: all 0.8s ease-out;

}

.left-bg {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
}

.right-bg {
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
}

.left-bg.animate {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
  animation: rotateLeft 20s linear infinite;
}

.right-bg.animate {
  opacity: 1;
  transform: translateY(-50%) rotate(360deg);
  animation: rotateRight 20s linear infinite;
}


@keyframes rotateLeft {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotateRight {
  from { transform: translateY(-50%) rotate(360deg); }
  to { transform: translateY(-50%) rotate(0deg); }
}


/* General Card Container */
.card-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap; /* Ensures responsiveness */
  background-color: white;
}

/* Card Styles */
.card {
  flex: 1;
  max-width: 500px;
  background: white;
  border-radius: 11px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* QR Code */
.qr-code {
  width: 130px;
  height: 130px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.qr-code img {
  height: 120px;
  width: 120px;
}

/* Image Container */
.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  padding: 13px;
  gap: 10px;
}

/* Text Styling */
.description1 h2 {
  font-size: 1.5rem;
}

.description1 p {
  font-size: 16px;
  flex: 1;
}







/* Rotating Background */
.rotating-bg {
  position: fixed;
  width: 300px;
  height: 300px;
  z-index: 0;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.left-bg {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
}

.right-bg {
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
}

.left-bg.animate {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
  animation: rotateLeft 20s linear infinite;
}

.right-bg.animate {
  opacity: 1;
  transform: translateY(-50%) rotate(360deg);
  animation: rotateRight 20s linear infinite;
}

@keyframes rotateLeft {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotateRight {
  from { transform: translateY(-50%) rotate(360deg); }
  to { transform: translateY(-50%) rotate(0deg); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .card-container {
      gap: 3vw;
      max-width: 90vw;
  }

  .card {
      max-width: 450px;
  }

  .qr-code,
  .qr-code img {
      width: 100px;
      height: 100px;
  }

  .content-wrapper {
      padding: 10px;
      gap: 15px;
  }

  .description1 p {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  .card-container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .card {
      max-width: 350px;
  }

  .content-wrapper {
      flex-direction: column; /* Stack QR Code and Text */
      align-items: center;
      text-align: center;
  }

  .qr-code {
      width: 90px;
      height: 90px;
  }

  .qr-code img {
      height: 85px;
      width: 85px;
  }

  .description1 h2 {
      font-size: 1.3rem;
  }

  .description1 p {
      font-size: 14px;
  }
}

/* Mobile Devices (Max Width: 576px) */
@media (max-width: 576px) {
  .card-container {
      flex-direction: column; /* Stack Cards Vertically */
      gap: 15px;
  }

  .card {
      max-width: 90%;
  }

  .content-wrapper {
      flex-direction: column; /* Center QR Code and Text */
      align-items: center;
      text-align: center;
  }

  .qr-code {
      width: 70px;
      height: 70px;
  }

  .qr-code img {
      height: 65px;
      width: 65px;
  }

  .description1 h2 {
      font-size: 1.2rem;
  }

  .description1 p {
      font-size: 14px;
  }
}
/* Mobile Phones (max-width: 480px) */
/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .card-container {
      gap: 10px; /* Reduce gap for small screens */
  }

  .card {
      max-width: 95%;
  }

  .qr-code {
      width: 75px;
      height: 75px;
  }

  .qr-code img {
      height: 75px;
      width: 75px;
  }

  .content-wrapper {
      display: flex;
      flex-direction: row; /* Keep QR and text in a row */
      align-items: center; /* Align items in the center */
      justify-content: flex-start; /* Align content to the left */
      text-align: left; /* Ensure text is left-aligned */
      gap: 15px; /* Maintain spacing */
  }

  .description1 {
      flex: 1; /* Ensures text takes up available space */
  }

  .description1 h2 {
      font-size: 1.3rem;
      margin-bottom: 5px;
  }

  .description1 p {
      font-size: 14px;
  }
}





.arvideo {
  display: flex;
  justify-content: space-between;
  
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  margin-top: 12vh;
  margin-bottom: 5vh;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.arvideo-description {
  
  flex: 1;
  min-width: 45%;
  padding-right: 30px;
}

.arvideo-container {
  flex: 1;
  min-width: 50%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.arvideo-description h2 {
  display: flex;
  justify-content: center;
  color: #333;
  margin-bottom: 15px;
  font-size: 2.7rem;
  font-weight: bold;
}
.arvideo-description p {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.4em;
  
  
}

.meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.content {
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.features h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.features ul {
  list-style: none;
  padding-left: 20px;
}

.features li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
  font-size: 1rem;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .arvideo {
    gap: 20px;
    padding: 15px;
  }
  
  .arvideo-description {
    padding-right: 15px;
    
  }
  .arvideo-container {
    margin-top: 50px;
  }
  .arvideo-description h2 {
    font-size: 2.5rem;
  }
  
  .arvideo-description p {
    font-size: 1.3rem;
  }
  
  .features h3 {
    font-size: 1.8rem;
  }
  
  .features li {
    font-size: 1.2rem;
  }
}

/* ========================================= */
/* Responsive Adjustments for screens between 576px and 767px */
/* ========================================= */
@media (min-width: 576px) and (max-width: 767px) {
  .arvideo {
    flex-direction: column;
    gap: 20px;
    margin-top: 8vh;
    margin-bottom: 5vh;
  }
  
  .arvideo-description,
  .arvideo-container {
    min-width: 100%;
    padding-right: 0;
  }
  
  .arvideo-description h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .arvideo-description p {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .features h3 {
    font-size: 1.5rem;
  }
  
  .features li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .arvideo {
      flex-direction: column;  /* Stack the items vertically */
      gap: 30px;
      padding: 15px;
  }
  
  .arvideo-description {
      padding-right: 0;  /* Remove the right padding on smaller screens */
      min-width: 100%;  /* Make the description take full width */
  }
  
  .arvideo-container {
      min-width: 100%;  /* Ensure the video container takes full width */
  }
  
  .video-wrapper {
      padding-bottom: 56.25%;  /* Keep the aspect ratio the same */
  }

  .arvideo-description h2 {
    font-size: 2rem;  /* Reduce the font size for the heading */
  }

  .arvideo-description p {
    font-size: 1.2rem;  /* Adjust the paragraph font size */
    padding-left: 17px
  }

  .features h3 {
    font-size: 1.8rem;  /* Adjust font size for smaller screens */
  }

  .features li {
    font-size: 1.1rem;  /* Adjust font size for smaller screens */
  }
}

/* For very small screens like mobile (max-width: 480px) */
@media (max-width: 480px) {
  .arvideo {
      padding: 10px;  /* Reduce padding */
      margin-top: 3vh;
  }
  
  .arvideo-description {
   

      padding-right: 0;
      min-width: 100%;
  }
  
  .arvideo-container {
      min-width: 100%;
  }
  
  .video-wrapper {
      padding-bottom: 56.25%;  /* Keep the aspect ratio intact */
  }

  .arvideo-description h2 {
    font-size: 1.8rem;  /* Reduce font size even further */
  }

  .arvideo-description p {
    font-size: 1rem;  /* Adjust font size for mobile screens */
    
  }

  .features h3 {
    font-size: 1.6rem;  /* Adjust font size for mobile screens */
    padding-left: 10px;
  }

  .features li {
    font-size: 1rem;  /* Adjust font size for mobile screens */
    line-height: 1;
  }
}

/* 2*2 box for other services   */

.title-over-container7 h2 {
  font-size: 55px;
  font-weight: bold;
}

.title-over-container7 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8vh;
  margin-bottom: 5vh;
}
@media (max-width: 768px) {
  .title-over-container7 {
    margin-top: 15px;
    padding: 15px; /* Slightly reduce padding on smaller screens */
  }

  .title-over-container7 h2 {
    font-size: 40px; /* Reduce font size */
    margin-bottom: 15px; /* Adjust bottom margin */
  }
}

/* Further adjust for mobile screens */
@media (max-width: 480px) {
  title-over-container7 {
    margin-top: 10px;
    padding: 10px; /* Further reduce padding on small screens */
  }

  title-over-container7 h2 {
    font-size: 30px; /* Reduce font size for mobile */
    margin-bottom: 10px; /* Reduce margin bottom */
  }
}
/* Container for the Pricing Section */
/* --- Existing CSS for the pricing cards --- */
/* === Existing Pricing Card CSS (unchanged) === */
/* === Existing Pricing Card CSS (unchanged) === */
/* .container7 {
  max-width: 100%;
  margin: 10px auto;
  padding: 0 20px;
  box-sizing: border-box;
 
} */

/* (The original pricing-grid rules are not used in the carousel layout.) */
/* Base Container */
.parent-container {

  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* Main Container */
.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  gap: 20px;
  position: relative;
}

/* Contact Form Container */
.contact-container {
  flex: 1;
  width: 50%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

h2 {
  color: #000000;
  font-weight: bold;
  font-size: 2.5rem;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  font-weight: 500;
  color: #2c3e50;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
}

/* Service Options Grid */
.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.service-option {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 50px;
}

.service-option:hover {
  background: #f0f0f0;
}

.service-option.selected {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* Submit Button */
button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

/* Video Container */
.video-container {
  flex: 1;
  width: 50%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Tablet (Move Video to Bottom) */
/* Tablet (Full Visibility Adjustments) */
@media (max-width: 768px) {
  .parent-container{
      height: auto; /* Allow content to expand beyond viewport */
      padding: 20px 0; /* Add some vertical spacing */
  }

  .main-container {
      flex-direction: column;
      width: 100%;
      max-width: 600px; /* Constrain width for better readability */
      padding: 20px;
      margin: 0 auto; /* Center container */
      box-sizing: border-box;
  }

  .contact-container {
      width: 100%;
      padding: 20px;
      margin-bottom: 20px; /* Space between form and video */
  }

  .video-container {
      width: 100%;
      height: auto; /* Let height adjust naturally */
      min-height: 300px; /* Ensure minimum visibility */
      order: 2;
  }

  .video-container video {
      object-fit: contain; /* Show full video without cropping */
      border-radius: 8px;
  }

  .service-options {
      grid-template-columns: repeat(2, 1fr);
  }

  /* Improve form element spacing */
  input, textarea {
      padding: 10px;
      font-size: 15px;
  }
  
  button {
      padding: 12px;
  }
}
/* Mobile (Make Video Background) */
@media (max-width: 576px) {
  .parent-container{
      padding: 15px;
      background: white;
      height: auto;
      min-height: 100vh;
  }

  .main-container {
      width: 100%;
      padding: 15px;
      margin: 0;
      background: transparent;
      box-shadow: none;
  }

  .contact-container {
      width: 100%;
      padding: 20px;
      background: white;
      backdrop-filter: blur(10px);
      margin-bottom: 20px;
  }

  .video-container {
      width: 100%;
      height: 200px;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
  }

  .video-container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }

  .service-options {
      grid-template-columns: 1fr;
      gap: 8px;
  }

  .service-option {
      padding: 10px;
      min-height: 40px;
  }

  input, textarea, button {
      font-size: 15px;
  }

  h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
  }
}














.pricing-card {
    width: 100px;  /* fixed true width */
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
  }
  

/* Color stripes for different pricing plans */
.essential::before { background: #03A9F4; }
.plus::before { background: #03A9F4; }
.enterprise::before { background: #03A9F4; }
.starter::before { background: #03A9F4; }
.business::before { background: #03A9F4; }
.premium::before { background: #03A9F4; }

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .icon {
  opacity: 1;
}

.plan-name {
  font-size: 2.1rem;
  font-weight: 550;
  margin-bottom: 15px;
  color: #333;
}

.price span {
  font-size: 2rem;
  color: #666;
}

.description3 {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
  font-size: 1.2rem;
  min-height: 60px;
}

.cta-button {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
  color: white;
  background: #03A9F4;
}

.cta-button:hover {
  background: #0288d1;
  transform: scale(1.05);
}

.demo-text {
  color: #666;
  font-size: 0.9rem;
}



/* === Carousel Specific CSS === */
.carousel-container {
  position: relative;
  max-width: 110%;
  margin: 20px auto;
  overflow: visible;
  box-sizing: border-box;
  padding: 0 20px;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

/* Base slide styles */
.carousel-slide {
  flex: 0 0 27%;
  box-sizing: border-box;
  padding: 10px;
  transition: all 0.3s ease;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: clamp(1rem, 2vw, 2rem);
  padding: clamp(8px, 1.5vw, 15px);
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .carousel-slide {
    flex: 0 0 27%;
  }
  
  .carousel-container {
    padding: 0 40px;
  }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
  .carousel-slide {
    flex: 0 0 33.333%;
  }
}

/* Medium-small screens (768px to 991px) */
@media (max-width: 991px) {
  .carousel-slide {
    flex: 0 0 40%;
  }
  
  .carousel-container {
    padding: 0 30px;
  }
}

/* Small screens (576px to 767px) */
@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
  
  .carousel-container {
    padding: 0 25px;
    margin: 15px auto;
  }
  
  .carousel-btn {
    width: clamp(35px, 4vw, 40px);
    height: clamp(35px, 4vw, 40px);
  }
}

/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
  .carousel-slide {
    flex: 0 0 85%;
  }
  
  .carousel-container {
    padding: 0 20px;
    margin: 10px auto;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    padding: 8px;
  }
  
  .carousel-btn.prev {
    left: 5px;
  }
  
  .carousel-btn.next {
    right: 5px;
  }
}








.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}


.footer {
  position: relative;
  padding-top: 20px;
  
  border-top: 1px solid #eee;
  width: 100%;
}

.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.footer-container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  max-width: calc(25% - 20px);

  padding: 0;
}

.footer-section h3 {
  color: #333;
  font-size: 1.7rem;
  margin: 0 0 20px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  width: 100%;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #007bff;
}

.footer-section p {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
}

.footer-section .company-name p {
  color: #666;
  font-size: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0 0 12px 0;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 17px;
  display: inline-block;
}

.footer-links a:hover {
  color: #007bff;
}

.contact-info {
  font-size: 20px;
  color: #666;
}

.contact-info a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-info a:hover {
  color: #007bff;
}

.email-form {
  display: flex;
  gap: 10px;
  padding-top: 6vh;
  width: 100%;
}

.email-input {

  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.email-input:focus {
  border-color: #007bff;
}

.send-button {
  width: 50%;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.send-button:hover {
  background: #0056b3;
}

.footer-bottom {
  margin: 40px 0 0 0;
  padding: 20px 0 0 0;
  margin-bottom: 15px;
  border-top: 1px solid #eee;
  text-align: center;
  width: 100%;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-bottom a:hover {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .footer-container {
    max-width: 90vw;
  }

  .footer-section {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .footer-section h3 {
    font-size: 1.75rem;
    margin: 0 0 15px 0;
  }

  .footer-section p,
  .footer-links a,
  .contact-info {
    font-size: 18px;
  }

  .footer-section .company-name p {
    font-size: 22px;
  }

  .email-form {
    padding-top: 4vh;
  }

  .footer {
    padding: 40px 0 20px;
    margin-top: 5vh;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    max-width: 90vw;
  }

  .footer-section {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
  }

  .email-form {
    flex-direction: column;
    align-items: stretch;
  }

  .send-button {
    width: 100%;
    font-size: 16px;
    padding: 10px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .footer-container {
    max-width: 95vw;
    padding: 0 15px;
  }

  .footer-section {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .footer-section h3 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
  }

  .footer-section h3::after {
    width: 40px;
  }

  .footer-section p,
  .footer-links a,
  .contact-info {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer {
    padding: 30px 0 15px;
    margin-top: 4vh;
  }
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .footer-section {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .footer-section h3 {
    font-size: 1.25rem;
  }

  .footer-section p {
    font-size: 16px;
  }

  .email-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-bottom a {
    font-size: 0.8rem;
  }
}