* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    color: white;
    background: #eaeaea;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


.main {
    position: relative; /* Set position relative for pseudo-element */
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: 
        linear-gradient(7deg, rgba(0, 0, 0, 0.8500) 10.00%, rgba(0, 0, 0, 0.8465) 17.25%, rgba(0, 0, 0, 0.8361) 24.50%, rgba(0, 0, 0, 0.8187) 31.75%, rgba(0, 0, 0, 0.7944) 39.00%, rgba(0, 0, 0, 0.7632) 46.25%, rgba(0, 0, 0, 0.7250) 53.50%, rgba(0, 0, 0, 0.6868) 60.75%, rgba(0, 0, 0, 0.6556) 68.00%, rgba(0, 0, 0, 0.6312) 75.25%, rgba(0, 0, 0, 0.6139) 82.50%, rgba(0, 0, 0, 0.6035) 89.75%, rgba(0, 0, 0, 0.6000) 97.00%), 
        url('./image/bg111.jpeg'); /* Ensure this path is correct */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Don't repeat the image */
    opacity: 0.9; /* Adjust opacity if needed */
}





/* Left Slant */
.main::before {
    content: ""; /* Required for pseudo-elements */
    position: absolute; /* Position absolutely relative to .main */
    bottom: 0; /* Align it to the bottom */
    left: 0; /* Align it to the left */
    width: 30%; /* Full width for the left half */
    height: 350px; /* Height of the slant */
    background: linear-gradient(45deg, #b20a0a, #fc151572);    clip-path: polygon(0 100%, 0 50%, 100% 100%); /* Slant shape with left incline */
    z-index: 0; /* Ensure it's below other content */
}

/* Right Slant */
.main::after {
    content: ""; /* Required for pseudo-elements */
    position: absolute; /* Position absolutely relative to .main */
    bottom: 0; /* Align it to the bottom */
    right: 0; /* Align it to the right */
    width: 70%; /* Full width for the right half */
    height: 200px; /* Height of the slant */
    background: linear-gradient(45deg, #b20a0a, #fc151572);
        clip-path: polygon(100% 100%, 100% 50%, 0 100%); /* Slant shape with right incline */
    z-index: 0; /* Ensure it's below other content */
}
/* Media Queries for Responsive Design */
@media (max-width: 720px) {
    .main::before {
        width: 40%; /* Adjust width for medium screens */
        height: 250px; /* Adjust height for medium screens */
    }
    .main::after {
        width: 60%; /* Adjust width for medium screens */
        height: 150px; /* Adjust height for medium screens */
    }
}

@media (max-width: 510px) {
    .main::before {
        width: 50%; /* Further adjust width for smaller screens */
        height: 200px; /* Further adjust height for smaller screens */
    }
    .main::after {
        width: 50%; /* Further adjust width for smaller screens */
        height: 100px; /* Further adjust height for smaller screens */
    }
}

@media (max-width: 370px) {
    .main::before {
        width: 60%; /* Maximum width for very small screens */
        height: 150px; /* Maximum height for very small screens */
    }
    .main::after {
        width: 40%; /* Maximum width for very small screens */
        height: 80px; /* Maximum height for very small screens */
    }
}
























header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #0000004f, #0000004f, #0000004f); /* Dark to lighter shades */
}

.logo {
    color: white;
    font-family: 'Lucida Sans';
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 8rem;
    font-size: 1.8rem;
    

}
header .logo {
    color: white;
    text-decoration: none; /* Ensure no underline specifically for logo */
}

#bar {
    display: none;
}

.navbars ul {
    margin-right: 8rem;
    display: flex;
}

.navbars ul li {
    margin-top: 1rem;
    margin-left: 3rem;
}
.navbars ul li a {
    color: white;
    letter-spacing: 1px;
    font-size: 19px;
    text-decoration: none;      /* Remove underline from links */

}

.navbars ul li a::after {
    content: "";
    display: block;
    background: rgb(286, 126, 126);
    width: 0%;
    height: 2px;
    transition: width 0.3s ease;
}

.navbars ul li a:hover::after {
    animation: nav linear 0.3s;
    width: 100%;
}

@keyframes nav {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* responsive navbar */
@media (max-width: 1168px) {
    .logo {
        margin-left: 2rem;
    }

    .navbars ul {
        margin-right: 2rem;
    }
}
@media (max-width: 900px) {
    #bar {
        font-size: 1.7rem;
        cursor: pointer;
        display: block;
        padding: 15px;
        z-index: 10001;
    }

    .logo {
        z-index: 10001;
        
    }

    header .navbars {
        height: 0px;
        width: 100%;
        background: rgba(0, 0, 0, 0.837);
        position: absolute;
        top: 0px;
        right: 0;
        left: 0;
        transition: .551s;
        overflow: hidden;
        opacity: 0;
        z-index: 1000;
    }
    header .navbars.active {
        opacity: 1;
    }
    header .navbars.active {
        height: 380px;
    }
    
    header .navbars ul {
        display: block;
        width: fit-content;
        margin: 60px auto 0 auto;
        text-align: center;
        transition: .4s ease;
    }
    
    header .navbars ul {
        transform: translateY(60px);
    }
    
    header .navbars ul li a {
        display: inline-block;
        margin-bottom: 20px;
    }
}


*{


    margin: 0;
    padding: 0;
}



/* DIV MAIN */
.content-main {
    text-align: center;
    transform: translateY(130px);
    padding-top: 150px; /* Base padding for larger screens */
}

.content-main h1 {
    letter-spacing: .3rem;
    font-size: 4rem; /* Base font size for larger screens */
    font-weight: 900;
    color: white;
}

.content-main p {
    font-size: 1.1rem; /* Base font size for larger screens */
    color: rgba(255, 255, 255, 0.904);
    letter-spacing: 1px;
    line-height: 28px;
    margin: 20px 0px;
}

.main-btn {
    padding: 12px 30px; /* Adjusted padding for better balance */
    border-radius: 10px; /* Unified border radius */
    font-size: 1.1rem; /* Base font size */
    font-family: 'Arial', sans-serif; /* Modern font family */
    border: none;
    background: linear-gradient(45deg, #f11111dd, #fc151572); /* Gradient background */
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: all 0.4s ease; /* Smooth transition */
    cursor: pointer;
    outline: none; /* Remove outline on focus */
}

/* Hover effect */
.main-btn:hover {
    background: linear-gradient(45deg, #b2111170, #be555598); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Active effect */
.main-btn:active {
    transform: translateY(1px); /* Press effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Reduce shadow on active */
}

/* Media Queries for Responsive Design */
@media (max-width: 720px) {
    .content-main {
        padding-top: 100px; /* Reduced padding for medium screens */
    }
    .content-main h1 {
        font-size: 3rem; /* Smaller font size for medium screens */
    }
}

@media (max-width: 510px) {
    .content-main {
        padding-top: 80px; /* Further reduced padding for smaller screens */
    }
    .content-main h1 {
        font-size: 2rem; /* Smaller font size */
    }
    .content-main p {
        font-size: 0.9rem; /* Slightly smaller font size */
    }
    .main-btn {
        padding: 10px 20px; /* Smaller padding for buttons */
        font-size: 1rem; /* Smaller button font size */
    }
}

@media (max-width: 370px) {
    .content-main h1 {
        font-size: 1.7rem; /* Smaller font size */
    }
    .content-main p {
        font-size: 0.7rem; /* Smaller font size */
    }
    .main-btn {
        padding: 8px 15px; /* Even smaller padding for buttons */
        font-size: 0.9rem; /* Smaller button font size */
    }
}









.con222 {
    position: relative; /* Ensures pseudo-element aligns correctly */
    background-color: #eaeaea; /* Fallback color */
    z-index: 1; /* Content should stay above the background */
}

.con222::after {
    content: ""; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/bgc1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* Adjust this value for desired transparency */
    z-index: -1; /* Push pseudo-element behind the content */
    pointer-events: none; /* Allows interaction with content */
}




.pricing-section {
    position: relative; /* Ensures pseudo-element aligns correctly */
    background-color: #eaeaea; /* Fallback color */
    z-index: 1; /* Content should stay above the background */
    
}

.pricing-section::after {
    content: ""; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/bgc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* Adjust this value for desired transparency */
    z-index: -1; /* Push pseudo-element behind the content */
    pointer-events: none; /* Allows interaction with content */
}








.text-center img{
margin-bottom: 15px;
}

/* Container Styles */
.container222 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 10px;
}

.item1 {
    text-align: center;
    width: 200px;
    padding: 8px;
}

.icon1 {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.icon1 img {
    width: 100%;
    height: auto;
    display: block;
}

.text1 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
}

.description1 {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container222 {
        gap: 20px;
    }
    .item1 {
        width: 180px;
    }
    .text1 {
        font-size: 16px;
    }
    .description1 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container222 {
        flex-direction: column;
        align-items: center;
    }
    .item1 {
        width: 100%;
        max-width: 250px;
    }
    .text1 {
        font-size: 14px;
    }
    .description1 {
        font-size: 12px;
    }
}







.pricing-card h5{
color : black;
font-size: 18px;
margin-bottom: 15px;
}




.showcase { 
    position: relative;
    overflow: hidden; /* Prevents overflow */
    background-color: #eaeaea; /* Background color for the showcase */
    padding: 100px 0; /* Padding around the showcase */
    margin-top: 20px;
}

/* Film Container */
.film {
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    white-space: nowrap;
    animation: slide 30s linear infinite; /* Auto sliding */
    padding-top: 50px;
}

/* Parallax Effect */
.film-slide {
    display: inline-flex;
}

/* Animation for sliding effect */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Adjust as needed */
}

/* Film Image Styling with Depth Effect */
.film-slide img {
    margin: 10px;
    width: 180px;
    height: 270px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Film Hover Effect */
.film-slide img:hover {
    transform: scale(1.1) rotateY(0deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.9);
}

.channel {
    width: 70%; /* Take up 70% of page width */
    margin: 0 auto; /* Center the channel container */
    overflow: hidden; /* Hide overflow */
    padding: 15px;
    margin-top: 10px;
}

/* Channel Slide Styling */
.channel-slide {
    display: flex;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Channel Image Styling */
.channel-slide img {
    margin: 5px;
    width: 100px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

/* Channel Hover Effect */
.channel-slide img:hover {
    transform: scale(1.1);
}

/* Media Query for Responsive Adjustments */
@media (max-width: 990px) {
    .channel-slide img {
        width: 80px;
    }
}

@media (max-width: 680px) {
    .film-slide img {
        width: 120px;
        height: 170px;
    }   a
    .channel-slide img {
        width: 60px; /* Even smaller width for mobile devices */
    }
}




















/*.content-main to have a continuous slow up-and-down movement*/

.content-main {
    text-align: center;
    animation: floatUpDown 3s ease-in-out infinite; /* Slow float effect */
    margin-top: 100px; 
}

/* Button hover effect */
.main-btn:hover {
    transform: scale(1.05); /* Slight scale on hover */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframes for floating effect */
@keyframes floatUpDown {
    0% {
        transform: translateY(0); /* Start at the original position */
    }
    50% {
        transform: translateY(-20px); /* Move up by 20px */
    }
    100% {
        transform: translateY(0); /* Return to the original position */
    }
}
















  










.header-container1 {
    display: flex;  
    margin-top: 30px;               /* Use Flexbox for alignment */
    justify-content: center;       /* Center horizontally */
            /* Center vertically */
    padding: 0;                    /* No padding to keep it clean */
    margin-top: 0;
    margin: 0;
}

.header-container1 h2 {
    margin-top: 100px;
    text-align: center;
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
    
}

/* Media query for small screens (smartphones) */
@media (max-width: 767px) {
    .header-container1 h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Ensure text is centered */
        width: 100%; /* Occupy full width for alignment */
    }
}















/* Main container */
.liquid-shape {
  position: relative;
  overflow: hidden;
}

/* Top left shape */
.liquid-shape::before {
  top: -50px;
  left: -50px;
  transform: rotate(0deg);
}

/* Bottom right shape */
.liquid-shape::after {
  bottom: -50px;
  right: -50px;
  transform: rotate(180deg);
}



/* Optional: Add transition for smooth hover effect */
.liquid-shape::before,
.liquid-shape::after {
  transition: transform 0.3s ease-in-out;
}

/* Optional: Add hover effect */
.liquid-shape:hover::before {
  transform: rotate(0deg) scale(1.1);
}

.liquid-shape:hover::after {
  transform: rotate(180deg) scale(1.1);
}







/* Main section styling */
.pricing-section {
    padding: 4rem 2rem;
    background-color: #eaeaea;
    font-family: system-ui, -apple-system, sans-serif;
    margin-bottom: 0;

}
.pricing-section h2{
    text-align: center;
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
   
}
.pricing-card h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Center and align buttons in one row */
.toggle-buttons {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensure buttons are aligned vertically */
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative; /* To fix positioning */
    z-index: 2; /* Ensure buttons are above other elements */
}

/* Styling for the buttons */
.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1.5rem;
    background-color: #e2e8f0;
    color: linear-gradient(45deg, #f11111dd, #fc151572);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Ensure button text doesn't break */
}

/* Active state for buttons */
.toggle-btn.active {
    background: linear-gradient(45deg, #d02222fa, #fc151572);
    color: rgb(255, 255, 255);
}





/* Pricing cards container */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}



/* General mobile responsiveness */
@media only screen and (max-width: 768px) {
    .pricing-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around; /* Aligns cards nicely on smaller screens */
    }
  
    .pricing-card {
      width: 100%;  /* Makes each card take up full width */
      margin-bottom: 20px;  /* Adds spacing between cards */
    }
  
    .toggle-buttons {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
  
    .toggle-btn {
      margin: 0 10px;
      padding: 10px 20px;
    }
  
    .price-tag {
      font-size: 18px; /* Smaller font size for mobile */
    }
  
    h3, h5 {
      font-size: 1.2em; /* Makes text size more readable on mobile */
    }
  
    .feature-list {
      font-size: 0.9em; /* Adjust feature list text size */
    }
  
    .subscribe-btn {
      width: 100%;  /* Makes the button full width on small screens */
      padding: 15px;  /* Larger button for easier clicking */
    }
  }
  











/* Individual card styling */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    padding-top: 90px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, background-color 0.4s ease;
    text-align: center;
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 60px;
}


.pricing-card:hover {
    transform: translateY(-5px);
    color: #fff; /* Optionnel : changer la couleur du texte lors du survol */
}














/* Price tag styling */
.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
   
    position: relative;
    z-index: 1;
}

.price-tag span {
    display: inline-block;
}

/* Plan title */
.pricing-card h3 {
    font-size: 1.5rem;
    color: #334155;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Feature list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
}


/* Subscribe button styling */
.subscribe-btn {
    width: 90%;
    padding: 1rem;
    margin-left: 12px;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(45deg, #f11111dd, #fc151572); /* Fixed */
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    
}
 a{
    text-decoration: none;
        display: inline-block;
}
/* Hover effect for button */
.subscribe-btn:hover {
    background: linear-gradient(45deg, #fc151572, #f11111dd);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    color: white;
    letter-spacing: 1px;
    
    text-decoration: none; 
}




/* Multi-price display handling */
.multi-price {
    display: none;
}

.multi-price.active {
    display: inline-block;
}


/* Top left image */
.liquid-shape::before {
    content: '';
    position: absolute;
    width: 195px;
    height: 195px;
    top: -1px;
    left: -1px;
    background-image: url('image/bb11.png');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    z-index: 0;
}

/* Bottom right image */
.liquid-shape::after {
    content: '';
    position: absolute;
    width: 195px;
    height: 195px;
    bottom: -1px;
    right: -1px;
    background-image: url('image/b123-.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
/* Hover effect to change image */
.liquid-shape:hover::before {
    background-image: url('image/8cor.png'); /* Changez par l'URL de votre nouvelle image */
}

.liquid-shape:hover::after {
    background-image: url('image/9bn.png'); /* Changez par l'URL de votre nouvelle image */
}
/* Ensure content stays above the images */


/* Center and align buttons in one row */
.toggle-buttons {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensure buttons are aligned vertically */
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative; /* To fix positioning */
    z-index: 2; /* Ensure buttons are above other elements */
    width: 100%; /* Ensure container takes full width */
}

/* Styling for the buttons */
.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1.5rem;
    background-color: linear-gradient(45deg, #f11111, #9a0000);
    color: linear-gradient(45deg, #f11111dd, #fc151572);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Ensure button text doesn't break */
    display: inline-flex; /* Align content inside button */
}

/* Active state for buttons */
.toggle-btn.active {
    background-color: linear-gradient(45deg, #f11111, #9a0000);
    color: rgb(0, 0, 0);
}



.single-price {
    position: absolute;
    top: -95px;
    left: -46px;
    font-size: 30px;
    font-weight: bold;
    color: #fffdfd;
    padding: 10px 20px;
    border-radius: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Ensures it appears above other content */
}
.multi-price{
    position: absolute;
    top: -95px;
    left: -46px;
    font-size: 30px;
    font-weight: bold;
    color: #fffdfd;
    padding: 10px 20px;
    border-radius: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Ensures it appears above other content */
}




















/* Global Styles */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --dark-bg: #ffffff6c; /* Updated to a light background */
    --text-light: #333333; /* Dark text for better contrast */
    --text-muted: #777777; /* Muted text for answers */
    --transition: all 0.3s ease;
}

/* FAQ Section Styles */
.faq-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 1200px;
    height: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: transparent;
    border-radius: 15px;
    background-color: var(--dark-bg); /* Light background color */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-image {
    flex: 0 0 400px;
    height: 100%;
}

.faq-image img {
    padding-top: 50px;
    width: 400px;
    height: 450px;
    object-fit: cover;
    
}

.faq-questions {
    flex: 1;
    height: 100%;
    overflow-y: auto;
}

.faq-questions h1 {
    color: var(--primary-color); /* Change header color for better visibility */
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.faq-questions h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.question-box {
    background: rgba(255, 255, 255, 0.8); /* Slightly lighter for visibility */
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.question-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2); /* Lighter shadow */
}

.question {
    padding: 1.5rem;
    color: var(--text-light); /* Updated text color */
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question::after {
    content: '+';
    transition: var(--transition);
}

.question-box:hover .question::after {
    transform: rotate(45deg);
}

.answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted); /* Muted color for answers */
    display: none;
    line-height: 1.6;
}

.question-box:hover .answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .faq-container {
        height: 550px;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .faq-questions h1 {
        font-size: 2rem;
    }
    
    .faq-image {
        flex: 0 0 300px;
    }
    
    .faq-image img {
        width: 300px;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .faq-container {
        flex-direction: column; /* Stack elements vertically */
        height: auto; /* Allow auto height */
    }

    .faq-image {
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        flex: 0 0 auto; /* Allow size according to content */
        height: auto; /* Allow auto height */
        order: 2; /* Ensure correct stacking order */
    }

    .faq-image img {
        padding-top: 20px; /* Maintain padding */
        width: 100%; /* Use full width */
        height: auto; /* Maintain aspect ratio */
        max-width: 300px; /* Limit max size */
        display: block; /* No inline space */
        margin: 0 auto; /* Center within container */
    }

    .faq-questions {
        order: 1;
    }

    .question {
        padding: 1.25rem;
    }

    .answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-container {
        height: auto;
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .faq-image {
        height: auto;
    }
    
    .faq-image img {
        width: 100%;
        height: auto;
    }
    
    .faq-questions h1 {
        font-size: 1.75rem;
    }
    
    .question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}







.container-contact {
    font-family: Arial, sans-serif; 


    max-width: 1200px;
    margin: 150px auto;
    padding: 30px;
    border-radius: 20px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.form-section {
    flex: 2;
    padding-right: 40px;
    border-right: 1px solid #eee;
}

.info-section {
    flex: 1;
    padding-top: 200px;
}

.section-title {
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color:  #f11111;
    font-size: 17px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    font-weight: 800;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f6121296;
    background-color: #fafafa;
}

textarea {
    height: 120px;
    resize: none;
}

.btn-contact {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #f11111, #9a0000);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* New simplified info section styles */
.info-section {
    padding-left: 20px;
}

.info-section h3 {
    font-size: 25px;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f11111, #9a0000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-icon span {
    color: white;
    font-size: 18px;
}

.info-content h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .container-contact {
        margin: 20px;
        padding: 20px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .form-section {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .input-row {
        flex-direction: column;
        gap: 15px;
    }

    .info-section {
        padding-left: 0;
        padding-top: 30px;
    }
}







/* Footer Styles */
.footer {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    position: relative;
}

.shape-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(74, 144, 226, 0.1) 0%,
        rgba(41, 128, 185, 0.1) 100%);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.footer h5 {
    color:white;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #f11111, #9a0000);
    border-radius: 1.5px;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 10px;
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .faq-questions h1 {
        font-size: 2rem;
    }
    
    .contact-form-section .row {

        flex-direction: column-reverse;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}






.btn-offers {
    margin-left: 20px;
    background:linear-gradient(45deg, #f11111dd, #fc151572);
    font-family: 'Arial', sans-serif;
    font-weight: 560;
    color: #ffffff;            /* Text color */
    border: none;              /* No border */
    border-radius: 10px;      /* Rounded corners */
    padding: 5px 10px;       /* Padding for spacing */
    font-size: 17px;          /* Font size */
          /* Bold text */
    cursor: pointer;          /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition for hover effects */
}

/* Hover effects */
.btn-offers:hover {
    background: linear-gradient(45deg, #b2111170, #be555598); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Lift effect */
}

/* Focus state */
.btn-offers:focus {
    outline: none;              /* Remove outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add shadow */
}


#text-lighttt{
    padding-top: 130px;
}
#text-lightt{
    padding-bottom: 130px;
}

































.container1 {
    font-family: Arial, sans-serif;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233B2F8C;stop-opacity:1" /><stop offset="100%" style="stop-color:%232F4A7E;stop-opacity:1" /></linearGradient><linearGradient id="grad2" x1="0%" y1="100%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23FF5F5F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23FFB75F;stop-opacity:1" /></linearGradient><pattern id="hexPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,0 100,25 100,75 50,100 0,75 0,25" fill="none" stroke="%23FFFFFF" stroke-width="2" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grad1)"/><g opacity="0.6"><path d="M0,0 L1920,0 L1920,540 Q960,720 0,540 Z" fill="url(%23grad2)"/><circle cx="1500" cy="500" r="250" fill="rgba(255, 255, 255, 0.1)"/><circle cx="900" cy="700" r="150" fill="rgba(255, 255, 255, 0.15)"/><circle cx="300" cy="400" r="200" fill="rgba(255, 255, 255, 0.2)"/><circle cx="1200" cy="200" r="180" fill="rgba(255, 255, 255, 0.25)"/><path d="M0,540 C500,700 1000,300 1500,500 C1900,600 1920,600 1920,600 L1920,1080 L0,1080 Z" fill="none" stroke="%23FFFFFF" stroke-width="3" opacity="0.4"/></g><g opacity="0.3"><polygon points="600,300 1000,100 1400,300" fill="none" stroke="%23FFB75F" stroke-width="5" stroke-linecap="round" stroke-dasharray="10,10"/><polygon points="400,800 800,500 1200,800" fill="none" stroke="%23FF5F5F" stroke-width="5" stroke-linecap="round" stroke-dasharray="5,5"/><path d="M0,0 L500,100 L900,500 L1500,500 L1920,0" fill="none" stroke="%23FFFFFF" stroke-width="2" opacity="0.2"/><path d="M1920,1080 L1400,880 L1000,1080 L500,880 L0,1080" fill="none" stroke="%23FF5F5F" stroke-width="4" opacity="0.3"/></g><g opacity="0.1"><circle cx="1600" cy="800" r="300" fill="none" stroke="%23FFFFFF" stroke-width="5"/><circle cx="500" cy="500" r="400" fill="none" stroke="%23FFFFFF" stroke-width="5"/><circle cx="1400" cy="300" r="120" fill="none" stroke="%23FF5F5F" stroke-width="4"/><circle cx="700" cy="700" r="100" fill="none" stroke="%23FFB75F" stroke-width="3"/><polygon points="600,200 800,100 1000,200" fill="none" stroke="%23FFB75F" stroke-width="4" stroke-dasharray="8,4"/><polygon points="400,600 600,500 800,600" fill="none" stroke="%23FF5F5F" stroke-width="4" stroke-dasharray="5,5"/><path d="M0,1000 Q960,700 1920,1000" fill="none" stroke="%23FFB75F" stroke-width="3" opacity="0.5"/></g><g opacity="0.05"><rect width="100%" height="100%" fill="url(%23hexPattern)" opacity="0.2"/><circle cx="1000" cy="500" r="20" fill="rgba(255, 255, 255, 0.1)"/><circle cx="200" cy="900" r="30" fill="rgba(255, 255, 255, 0.1)"/><circle cx="1600" cy="400" r="15" fill="rgba(255, 255, 255, 0.1)"/><circle cx="300" cy="100" r="50" fill="rgba(255, 255, 255, 0.15)"/><circle cx="1500" cy="800" r="25" fill="rgba(255, 255, 255, 0.2)"/><circle cx="800" cy="300" r="10" fill="rgba(255, 255, 255, 0.05)"/><circle cx="1400" cy="700" r="30" fill="rgba(255, 255, 255, 0.2)"/><circle cx="100" cy="400" r="40" fill="rgba(255, 255, 255, 0.1)"/><circle cx="800" cy="900" r="20" fill="rgba(255, 255, 255, 0.15)"/></g></svg>');
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    
  }
  
  .header1 h2 {
    color: #221847;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  
  .carousel {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 8px;
  }
  
  .carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
    will-change: transform;
  }
  
  .card {
    flex: 0 0 auto;
    width: 15%;
    max-width: 200px;
    min-width: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .logos img {
    width: 70px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .logos img:hover {
    filter: grayscale(0);
  }
  
  /* Smooth infinite scroll animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 1200px) {
    .card {
      width: 20%;
    }
  }
  
  @media (max-width: 768px) {
    .card {
      width: 30%;
    }
  }
  
  @media (max-width: 480px) {
    .card {
      width: 50%;
    }
  }
  









  .container33 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.text-content {
    flex: 1;
    padding: 20px;
    color: #333;
    font-family: Arial, sans-serif;
    max-width: 600px;
}

.text-content h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: bold;
    color: #9A0000;
    margin-bottom: 10px;
}

.text-content h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: #333;
    margin-bottom: 15px;
}

.text-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    text-align: justify;
}

.order-button {
    margin-top: 20px;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 24px);
    background: linear-gradient(45deg, #f11111, #9a0000);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.order-button:hover {
    background: linear-gradient(45deg, #f11111dd, #fc151572);
}

.image-content {
    flex: 1;
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Large screens */
@media (min-width: 1200px) {
    .text-content {
        margin-left: 50px;
    }
    
    .image-content {
        margin-right: 50px;
    }
}

/* Medium screens */
@media (max-width: 992px) {
    .container33 {
        padding: 15px;
    }
    
    .text-content, .image-content {
        padding: 15px;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .container33 {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        margin: 0 auto;
        padding: 10px;
        max-width: 100%;
    }

    .text-content p {
        text-align: left;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container33 {
        padding: 10px;
    }
}














































.showcase {
    position: relative;
    overflow: hidden;
    padding: 25px 0;
    margin-top: 0;
    
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233B2F8C;stop-opacity:1" /><stop offset="100%" style="stop-color:%232F4A7E;stop-opacity:1" /></linearGradient><linearGradient id="grad2" x1="0%" y1="100%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23FF5F5F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23FFB75F;stop-opacity:1" /></linearGradient><pattern id="hexPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,0 100,25 100,75 50,100 0,75 0,25" fill="none" stroke="%23FFFFFF" stroke-width="2" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grad1)"/><g opacity="0.6"><path d="M0,0 L1920,0 L1920,540 Q960,720 0,540 Z" fill="url(%23grad2)"/><circle cx="1500" cy="500" r="250" fill="rgba(255, 255, 255, 0.1)"/><circle cx="900" cy="700" r="150" fill="rgba(255, 255, 255, 0.15)"/><circle cx="300" cy="400" r="200" fill="rgba(255, 255, 255, 0.2)"/><circle cx="1200" cy="200" r="180" fill="rgba(255, 255, 255, 0.25)"/><path d="M0,540 C500,700 1000,300 1500,500 C1900,600 1920,600 1920,600 L1920,1080 L0,1080 Z" fill="none" stroke="%23FFFFFF" stroke-width="3" opacity="0.4"/></g><g opacity="0.3"><polygon points="600,300 1000,100 1400,300" fill="none" stroke="%23FFB75F" stroke-width="5" stroke-linecap="round" stroke-dasharray="10,10"/><polygon points="400,800 800,500 1200,800" fill="none" stroke="%23FF5F5F" stroke-width="5" stroke-linecap="round" stroke-dasharray="5,5"/><path d="M0,0 L500,100 L900,500 L1500,500 L1920,0" fill="none" stroke="%23FFFFFF" stroke-width="2" opacity="0.2"/><path d="M1920,1080 L1400,880 L1000,1080 L500,880 L0,1080" fill="none" stroke="%23FF5F5F" stroke-width="4" opacity="0.3"/></g><g opacity="0.1"><circle cx="1600" cy="800" r="300" fill="none" stroke="%23FFFFFF" stroke-width="5"/><circle cx="500" cy="500" r="400" fill="none" stroke="%23FFFFFF" stroke-width="5"/><circle cx="1400" cy="300" r="120" fill="none" stroke="%23FF5F5F" stroke-width="4"/><circle cx="700" cy="700" r="100" fill="none" stroke="%23FFB75F" stroke-width="3"/><polygon points="600,200 800,100 1000,200" fill="none" stroke="%23FFB75F" stroke-width="4" stroke-dasharray="8,4"/><polygon points="400,600 600,500 800,600" fill="none" stroke="%23FF5F5F" stroke-width="4" stroke-dasharray="5,5"/><path d="M0,1000 Q960,700 1920,1000" fill="none" stroke="%23FFB75F" stroke-width="3" opacity="0.5"/></g><g opacity="0.05"><rect width="100%" height="100%" fill="url(%23hexPattern)" opacity="0.2"/><circle cx="1000" cy="500" r="20" fill="rgba(255, 255, 255, 0.1)"/><circle cx="200" cy="900" r="30" fill="rgba(255, 255, 255, 0.1)"/><circle cx="1600" cy="400" r="15" fill="rgba(255, 255, 255, 0.1)"/><circle cx="300" cy="100" r="50" fill="rgba(255, 255, 255, 0.15)"/><circle cx="1500" cy="800" r="25" fill="rgba(255, 255, 255, 0.2)"/><circle cx="800" cy="300" r="10" fill="rgba(255, 255, 255, 0.05)"/><circle cx="1400" cy="700" r="30" fill="rgba(255, 255, 255, 0.2)"/><circle cx="100" cy="400" r="40" fill="rgba(255, 255, 255, 0.1)"/><circle cx="800" cy="900" r="20" fill="rgba(255, 255, 255, 0.15)"/></g></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
      
}


.film, .channel {
   
    position: relative; /* Ensures content is above the SVG */
    z-index: 1; /* Content on top */
}








.container22 {
    position: relative;
    overflow: hidden;

}

svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure SVG is behind other content */
}




/* styles.css */
html {
    scroll-behavior: smooth; /* Smooth scrolling */
  }
  

  .pricing-section.animate {
    animation: highlight 1s ease-in-out; /* Triggered animation */
  }
  
  @keyframes highlight {
    0% {
      background-color: #ffdfba;
    }
    100% {
      background-color: #f0f0f0;
    }
  }
  
 



  .return-to-top-btn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #f01c1c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.return-to-top-btn:hover {
    background-color: #d01818;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.return-to-top-btn.show {
    display: flex;
}

.return-to-top-btn i {
    font-size: 20px;
}
  
 
.logo img{
    width: 180px;
    height: 65px;
}
















.whatsapp-proof {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
  }
  
  .proof-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .proof-header h2 {
    text-align: center;
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .proof-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .proof-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .proof-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  .proof-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 30s linear infinite;
  }
  
  /* Pause animation on hover */
  .proof-track:hover {
    animation-play-state: paused;
  }
  
  .proof-slide {
    width: 250px;
    height: 450px;
    flex-shrink: 0;
    padding: 10px;
  }
  
  .proof-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .proof-slide:hover img {
    transform: scale(1.05);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  /* Gradient overlays */
  .proof-slider::before,
  .proof-slider::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
    z-index: 2;
  }
  
  .proof-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
  }
  
  .proof-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
  }
  
  @media (max-width: 768px) {
    .proof-header h2 {
      font-size: 2rem;
    }
    
    .proof-slider {
      height: 400px;
    }
    
    .proof-slide {
      width: 200px;
      height: 350px;
    }
  }









  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }
    
    .whatsapp-btn svg {
        width: 25px;
        height: 25px;
    }
}








.pricing-section {
    padding: 2rem;
    text-align: center;
}

.price-tag {
    font-size: 2rem;
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}



.hidden {
    display: none;
}
