/* General Styles */
/* Prevent Horizontal Scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
  margin: 0;
  background: #0a0f1f; /* Deep Dark Blue - Matches Header */
  font-family: 'Montserrat', sans-serif;
  color: #f4f4f4; /* Light text for contrast */
}

/* Subtle Glow Effect (Prevents Gimmicky Overload) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 81, 190, 0.15) 10%, transparent 70%);
  pointer-events: none; /* Doesn't affect clicks */
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  height: 73vh;
  overflow: hidden;
  margin-bottom: -10px; /* Reduce the space after the hero section */
}
.course-photo {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 5px solid #d4af37; /* Golden border at the bottom */
}
.logo {
  max-height: 50px; /* Adjust logo height */
  height: auto;
  display: inline-block;
}

/* Button Styles */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Keyframe Animation for Swinging */
@keyframes button-swing {
  0%, 60% {
    transform: rotate(0deg); /* Normal position */
  }
  65% {
    transform: rotate(-10deg); /* Tilt left */
  }
  70% {
    transform: rotate(10deg); /* Tilt right */
  }
  75% {
    transform: rotate(-5deg); /* Slightly tilt left */
  }
  80% {
    transform: rotate(5deg); /* Slightly tilt right */
  }
  100% {
    transform: rotate(0deg); /* Back to normal */
  }
}

/* Buy Now Button - Dark Neon Blue */
.btn {
  background: #0051be; /* Neon Blue */
  color: white;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid black; /* Thin Black Border */
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.6); /* Subtle Neon Glow */
  animation: button-swing 2.5s infinite ease-in-out; /* Swinging Animation */
}

/* Hover Effect */
.btn:hover {
  background: #0044CC; /* Darker Neon Blue on Hover */
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 102, 255, 1); /* Intense Glow */
}
/* Header Styles */
/* Header Styles */
.header {
  background: #0a0f1f; /* Deep Dark Blue */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 2px solid #0051be; /* Neon Blue Border to match the button */
  box-shadow: 0 0 10px rgba(0, 81, 190, 0.5); /* Subtle Neon Glow */
}

/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Thin border */
.thin-border {
  border: none;
  height: 1px;
  background-color: #0051be; /* Neon Blue */
  margin: 20px 0;
  box-shadow: 0 0 8px rgba(0, 81, 190, 0.5); /* Soft Neon Glow */
}


/* Video Section */
.video-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
}

.video-container {
    position: relative;
    width: 95%;
    max-width: 960px;
    border: 2px solid #0051be; /* Thin Neon Blue Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 81, 190, 0.4); /* Subtle Neon Glow */
    aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
}

.course-video {
    width: 100%;
    height: 100%; /* Ensures it fills the container */
    display: block;
}




/* Segment Styling */

.features-heading,
.features-container,
.fitness-heading,
.hellohe,
.slider-container,
.slider-container1,
.cta-section 
footer {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: all 0.6s ease-out;
}

/* When in viewport, animate the elements */
.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.thin-borderr {
    color: gray;
}
/* Adjustments for Laptop Screens (1024px - 1440px) */



/* Perks Section */
/* Perks Heading */
/* Perks Heading - Centered & Styled */
.perks-heading {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #00aaff; /* Lighter blue for a premium feel */
    margin: 30px auto;
    display: block;
    max-width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Perks Container - Modern Grid Layout */
.perks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible Grid */
    gap: 25px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Perk - Now More Premium */
.perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0d1321;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #0051be;
    box-shadow: 0 0 15px rgba(0, 81, 190, 0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    margin: auto;
}

/* Hover Effect - Subtle Lift */
.perk:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 81, 190, 0.9);
}

/* Icon Styling - Bigger & Bolder */
.perk-icon {
    font-size: 28px;
    width: 65px;
    height: 65px;
    background: #0051be;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Perk Title */
.perk-content h3 {
    font-size: 22px;
    color: #f4f4f4;
    margin-bottom: 8px;
}

/* Perk Description */
.perk-content p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
    max-width: 90%;
}

/* Responsive - Mobile Adjustments */
@media (max-width: 768px) {
    .perks-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .perk {
        width: 90%;
        max-width: 100%;
        text-align: center;
    }

    .perk-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .perk-content h3 {
        font-size: 20px;
    }

    .perk-content p {
        font-size: 14px;
    }
}
/* Testimonials Section */
.testimonials-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #0051be;
    margin: 20px auto;
    display: block;
    max-width: fit-content;
}

/* Testimonials Container */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
}

/* Individual Testimonial */
.testimonial {
    background: #0d1321;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 81, 190, 0.5);
    text-align: center;
    max-width: 400px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 81, 190, 0.7);
}

/* Chat Testimonials */
.chat-testimonials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 1000px;
    padding: 10px;
    flex-wrap: wrap;
}

.chat-screenshot {
    width: 30%;
    max-width: 300px;
    border-radius: 8px;
    border: 2px solid #0051be;
    box-shadow: 0 0 10px rgba(0, 81, 190, 0.5);
    transition: transform 0.3s ease-in-out;
}

.chat-screenshot:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .chat-testimonials {
        flex-direction: column;
        align-items: center;
    }

    .chat-screenshot {
        width: 90%;
    }
}
/* CTA Section - Minimal, No Background */
.cta-section {
    text-align: center;
    padding: 30px 20px;
    max-width: 800px;
    margin: 40px auto;
}

/* Larger CTA Heading */
.cta-section h2 {
    font-size: 32px; /* Increased size */
    font-weight: 800;
    margin-bottom: 15px;
    color: #f4f4f4; /* Keeping contrast for dark theme */
}

/* CTA Text */
.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bbb; /* Subtle contrast */
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Make CTA Button Bigger */
.cta-section .btn {
    font-size: 22px;
    padding: 14px 28px;
}
/* Button Base Style */
.btn1 {
    position: relative;
    background: #0051be;
    color: white;
    padding: 14px 28px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #0051be;
    display: inline-block;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 81, 190, 0.7);
}

/* Lightning Effect */
.btn1::before, .btn1::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/3e/Lightning-bolt.gif');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -1;
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.8));
    animation: lightning-strike 0.5s infinite alternate ease-in-out;
}

/* Lightning Animation */
@keyframes lightning-strike {
    0% { opacity: 0; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(2deg); }
    100% { opacity: 0; transform: scale(1) rotate(-2deg); }
}

/* Hover Effect */
.btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 81, 190, 1);
}

/* Extra Flicker Effect */
.btn1:hover::before {
    animation: flicker 0.2s infinite alternate;
}

/* Flicker Animation */
 .slider-container {
        position: relative;
        width: 300px; /* Width for 3:4 ratio */
        height: 400px; /* Height for 3:4 ratio */
        overflow: hidden;
        border-radius: 12px;
        border: 2px solid #0051be; /* Neon Blue Border */
        box-shadow: 0 0 20px rgba(0, 81, 190, 0.7); /* Glowing effect */
        margin: 30px auto; /* Centering */
    }

    .slider-container img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

/* Community Heading Style */
.community-heading {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: -24px;
    color: white;
}

/* Highlighted Text in Heading */
.community-heading .highlight {
    color: #00aaff; /* Light Blue (Adjust if needed) */
    font-weight: bold;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Video Container */
.video-container {
    position: relative;
    width: 95%;
    max-width: 960px;
    border: 2px solid #0051be; /* Thin Neon Blue Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 81, 190, 0.4); /* Subtle Neon Glow */
    aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
}

/* Course Video */
.course-video {
    width: 100%;
    height: 100%;
    display: block;
}   .slider-container img.active {
        opacity: 1;
    }
    
    

/* Section Heading */
/* Section Heading */
.provide-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #00aaff; /* Neon blue */
    margin: 30px auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Provide Item Container */
.provide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

/* Image Styling - 16:9 Aspect Ratio */
.provide-item img {
    width: 97%;
    max-width: 960px; /* Ensures max width */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer; /* Indicates it's interactive */

    filter: none !important; /* Removes any color filter */
    mix-blend-mode: normal !important; /* Ensures no blending mode changes color */
    background: none !important; /* Removes any forced background */
}
/* Hover Effect */
.provide-item img:hover {
    transform: scale(1.03);
}

/* Click (Active) Effect */
.provide-item img:active {
    transform: scale(1.08) translateY(-5px); /* Lifts up slightly */
    box-shadow: 0 0 25px rgba(0, 81, 190, 0.8); /* Stronger glow */
}

/* Description Text */
.provide-item p {
    font-size: 18px;
    color: #d9f1ff; /* Light blue text */
    max-width: 800px;
    line-height: 1.6;
    padding: 0 15px;
    text-shadow: 2px 2px 4px rgba(0, 183, 255, 0.8); /* Soft glow */
    position: relative;
    transition: transform 0.3s, color 0.3s;
}

/* Hover Effect */
.provide-item p:hover {
    transform: scale(1.05);
    color: #00aaff; /* Brighter neon blue */
}

/* Underline Line Animation */
.provide-item p::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: #00aaff; /* Neon blue underline */
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.provide-item p:hover::after {
    transform: scaleX(1);
}