@import 'utilities.css';
:root {
  --primary: rgb(29, 221, 189);
  /* --primary: #FFD700; */
  --bgDark: rgb(12, 12, 12);
  --white: rgb(250, 250, 250);
  --secondary: rgb(0, 59, 50);
  --bgLight: rgb(190, 181, 181);
  /* --primary: #00f2ea; Bright cyan/teal - futuristic accent */
  --primary-dark: #00a8a3; /* Darker shade for hover */
  /* --bgDark: #1a1a2e;  Deep dark blue/purple */
  /* --bgLight: #2a2a4e; Slightly lighter dark shade */
  --textLight: #e0e0fc; /* Light lavender/white text */
  --textDark: #1a1a2e;  /* Text for light backgrounds */
  --white: #ffffff;
  --Cream: #f5f5f5; /* Keeping your cream if needed */
  --shadow-color: rgba(0, 242, 234, 0.3); /* Shadow matching primary */
  --card-bg: rgba(42, 42, 78, 0.3); /* Semi-transparent dark background */
  --card-blur: .1px; /* Blur effect */
  --border-light: rgba(224, 224, 252, 0.2); /* Subtle border */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean sans-serif */
}
.container {
  background: light gray;
  background-image: none;
  background-size: 2.5rem 2.5rem;
  border-radius: 2%;
  box-shadow: .2rem .2rem .3rem .2rem #646363ea;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: .1rem;
}
section {
  padding: 1rem;
}

/* header  */
header {
  background-color: var(--bgDark);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 73% 96%, 0 100%);
  font-size: 1.5rem;
  position: relative;
  justify-content: space-between;
  align-items: normal;
  height: 6rem;
  padding: 1rem;
  
}
header nav .left a {
  color: var(--white);
  text-decoration: none;
  margin-right: 2rem;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
header nav .left a:hover {
  color: var(--primary);
}
header nav .self {
  margin-left: 1%;
  display: none;
  transform: rotate(15deg);
} 

/* side bar  */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* .nav {
  border-top: .1rem solid var(--white);
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  size: auto;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0.2rem 0.2rem 0.4rem 0.4rem lightgrey;
} */
nav .mainMenu{
  display: flex;
  list-style: none;
}
nav .mainMenu li a {
  display: inline-block;
  padding: .1rem;
  text-decoration: none;
  color: var(--white);
  font-size: 1.1rem;
  margin: .5rem;
}
nav .mainMenu li a:hover{
  background-color: var(--secondary);
  transform: rotate(.1deg);
  cursor: pointer;
  font-style: italic;
  text-transform: inherit;
  text-decoration: underline solid var(--secondary);
}
nav .openMenu {
  font-size: 2rem;
  margin: .5rem;
  display: none;
  cursor: pointer;
  color: var(--primary);
}
nav .closeMenu{
  color: var(--primary);
}
nav .mainMenu .closeMenu , .icons i {
  font-size: 2rem;
  display: none;
  cursor: pointer;
}
.bxl-facebook, .bxl-linkedin, .bxl-youtube, .bxl-tiktok, .bxl-twitter{
  height: 1rem;
  width: 1rem;
  border-radius: 10%;
  color: var(--white);
  padding: .5rem;
  border-top: .1rem solid var(--white);
  margin: .2rem;
}

.bxl-facebook:hover {color: var(--blues)}

.btn-primary {
  background-color: transparent;
  color: var(--bgDark);
  border: 1px solid var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  margin-left: 65%;
 padding-bottom: 1rem;
  
}

.btn-primary:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-primary a {
  color: var(--bgDark);
  text-decoration: none;
  
}

.btn-primary:hover a {
  color: var(--primary);
}

@media(max-width: 768px){
  header{
    height: 21vh;
    /* margin-top: 1rem; */
    width: 100%;
  }
  nav .mainMenu{
     height: 18vh;
     position: fixed;
     top: 0;
     right: 0;
     left: 0;
     z-index: 5000;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background: var(--bgDark);
     transition: top 1s ease;
     display: none;
     font-size: .9rem;
  }
  nav .mainMenu .closeMenu {
     display: block;
     position: absolute;
     top: 20px;
     right: 20px;
  }
  nav .openMenu{
     display: block;
  }
  nav .mainMenu li a:hover{
     background: none;
     color: var(--white);
     font-size: 1.1rem;
  }
  .icons i {
     display: inline-block;
  }
  .btn-primary{
    margin-left: 15%;
    margin-right: 1rem;
    width: 9rem;
  }
  header nav .self {
    display: inline-block;
    margin-left: 2%;
    transition: transform 0.3s ease-in-out;
    
  }
  header nav .self:hover{
      z-index: 2;
      transform: scale(1.5); /* Adjust zoom level */
   } 

  }
  


/* home  */
section.home{
  display: flex;
  flex-wrap: wrap254729;
  position: relative;
  background-color: var(--bgDark);
}
.home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left, .right {
  flex: 1;
}
.left {
  display: flex;
  justify-content: center;
}
.right {
  padding: 20px;
}
.hero .left img {
  max-width: 100%;
  height: auto;
  transform: rotate(1deg);
  border-radius: 1%;
}
.hero .right {
  color: var(--white);
  margin-top: -1rem;
  padding: 1rem;
  /* flex: 1 0 50%;
  right: 50%; */
  
}
.hero .right h6 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.hero .right h1 {
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1.2;
  /* margin-bottom: 2rem; */
}
.hero .right h1 span {
  color: var(--primary);
}
.hero .right p {
  line-height: 1.9;
  margin-bottom: .2rem;
  font-size: 1.2rem;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  margin: .5rem;
  width: 100%;
  word-wrap: normal;
}

.items-centre {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  word-wrap: normal;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-right {
  justify-content: right;
  flex-wrap: wrap;
}
.flex-1 {
  flex: .5;
  padding: .5rem;
  flex-wrap: wrap;
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
}
@media(max-width: 768px){
  .hero .left img{
    transition: transform 0.3s ease-in-out;
    /* display: none; */
  }
  .hero .left img:hover{
      z-index: 2;
      transform: scale(2); /* Adjust zoom level */
   } 
  }
/* about */
section .about {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
  
}
section.about img {
  border-radius: 5%;
  margin-right: auto;
  max-width: 100%; /* Ensure the image is responsive */
  height: auto;
}
section.about h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
}
section.about h1 span {
  color: var(--primary);
}
section.about h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
section.about h4 {
  font-size: 1rem;
}
section.about p {
  margin: auto;
  font-size: 1rem; /* Adjusted for better readability */
  color: var(--bgDark);
  line-height: 1.9rem;
  margin-bottom: 2rem;
  word-wrap: break-word; /* Ensures long words break properly */
  overflow-wrap: break-word; /* Ensures long words break properly */
}
section.about ul, li {
  margin: auto;
  font-size: .9rem;
  list-style: none;
  word-wrap: break-word; /* Ensures long words break properly */
  overflow-wrap: break-word; /* Ensures long words break properly */
  text-decoration: none;
  color: var(--bgDark);
}
section.about .socials {
  display: flex;
}
section.about .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  margin-right: 0.8rem;
  border-radius: 50%;
}
section.about .socials a:hover {
  background: var(--primary);
}
@media(max-width: 768px) {
  section.about{
    max-width: 100%;
    overflow-x: auto;
    
  }
  section.about h4 {
    width: 90%;
    font-size: 1rem;
    word-wrap: normal;
    overflow: hidden;
    flex-wrap: wrap;
  }
  section.about img {
    width: 100%;
    border-radius: 10%;
  }
  section.about p {
    width: 70%;
    font-size: 1rem;
    word-wrap: normal;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    padding: auto;
  }
  section.about ul, li {
    font-size: .9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  section.about .socials{
    width: 85%;
  }
}
  
/* services  */
section.services {
  background: rgb(17, 17, 17);
  -moz-fit-content: fit-content;
}
.services-head {
  color: rgb(l0, 9, 9);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 0.5rem;
  color: var(--primary);
  font-size: 3rem;
  flex: 1 0 50%;
  left: 50%;
}
.services-head + p {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
  font-size: 1.9rem;
  margin: 1rem;
  padding: 1rem;
}
.film-item img {
  width: 35px;
  height: 30px;
  background: white;
}
.film-item img:hover {
  background-color: var(--primary);
  
}
.film-grid {
  display: flex; /* Use flexbox for responsive layout */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  grid-gap: 10px; /* Maintain gap between items */
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  animation: blink 43s steps(2) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; } 
  50% { opacity: 0.9; }
}
  /* animation: fadein 3s steps(1) infinite;
  
}
@keyframes fadein {
  0% { transform: translateX(0);} 
  100% {transform: translateX(calc(-50%));}
  }  */

section.services .film-item {
  flex: 1 0 25%; /* Set minimum and preferred size to 33.33% */
  background: var(--white);
  padding: 3rem 3rem;
  border-radius: 3rem;
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

section.services .film-item img {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color); /* Assuming a color variable is defined */
  size: 1rem 0.5rem;
}
/* Remove unused animations */

section.services .film-grid .film-item h2 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
section.services .film-grid .film-grid p {
  font-family: 'Lato', sans-serif;
  color: var(--secondary);
  line-height: 2rem;
}
section.services .film-grid .film-item-details {
  display: none;
  padding: 10px;
}
section.services .film-grid .film-item-details.show {
  display: hide;
}
section.services .film-grid .film-item:hover {
  background: var(--primary);
}
section.services .film-grid .film-item:hover h2 {
  color: var(--secondary);
}
section.services .film-grid .film-item:hover p {
  color: var(--secondary);
}
@media(max-width: 768px){
  .services{
   max-height: 750px;
   overflow-y: auto;
  }
  
}
/* form  */
form {
  text-align: cemtre;
  padding: 1rem;
  border: 2rem;
  background-color: var(--primary);
  box-sizing: border-box;
  box-shadow: 2rem;
  text-decoration-color: var(--bgDark);
  size: auto;
  margin:auto;

}
.h3-container{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 73% 94%, 0 100%);
  background-image: linear-gradient(45deg, var(--white), var(--primary), var(--bgLight), var(--secondary), var(--primary), var(--white), var(--bgDark), var(--primary), var(--bgLight), var(--secondary), var(--primary),var(--white), var(--primary), var(--bgLight), var(--secondary),  var(--white), var(--bgLight), var(--white), var(--white), var(--primary), var(--bgLight), var(--secondary), var(--primary), var(--white), var(--bgDark), var(--primary), var(--bgLight), var(--secondary), var(--primary),var(--white), var(--primary), var(--bgLight), var(--secondary),  var(--white), var(--bgLight), var(--white), var(--primary), var(--bgLight), var(--secondary), var(--primary), var(--white), var(--bgDark), var(--primary), var(--bgLight), var(--secondary), var(--primary),var(--white), var(--primary), var(--bgLight), var(--secondary),  var(--white), var(--bgLight),var(--white), var(--primary), var(--bgLight), var(--secondary), var(--primary), var(--white), var(--bgDark), var(--primary), var(--bgLight), var(--secondary), var(--primary),var(--white), var(--primary), var(--bgLight), var(--secondary),  var(--white), var(--bgLight),var(--primary),var(--secondary), var(--white));
  background-size: 200% 100%;
  animation: gradientAnimation 15s linear infinite;
  animation-direction: alternate-reverse;

}
@keyframes gradientAnimation {
  0% {
    background-position: 0;
  }
  to {
    background-position: 100%;
  }
}
 
 .h3-container { 
 
  font-size: 1.2rem;
  padding: 20px;
  border: 1rem;
  text-align: center;
  border: 1rem;
  color: var(--bgDark);
  text-shadow: 2rem;
}
  
.h3-container:hover {
  text-transform: var(--bgLight);
}
form h4 {
  background-color: var(--bgDark);
  font-size: 1rem;
  padding: 6px;
  border: 1rem;
  text-align: center;
  color: var(--primary);
}

 /* Target the textarea element with id "message" */
 #message {
  /* Set width to 100% for full width within its container */
  width: 100%;

  /* Adjust height to fit the size of the h4 title */
  height: match-height(sibling h4);  /* Requires browser support for `match-height` function */
}

/* Fallback for browsers without `match-height` function */
#message {
  height: 100px;  /* Adjust as needed for your design */
}
.btn-light {
  align-self: center;
  font-size: 1rem;
  border: 2rem solid var(--white);
  /* border-color: var(--white); */
  padding: 2rem;
  background-color: var(--bgDark);
  align-items: right;
  color: var(--white);
  size: 2rem;

}

.btn-light:hover {
  background-color: var(--primary);
  border-color: var(--bgDark);
  color: var(--secondary);

}
.button-container {
  display: flex;
  justify-content: space-between;
}


/* .back-to-top{
  display: flex;
  justify-content: center;
}
.btn-top {
  background: transparent;
  background-color: var(--white);
  color: var(--bgDark);
}
.btn-top:hover{
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--white);
} */
section.footer{
  background-color: var(--bgDark);
  align-items: center;
  width: 100%;

}
footer{ 
  font-size: 1.2rem;
  color: var(--white);
  padding: 0;
  margin: 0;
  border: .1rem solid var(--bgLight);
  box-shadow: 1rem;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: auto;
  align-items: center;
  background-color: var(--bgDark);
}

.footer .hero h3{
  color: var(--primary);
}
.footer .hero {
  /* padding-top: 2rem; */
  /* color: var(--bgDark); */
  /* padding-bottom: 3rem; */
  background-color: var(--bgDark);
  /* display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative; 
  justify-content: space-between; */
}
footer ul {
  color: var(--white);
  padding: .15rem;
  list-style: none;
  margin-bottom: 2rem;
  text-decoration: none;
  font-size: 1.2rem;
}
footer ul a{
  color: var(--bgLight);
  padding: 1rem;
  list-style: none;
  margin-bottom: 3rem;
  text-decoration: none;
  font-size: 1.1rem;
}
footer ul a:hover{
  color: var(--primary);
  
}
footer .justify-left{
  padding: 1rem;
  align-self: right;
  font-size: 1.2rem;
  color: var(--primary);
}
footer .nav{
  margin: 1rem;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 50;
  color: var(--bgDark);
}
/* --- Define Your Variables (Example) --- */

/* --- General Body/Font (Optional - Adjust to your site) --- */

/* --- Section Titles --- */
h4 {
  color: var(--bgDark);
  font-size: clamp(1.5rem, 4vw, 2.2rem); /* Responsive font size */
  text-align: center;
  margin: 2em 1em 1em 1em; /* More vertical space */
  font-weight: 600;
  letter-spacing: 1px;
}

h4 span {
  color: var(--primary);
  font-weight: 700; /* Make span stand out */
}

/* --- Base Carousel Container Styling --- */
.carousel-container,
.carousel-container1 {
  width: 90%; /* Control overall width */
  max-width: 1400px; /* Max width for very large screens */
  margin: 2em auto; /* Center container and add vertical space */
  position: relative;
  /* Optional: Add padding if you want space around the scrolling area */
  /* padding: 0 20px; */
  /* box-sizing: border-box; */
}

/* --- Base Carousel Scrolling Area Styling --- */
.carousel,
.carousel1 {
  display: flex;
  overflow-x: auto; /* Allows scrolling (auto hides scrollbar if not needed) */
  scroll-behavior: smooth; /* Smooth scrolling for JS and manual */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scroll-snap-type: x mandatory; /* Snap items into view */
  gap: 20px; /* Space between items */
  padding: 10px 0; /* Add some vertical padding */
  margin: 0; /* Reset default margins */

  /* Hide scrollbar cross-browser */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.carousel::-webkit-scrollbar,
.carousel1::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

/* --- Base Carousel Item Styling --- */
.carousel-item,
.carousel-item1 {
  flex: 0 0 auto; /* Prevent shrinking/growing */
  width: clamp(85%, 30vw, 380px); /* Responsive width: min 85%, preferred 30vw, max 380px */
  position: relative;
  overflow: hidden; /* Contain image and info overlay */
  border-radius: 12px; /* Modern rounded corners */
  background-color: var(--bgLight); /* Fallback background */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px var(--shadow-color); /* Depth and glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start; /* Align item to start when snapping */
  aspect-ratio: 4 / 3; /* Maintain a consistent aspect ratio */
}

.carousel-item:hover,
.carousel-item1:hover {
  transform: translateY(-5px); /* Subtle lift effect */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 4px 10px var(--shadow-color);
}

/* --- Carousel Image Styling --- */
.carousel-item .img,
.carousel-item1 .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area, crop if needed */
  object-position: center; /* Center the image */
  border-radius: 12px; /* Match item radius */
  transition: transform 0.4s ease, filter 0.4s ease;
}

.carousel-item:hover .img,
.carousel-item1:hover .img {
  transform: scale(1.05); /* Slightly zoom image on hover */
  filter: brightness(0.9); /* Slightly dim image to highlight text */
}

/* --- Base Carousel Info Overlay Styling (Glassmorphism) --- */
.carousel-info,
.carousel-info1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background: var(--card-bg); /* Semi-transparent background */
  backdrop-filter: blur(var(--card-blur)); /* Blur effect */
  -webkit-backdrop-filter: blur(var(--card-blur)); /* Safari */
  border-top: 1px solid var(--border-light); /* Subtle top border */
  color: var(--textLight);
  border-bottom-left-radius: 12px; /* Match item corners */
  border-bottom-right-radius: 12px;
  transition: background 0.3s ease;
}

/* --- Text inside Info Overlay --- */
.carousel-info h6,
.carousel-info1 h6 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Responsive title size */
  margin: 0 0 5px 0; /* Space below title */
  font-weight: 600;
  color: var(--white); /* Ensure title stands out */
  line-height: 1.3;
}

.carousel-info .subtitle, /* Targeting the corrected <p> tag */
.carousel-info1 .subtitle {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem); /* Responsive subtitle size */
  margin: 0 0 12px 0; /* Space below subtitle */
  font-weight: 400;
  opacity: 0.85; /* Slightly less prominent */
  line-height: 1.4;
}

/* --- Read More Button Styling --- */
.carousel-info .read-more,
.carousel-info1 .read-more {
  display: inline-block; /* Allows padding and centering if needed */
  background-color: var(--primary);
  color: var(--bgDark); /* Dark text on bright button */
  text-decoration: none;
  padding: 8px 18px;
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  font-weight: 600;
  border-radius: 20px; /* Pill shape */
  border: none;
  margin-top: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-info .read-more:hover,
.carousel-info .read-more:focus,
.carousel-info1 .read-more:hover,
.carousel-info1 .read-more:focus {
  /* background-color: var(--primary-dark); */
  color: var(--bgDark);
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  outline: none; /* Remove default focus outline if desired */
}
:root {
  --primary: rgb(29, 221, 189);
  --primary-dark: rgb(20, 154, 132);
  --bgDark: rgb(12, 12, 12);
  --white: rgb(250, 250, 250);
  --secondary: rgb(0, 59, 50);
  --bgLight: rgb(190, 181, 181);
  --textLight: #e0e0fc;
  --shadow-color: rgba(29, 221, 189, 0.2);
  --card-bg: rgba(42, 42, 78, 0.2);
  --border-light: rgba(224, 224, 252, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pricing-section {
    font-family: 'Poppins', sans-serif;
     background-color: var(--bgDark);
    color: var(--white);
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    min-height: 100vh;
    padding: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container {
 
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--bgLight);
    margin-bottom: 3rem;
}

/* Toggle Switch */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--card-bg);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border-light);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.pricing-card.highlighted {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background-color: var(--primary);
    color: var(--bgDark);
    padding: 5px 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-container {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1rem;
    color: var(--bgLight);
    display: block;
    margin-bottom: 0.25rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.current-price .price-period {
    font-size: 1rem;
    font-weight: 300;
    color: var(--bgLight);
}

.custom-price {
    font-size: 2rem;
    line-height: 1.5; /* To match height of other price sections */
}


.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes button to the bottom */
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--textLight);
}

.features-list li.disabled {
    color: rgba(224, 224, 252, 0.4);
    text-decoration: line-through;
}

.features-list li.blank-feature {
    height: 1.5rem; /* Placeholder for alignment */
    margin-bottom: 1rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--bgDark);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.pricing-card:not(.highlighted) .cta-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-card:not(.highlighted) .cta-button:hover {
    background-color: var(--primary);
    color: var(--bgDark);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-card.highlighted {
        transform: none; /* Disable scaling on smaller screens to prevent layout issues */
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}
/* --- Responsiveness Adjustments --- */

/* Medium Screens (e.g., Tablets) */
@media (min-width: 768px) {
  .carousel-item,
  .carousel-item1 {
      /* Show roughly 2-3 items */
       width: clamp(45%, 25vw, 380px); /* Adjust width range */
       aspect-ratio: 5 / 4; /* Can adjust aspect ratio */
  }
}

/* Large Screens (e.g., Desktops) */
@media (min-width: 1024px) {
  .carousel-item,
  .carousel-item1 {
      /* Show roughly 3-4 items */
       width: clamp(30%, 20vw, 380px); /* Adjust width range */
       aspect-ratio: 16 / 10; /* Can adjust aspect ratio */
  }

  .carousel-info h6,
  .carousel-info1 h6 {
       margin-bottom: 8px;
  }
   .carousel-info .subtitle,
  .carousel-info1 .subtitle {
       margin-bottom: 15px;
  }
}

/* --- Specific Overrides (If Needed) --- */
/* If carousel1 needs slightly different item widths, override here */

@media (min-width: 768px) {
  .carousel-item1 {
      width: clamp(48%, 28vw, 400px);
  }
}

*/
/* @keyframes fadein {
0%, 16.7% {opacity: 0;}
16.7%, 33.3% {opacity: 1;}
66.7%, 83.3% {opacity: 1;}
83.3%, 100% {opacity: 0;}
  } */
/* @keyframes {
 0%, 100% {opacity: 0;}
 16.7%, 83.3% {opacity:1;}
} */
  
/* 
  @keyframes fade-in {
   0% { opacity: 0;}
  16.% {opacity: 1;}
  83.333% {opacity: 1;}
  100% {opacity: 0;} 
  } */

/* 
@keyframes film-roll {
  from { transform: translateX(0%);}
  to { transform: translateX(-100%);}
  } */

  /* section.services .film-grid .film-item {
animation: fadein 6s infinite; */

  /* transition: all 3s ease-in-out; */
/* animation: film-roll 20s ease-in-out 0s infinite alternate-reverse both;
} */
/* section.services .film-grid .film-item:nth-child(2) {
    animation-delay: 1s;
  }
  section.services .film-grid .film-item:nth-child(3) {
    animation-delay: 2s;
  }
  section.services .film-grid .film-item:nth-child(4) {
    animation-delay: 3s;
  }
  section.services .film-grid .film-item:nth-child(5) {
    animation-delay: 4s;
  }
  section.services .film-grid .film-item:nth-child(6) {
    animation-delay: 5s;
  } */