/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s ease;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navbar Styles */
/* ======================
   UNIFIED NAVIGATION BAR
   ====================== */

/* Top Bar - Consistent across all pages */
.top-bar {
    background: #161b22;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Main Navigation Bar - Consistent across all pages */
.navbar-custom {
    padding: 15px 0;
    background-color: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #4361ee !important;
    transition: color 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand:hover {
    color: #3f37c9 !important;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 10px 15px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, 
.nav-link:focus {
    color: #4361ee !important;
    background-color: rgba(67, 97, 238, 0.1);
}

.nav-link.active {
    color: #4361ee !important;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #4361ee;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 97, 238, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 15px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 10px 0 !important;
        border-radius: 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

/* Sticky Navbar */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .social-icon {
        font-size: 16px;
        margin: 0 8px;
    }
    
}
/* Social Media Icons */
.social-icon {
    color: white;
    font-size: 1.8rem;
    margin: 0 12px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.3);
    color: #ffcc00;
}


/* WhatsApp Button */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-icon img {
    width: 45px;
    height: 45px;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    transform: scale(1.15);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 100;
    cursor: pointer;
}

.scroll-top-btn img {
    width: 40px;
    height: 40px;
}

/* Scroll to Top Button hover effect */
.scroll-top-btn:hover {
    background-color: #0056b3;
    transform: scale(1.2);
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 80px 0;
}

/* Section Title */
.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #161b22;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #007bff;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Testimonial Content */
.testimonial-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px 12px 0 0;
    transition: background 0.3s ease-in-out;
    color: #fff;
}

/* Quote Styling */
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

/* Name and Title */
.blockquote-footer {
    font-size: 1rem;
    color: #007bff;
}

/* Testimonial Image - Fix Alignment */
.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
    margin-top: 20px; /* Ensure it is below the text */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: #007bff;
}

/* Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full-screen height */
    overflow: hidden; /* Hide overflow to prevent showing off-screen content */
}

/* Slider Container */
.hero-slider {
    display: flex;
    transition: transform 1s ease-in-out; /* Smooth sliding effect */
    will-change: transform; /* Optimizes animation */
}

/* Individual Slide */
.hero-slide {
    position: relative;
    flex: 0 0 100%; /* Flex box to make each slide take 100% width of the container */
    height: 100vh; /* Full-screen height */
    background-size: cover;
    background-position: center;
}

/* Overlay for better text visibility */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Content Styling */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 700px;
    z-index: 1;
}

/* Title Styling */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Subtitle Styling */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Button Container Styling */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Button Styling */
.hero-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .testimonial-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 14px;
    }


    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* What We Offer Section */
#what-we-offer {
    padding: 50px 0;
}

#what-we-offer h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #161b22;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

#what-we-offer h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #007bff;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

/* Hover Effects */
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icons Styling */
.offer-card i {
    font-size: 3rem;
    color: #007bff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.offer-card:hover i {
    transform: rotate(360deg);
    color: #ffcc00;
}

/* Text Styling */
.offer-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 15px;
    color: #333;
}

/* Floating Effect */
@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.offer-card:hover {
    animation: floating 1s infinite;
}
/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #0d1117, #1a1f2b);
    font-size: 0.95rem;
}

/* Footer link styles */
.footer-link {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 5px 0;
}
.footer-link:hover {
    color: #0a47ed;
    padding-left: 5px;
}

/* Social icons */
.social-icon-footer {
    color: #1b08f5;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon-footer:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* Developer Credit Highlight */
.dev-glow {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    animation: glowPulse 2.5s infinite ease-in-out;
}
@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 5px #007bff; }
    50% { text-shadow: 0 0 15px #007bff; }
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .footer-modern .row > div {
        text-align: center;
    }
}


/* Special glow effect for Harsha Peddoju */
.designer-glow {
    color: #0522f8;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    animation: glowEffect 2.5s ease-in-out infinite;
}

@keyframes glowEffect {
    0%, 100% {
        text-shadow: 0 0 5px rgba(4, 16, 245, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgb(17, 5, 243);
    }
}

/* Blog Section */
.blogs {
    padding: 60px 0;
    background-color: #f9f9f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blogs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.blog-card {
    background-color: #fff;
    width: calc(33.33% - 20px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-info h3 a {
    text-decoration: none; /* Remove underline */
    color: inherit;
}

.blog-info h3 a:hover {
    color: #ffcc00;
}

.blog-info .blog-excerpt {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-more {
    font-weight: 600;
    color: #ffcc00;
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.read-more:hover {
    color: #ff9900;
    text-decoration: none; /* Keep no underline on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .blog-card {
        width: 100%;
    }
}

/* Hover Effect for Blog Title */
.blog-card:hover .blog-info h3 {
    color: #ffcc00;
}
/* Why Choose Us Section */
#why-choose-us {
    padding: 50px 0;
}

#why-choose-us h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #161b22;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

#why-choose-us h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #007bff;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

/* Hover Effects */
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icons Styling */
.offer-card i {
    font-size: 3rem;
    color: #007bff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.offer-card:hover i {
    transform: rotate(360deg);
    color: #ffcc00;
}

/* Text Styling */
.offer-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 15px;
    color: #333;
}

/* Floating Effect */
@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.offer-card:hover {
    animation: floating 1s infinite;
}

/* Appointment Section */
#appointment {
    padding: 50px 0;
    background-color: #f8f9fa; /* Add a subtle background */
}

/* Section Title */
#appointment h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #161b22;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

#appointment h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #007bff;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Appointment Card */
.appointment-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

/* Hover Effects for Appointment Card */
.appointment-card:hover {
    transform: translateY(-15px); /* More noticeable lift */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

/* Icons Styling */
.appointment-card i {
    font-size: 4rem; /* Larger icon for greater visibility */
    color: #007bff;
    transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
}

/* Hover Effect for Icon */
.appointment-card:hover i {
    transform: rotate(720deg); /* Double rotation for greater effect */
    color: #ffcc00;
}

/* Text Styling in Appointment Card */
.appointment-card h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 20px; /* Added more spacing */
    color: #333;
}

/* Floating Effect for Icons and Cards */
@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Contact Form Area */
#appointment .contact-form {
    background: #ffffff; /* Clear contrast background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
}

#appointment .contact-form:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Stronger hover shadow */
}

/* Contact Form Inputs */
#appointment .contact-form input,
#appointment .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

#appointment .contact-form input:focus,
#appointment .contact-form textarea:focus {
    border-color: #007bff; /* Focus effect */
}

#appointment .contact-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

#appointment .contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Floating Effect for Contact Form */
@keyframes floating-form {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Spinner Container */
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure it's on top of other elements */
    visibility: hidden; /* Hide spinner by default */
}

/* Spinner Logo */
.spinner-logo {
    width: 80px; /* Adjust size of logo */
    height: 80px;
    animation: spin 1s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Show the spinner (when needed) */
.show-spinner {
    visibility: visible;
}
/* Style for Back to Top button */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none; /* Initially hidden */
    transition: opacity 0.3s;
}

.back-to-top-btn:hover {
    background-color: #0056b3;
}
#backToTop {
    display: block !important;  /* Force the button to be visible */
}

/* Certification Section */
.certification-section {
    background: #fff;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.certification-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.certification-card {
    width: 200px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}
.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.certification-card:hover .card-inner {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-front {
    background: #fff;
    flex-direction: column;
    padding: 20px;
}
.card-front img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}
.certification-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.card-back {
    background: #007bff;
    color: white;
    padding: 15px;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}
.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-heading {
    color: #0d6efd;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0d6efd;
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #343a40;
}

.course-duration {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.card-text {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-course {
    background-color: #0d6efd;
    border: none;
    padding: 6px 15px;
    font-size: 0.9rem;
}

.btn-course:hover {
    background-color: #0b5ed7;
}

.course-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.course-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    color: #495057;
    font-size: 0.85rem;
}

.course-features li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.search-container {
    max-width: 800px;
    margin: 0 auto 30px;
}

.filter-buttons .btn {
    margin: 0 5px 5px 0;
    font-size: 0.9rem;
}

/* ===== AWS DBA Course Specific Styles ===== */
/* These will work for all courses while maintaining the AWS branding */

/* AWS Color Scheme */
:root {
    --aws-dark: #232F3E;
    --aws-orange: #FF9900;
    --aws-orange-dark: #e88a00;
    --deep-blue: #0F1C3F;
    --light-bg: #F8F9FC;
    --gradient-primary: linear-gradient(135deg, #FF9900 0%, #FF6B00 100%);
}

/* Hero Section - Generic for all courses */
.hero-section {
    background: linear-gradient(rgba(15, 28, 63, 0.92), rgba(15, 28, 63, 0.95));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Course-specific hero background images can be added via inline style in HTML */
.hero-section.aws-dba {
    background-image: linear-gradient(rgba(15, 28, 63, 0.92), rgba(15, 28, 63, 0.95)), 
                     url('https://d1.awsstatic.com/logos/aws-logo-lockups/poweredbyaws/PB_AWS_logo_RGB_stacked_REV_SQ.4f8c01ec8dc207a0e23b5af9b4f9aa4b1e1f9ae7.png');
}

/* Enroll Button - Generic for all courses */
.enroll-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.6);
    color: white;
}

/* Trust Badges - Generic for all courses */
.trust-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

/* Benefit Cards - Generic for all courses */
.benefit-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    background: white;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Benefit Icons - Generic for all courses */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--aws-orange);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

/* Testimonial Section - Generic for all courses */
.testimonial-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 0;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    color: white;
    border-left: 4px solid var(--aws-orange);
    transition: all 0.3s ease;
}

/* Course Highlight - Generic for all courses */
.course-highlight {
    border-left: 4px solid var(--aws-orange);
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.course-highlight:hover {
    background: rgba(255, 153, 0, 0.05);
    transform: translateX(5px);
}

/* Certification Badge - Generic for all courses */
.certification-badge {
    width: 150px;
    transition: transform 0.3s ease;
}

/* Resource Card - Generic for all courses */
.resource-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Section Title - Generic for all courses */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--aws-orange);
    border-radius: 2px;
}

/* Stats Section - Generic for all courses */
.stats-section {
    background: white;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* FAQ Card - Generic for all courses */
.faq-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

/* Floating Shapes - Generic for all courses */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Scroll to Top Button - Generic for all courses */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   AWS Course Theme Variables
========================= */
:root {
    --aws-orange: #FF9900;
    --aws-deepblue: #0F1C3F;
    --gradient-primary: linear-gradient(135deg, var(--aws-orange), #FFB84D);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
}

/* =========================
   Hero Section
========================= */
.aws-hero-section {
    background: linear-gradient(rgba(15, 28, 63, 0.92), rgba(15, 28, 63, 0.95)), 
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.aws-hero-content {
    position: relative;
    z-index: 2;
}

.aws-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 28, 63, 1) 0%, rgba(15, 28, 63, 0.7) 100%);
    z-index: 1;
}

/* =========================
   Benefit Cards
========================= */
.benefit-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--aws-orange);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

/* =========================
   Trust Badges
========================= */
.trust-badge {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    margin: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* =========================
   Testimonials
========================= */
.testimonial-section {
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2070&q=80') center/cover fixed no-repeat;
    position: relative;
    padding: 6rem 0;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 2.5rem;
    color: white;
    border-left: 4px solid var(--aws-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* =========================
   Stats Section
========================= */
.stats-section {
    position: relative;
    background: white;
    z-index: 1;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.03;
    z-index: -1;
}

.stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   Misc / Effects
========================= */
.pulse-animation {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* =========================
   Floating Shapes
========================= */
.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite alternate;
}

.shape-1 {
    width: 300px; height: 300px;
    top: -100px; right: -100px;
}

.shape-2 {
    width: 200px; height: 200px;
    bottom: 50px; left: -50px;
}

.shape-3 {
    width: 150px; height: 150px;
    top: 50%; left: 30%;
    transform: translateY(-50%);
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* =========================
   Course Highlight
========================= */
.course-highlight {
    border-left: 4px solid var(--aws-orange);
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.course-highlight:hover {
    background: rgba(255, 153, 0, 0.05);
    transform: translateX(5px);
}

/* =========================
   Instructor Card
========================= */
.instructor-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* =========================
   FAQ Section
========================= */
.faq-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header button {
    font-weight: 600;
    padding: 1.25rem;
}

.faq-header button:focus {
    box-shadow: none;
}

.faq-body {
    padding: 1.25rem;
    background: rgba(255, 153, 0, 0.03);
}

/* =========================
   Guarantee Badge
========================= */
.guarantee-badge {
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--aws-orange);
}

/* Optional Container Fix */
#enroll .container {
    position: relative;
    z-index: 1;
}

/* Oracle Hero Section */
.oracle-hero-section {
    background: linear-gradient(rgba(63, 15, 15, 0.92), rgba(63, 15, 15, 0.95)), 
    url('https://www.oracle.com/a/ocom/img/rc24oracle-logo-600.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.oracle-hero-content {
    position: relative;
    z-index: 2;
}

.oracle-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(63, 15, 15, 1) 0%, rgba(63, 15, 15, 0.7) 100%);
    z-index: 1;
}

/* Oracle-specific color scheme */
.oracle-dba-course .benefit-icon {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.oracle-dba-course .fa-ul .fa-li .fas.fa-check {
    color: #ff0000;
}

.oracle-dba-course .enroll-btn {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

.oracle-dba-course .enroll-btn:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.oracle-dba-course .guarantee-badge {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Testimonial section with Oracle colors */
.testimonial-section {
    background: linear-gradient(rgba(63, 15, 15, 0.92), rgba(63, 15, 15, 0.95)), 
    url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
    color: white;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(63, 15, 15, 0.85);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Oracle-themed buttons */
.btn-outline-danger {
    color: #ff0000;
    border-color: #ff0000;
}

.btn-outline-danger:hover {
    background-color: #ff0000;
    color: white;
}

/* Oracle stats section */
.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

/* Oracle course highlights */
.course-highlight {
    background-color: white;
    border-left: 4px solid #ff0000;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

/* Oracle FAQ section */
.faq-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.faq-header button {
    background-color: #f8f9fa;
    color: #333;
    text-align: left;
    padding: 1.25rem;
    width: 100%;
    border: none;
    font-weight: 600;
}

.faq-header button:hover {
    color: #ff0000;
}

.faq-header button.collapsed {
    background-color: white;
}

.faq-body {
    padding: 1.25rem;
    background-color: white;
}

/* Oracle resource cards */
.resource-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    color: #ff0000;
}
/* PostgreSQL DBA Course Specific Styles */
/* All selectors are prefixed with .postgresql-dba-course to avoid clashes */

.postgresql-dba-course .postgresql-hero-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.postgresql-dba-course .postgresql-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.postgresql-dba-course .postgresql-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51,103,153,0.9) 0%, rgba(23,82,145,0.9) 100%);
    z-index: -1;
}

.postgresql-dba-course .postgresql-hero-image-wrapper {
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.postgresql-dba-course .postgresql-hero-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.postgresql-dba-course .stats-section .stat-item {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.postgresql-dba-course .stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #336799;
    margin-bottom: 5px;
}

.postgresql-dba-course .benefit-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.postgresql-dba-course .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.postgresql-dba-course .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #336799;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.postgresql-dba-course .course-highlight {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.postgresql-dba-course .testimonial-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Ensure background stays fixed */
}

.postgresql-dba-course .testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51,103,153,0.7); /* Reduced opacity for better visibility */
}

.postgresql-dba-course .testimonial-card {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.postgresql-dba-course .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.postgresql-dba-course .faq-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.postgresql-dba-course .faq-header {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
}

.postgresql-dba-course .faq-header:hover {
    background: #e9ecef;
}

.postgresql-dba-course .faq-body {
    padding: 20px;
    background: #fff;
}

.postgresql-dba-course .resource-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.postgresql-dba-course .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.postgresql-dba-course .enroll-btn {
    background: #336799;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #336799;
}

.postgresql-dba-course .enroll-btn:hover {
    background: transparent;
    color: #336799;
    border-color: #336799;
}

.postgresql-dba-course .guarantee-badge {
    background: #336799;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.postgresql-dba-course .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.postgresql-dba-course .shape {
    position: absolute;
    opacity: 0.1;
}

.postgresql-dba-course .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #336799;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.postgresql-dba-course .scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.postgresql-dba-course .scroll-top:hover {
    background: #2a5780;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .postgresql-dba-course .postgresql-hero-section {
        padding: 60px 0;
    }
    
    .postgresql-dba-course .stats-section .stat-item {
        margin-bottom: 15px;
    }
    
    .postgresql-dba-course .testimonial-section {
        padding: 60px 0;
    }
}

/* Animation classes */
.postgresql-dba-course [data-aos] {
    transition: all 0.8s ease;
}

.postgresql-dba-course [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
}

.postgresql-dba-course [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.postgresql-dba-course [data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
}

.postgresql-dba-course [data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.postgresql-dba-course [data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
}

.postgresql-dba-course [data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.postgresql-dba-course [data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

.postgresql-dba-course [data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Oracle RAC Section Wrapper - Unique Look */
.rac-hero-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 100px 20px;
    position: relative;
    color: #e6f7ff;
    text-align: center;
    overflow: hidden;
}

/* Decorative Pattern or Tech Background */
.rac-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

/* Optional: Faint Overlay */
.rac-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(15, 32, 39, 0.8), rgba(44, 83, 100, 0.8));
    z-index: 1;
}

/* Content Container */
.rac-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Title Style */
.rac-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Description / Text */
.rac-hero-text {
    font-size: 1.25rem;
    color: #ccefff;
    line-height: 1.7;
    padding: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .rac-hero-title {
        font-size: 2.2rem;
    }

    .rac-hero-text {
        font-size: 1rem;
    }
}

/* RAC Themed Testimonial Section */
.rac-testimonial-section {
    background: 
        linear-gradient(135deg, rgba(10, 44, 69, 0.9), rgba(27, 65, 107, 0.9)),
        url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?auto=format&fit=crop&w=1650&q=80') center center / cover no-repeat; /* Updated with a valid image URL */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}


.rac-testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 22, 40, 0.6);
    z-index: 0;
}

.rac-testimonial-section .container {
    position: relative;
    z-index: 1;
}

.rac-heading {
    color: #00e4ff;
    font-size: 2.5rem;
    font-weight: 700;
}

.rac-subheading {
    color: #a7d8ff;
    font-size: 1.1rem;
}

/* Cards */
.rac-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    color: #f0faff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rac-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.rac-icon {
    color: #ff5757;
    margin-bottom: 15px;
}

.rac-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d6ecff;
}

.rac-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #00e4ff;
}

.rac-name {
    font-weight: 600;
    color: #ffffff;
}

.rac-role {
    color: #aadfff;
    font-size: 0.9rem;
}
/* Final CTA - Bluish RAC Theme */
.rac-final-cta-bluish {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 44, 69, 0.9), rgba(27, 65, 107, 0.95)),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80') center center / cover no-repeat;
    padding: 80px 20px;
    overflow: hidden;
}

/* Optional: Add a faint tech overlay for subtle texture */
.rac-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(15, 32, 39, 0.6); /* dark translucent overlay */
    z-index: 0;
}

/* Content Styling */
.rac-final-cta-bluish .container {
    position: relative;
    z-index: 1;
}

.rac-cta-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #00d4ff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.rac-cta-subtitle {
    font-size: 1.25rem;
    color: #ccefff;
    max-width: 850px;
    margin: 0 auto;
}

.rac-cta-buttons a.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50px;
}

.rac-cta-buttons a.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.3);
}

.rac-cta-note {
    color: #aadfff;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rac-cta-heading {
        font-size: 2.2rem;
    }

    .rac-cta-subtitle {
        font-size: 1rem;
    }
}

/* Base Styles */
.oracle-asm-course {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Top Bar Styles */
.oracle-asm-course .top-bar {
    font-size: 0.9rem;
}

.oracle-asm-course .social-icon {
    color: #fff;
    transition: transform 0.3s ease;
}

.oracle-asm-course .social-icon:hover {
    transform: translateY(-2px);
    color: #f8f9fa;
}



/* Hero Section */
.oracle-asm-course .asm-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.oracle-asm-course .asm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.oracle-asm-course .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.oracle-asm-course .asm-hero-content h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.oracle-asm-course .trust-badge {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.oracle-asm-course .asm-hero-image-container {
    perspective: 1000px;
}

.oracle-asm-course .asm-hero-image-wrapper {
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
    transition: transform 0.5s ease;
}

.oracle-asm-course .asm-hero-image-wrapper:hover {
    transform: rotateY(0deg);
}

/* Stats Section */
.oracle-asm-course .asm-stats-section {
    background-color: #f8f9fa;
}

.oracle-asm-course .stat-item {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.oracle-asm-course .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Section Titles */
.oracle-asm-course .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.oracle-asm-course .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #dc3545;
}

/* Benefit Cards */
.oracle-asm-course .benefit-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.oracle-asm-course .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.oracle-asm-course .benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #dc3545;
}

/* Course Highlights */
.oracle-asm-course .course-highlight {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #dc3545;
}

/* Testimonial Section */
.oracle-asm-course .testimonial-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.oracle-asm-course .testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.oracle-asm-course .testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.oracle-asm-course .testimonial-card:hover {
    transform: translateY(-5px);
}

/* Guarantee Badge */
.oracle-asm-course .guarantee-badge {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Enroll Button */
.oracle-asm-course .enroll-btn {
    background-color: #dc3545;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.oracle-asm-course .enroll-btn:hover {
    background-color: transparent;
    color: #dc3545;
}

/* FAQ Section */
.oracle-asm-course .faq-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.oracle-asm-course .faq-header button {
    background-color: white;
    color: #212529;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 600;
    border: none;
}

.oracle-asm-course .faq-header button:not(.collapsed) {
    color: #dc3545;
    background-color: #f8f9fa;
}

.oracle-asm-course .faq-header button::after {
    display: none;
}

.oracle-asm-course .faq-body {
    padding: 20px;
    background-color: #f8f9fa;
}

/* Scroll to Top Button */
.oracle-asm-course .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.oracle-asm-course .scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.oracle-asm-course .scroll-top:hover {
    background-color: #c82333;
    transform: translateY(-3px);
}

/* Avatar Group */
.oracle-asm-course .avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.oracle-asm-course .avatar-sm {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .oracle-asm-course .asm-hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .oracle-asm-course .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .oracle-asm-course .top-bar > div {
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .oracle-asm-course .asm-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .oracle-asm-course .stat-item {
        margin-bottom: 15px;
    }
    
    .oracle-asm-course .testimonial-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .oracle-asm-course .asm-hero-content h1 {
        font-size: 2rem;
    }
    
    .oracle-asm-course .asm-hero-content .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .oracle-asm-course .whatsapp-icon {
        bottom: 20px;
        right: 20px;
        width: 35px;
    }
}
/* Gradient CTA Section */
.oracle-asm-course .gradient-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 50%, #004E92 100%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
}

.oracle-asm-course .btn-custom-primary {
    color: #fc8703;
    font-weight: 600;
    transition: all 0.3s ease;
}

.oracle-asm-course .btn-custom-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Gradient Animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .oracle-asm-course .gradient-cta {
        padding: 60px 0;
    }
    
    .oracle-asm-course .gradient-cta h2 {
        font-size: 2.5rem;
    }
}
/* Oracle DataGuard Course Page - Scoped Styles */
.oracle-dataguard-course {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Hero Section */
.oracle-dataguard-course .dataguard-hero-section {
    padding: 100px 0;
    position: relative;
}

.oracle-dataguard-course .dataguard-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.oracle-dataguard-course .dataguard-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.oracle-dataguard-course .gradient-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.oracle-dataguard-course .dataguard-hero-content h1 {
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.oracle-dataguard-course .trust-badge {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.oracle-dataguard-course .dataguard-hero-image-container {
    perspective: 1000px;
}

.oracle-dataguard-course .dataguard-hero-image-wrapper {
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.oracle-dataguard-course .dataguard-hero-image-wrapper:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Stats Section */
.oracle-dataguard-course .dataguard-stats-section {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.oracle-dataguard-course .stat-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.oracle-dataguard-course .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.oracle-dataguard-course .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    line-height: 1;
}

/* Benefit Cards */
.oracle-dataguard-course .benefit-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.oracle-dataguard-course .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.oracle-dataguard-course .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Section Titles */
.oracle-dataguard-course .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    color: #212529;
}

.oracle-dataguard-course .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #a71d2a 100%);
}

/* Course Highlights */
.oracle-dataguard-course .course-highlight {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}

.oracle-dataguard-course .course-highlight h3 {
    color: #343a40;
    margin-bottom: 15px;
}

/* Testimonial Section */
.oracle-dataguard-course .testimonial-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4');
    background-size: cover;
    background-position: center;
    color: white;
}

.oracle-dataguard-course .testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.oracle-dataguard-course .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.oracle-dataguard-course .testimonial-card:hover {
    transform: translateY(-10px);
}

/* FAQ Section */
.oracle-dataguard-course .faq-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.oracle-dataguard-course .faq-header button {
    background-color: #fff;
    color: #212529;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid #eee;
}

.oracle-dataguard-course .faq-header button:hover {
    color: #dc3545;
}

.oracle-dataguard-course .faq-header button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.oracle-dataguard-course .faq-header i {
    transition: transform 0.3s;
}

.oracle-dataguard-course .faq-body {
    padding: 20px;
    background-color: #f8f9fa;
}

/* Guarantee Badge */
.oracle-dataguard-course .guarantee-badge {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Enroll Button */
.oracle-dataguard-course .enroll-btn {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.oracle-dataguard-course .enroll-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

/* Scroll to Top */
.oracle-dataguard-course .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.oracle-dataguard-course .scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.oracle-dataguard-course .scroll-top:hover {
    background: #c82333;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .oracle-dataguard-course .dataguard-hero-section {
        padding: 80px 0;
    }
    
    .oracle-dataguard-course .dataguard-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .oracle-dataguard-course .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .oracle-dataguard-course .top-bar > div {
        margin-top: 5px;
    }
    
    .oracle-dataguard-course .dataguard-hero-section {
        padding: 60px 0;
    }
    
    .oracle-dataguard-course .dataguard-hero-content h1 {
        font-size: 2rem;
    }
    
    .oracle-dataguard-course .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .oracle-dataguard-course .dataguard-hero-content .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    
    .oracle-dataguard-course .dataguard-hero-content .btn {
        width: 100%;
    }
}

/* Performance Tuning Course Specific Styles */
.performance-tuning-course {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.performance-tuning-course .pt-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.performance-tuning-course .pt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.performance-tuning-course .pt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.performance-tuning-course .gradient-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.performance-tuning-course .pt-hero-content {
    padding: 2rem 0;
}

.performance-tuning-course .pt-hero-image-container {
    perspective: 1000px;
}

.performance-tuning-course .pt-hero-image-wrapper {
    transform-style: preserve-3d;
    animation: pt-float 6s ease-in-out infinite;
}

@keyframes pt-float {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(5deg); }
    50% { transform: translateY(-20px) rotateX(-5deg) rotateY(-5deg); }
}

.performance-tuning-course .trust-badge {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.performance-tuning-course .pt-stats-section {
    background-color: #f8f9fa;
}

.performance-tuning-course .pt-stat-item {
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.performance-tuning-course .pt-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.performance-tuning-course .pt-benefits-section {
    background-color: #f8f9fa;
}

.performance-tuning-course .pt-section-title {
    font-weight: 700;
    color: #212529;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.performance-tuning-course .pt-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffc107;
}

.performance-tuning-course .pt-benefit-card {
    border: none;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.performance-tuning-course .pt-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.performance-tuning-course .pt-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    font-size: 1.75rem;
    color: #ffc107;
}

/* Methodology Section */
.performance-tuning-course .pt-methodology-section {
    background-color: white;
}

.performance-tuning-course .nav-pills .nav-link.active {
    background-color: #ffc107;
    color: #212529;
    font-weight: 600;
}

.performance-tuning-course .nav-pills .nav-link {
    color: #6c757d;
    padding: 0.5rem 1.25rem;
    margin-right: 0.5rem;
    border-radius: 50px;
}

.performance-tuning-course .fa-ul {
    margin-left: 2.5rem;
}

/* Curriculum Section */
.performance-tuning-course .pt-curriculum-section {
    background-color: #f8f9fa;
}

.performance-tuning-course .pt-course-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Certification Section */
.performance-tuning-course .pt-certification-section {
    background-color: white;
}

.performance-tuning-course .pt-guarantee-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #212529;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.performance-tuning-course .pt-enroll-btn {
    background: #ffc107;
    color: #212529;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.performance-tuning-course .pt-enroll-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Experts Section */
.performance-tuning-course .pt-experts-section {
    background-color: #f8f9fa;
}

/* Testimonial Section */
.performance-tuning-course .pt-testimonial-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: white;
}

.performance-tuning-course .pt-testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.performance-tuning-course .pt-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.performance-tuning-course .pt-testimonial-card:hover {
    transform: translateY(-10px);
}

/* Details Section */
.performance-tuning-course .pt-details-section {
    background-color: white;
}

/* FAQ Section */
.performance-tuning-course .pt-faq-section {
    background-color: #f8f9fa;
}

.performance-tuning-course .pt-faq-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.performance-tuning-course .pt-faq-header button {
    padding: 1.25rem;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.performance-tuning-course .pt-faq-header button:hover {
    color: #ffc107;
}

.performance-tuning-course .pt-faq-header button:focus {
    box-shadow: none;
}

.performance-tuning-course .pt-faq-header button.collapsed i {
    transform: rotate(0deg);
}

.performance-tuning-course .pt-faq-header button i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.performance-tuning-course .pt-faq-body {
    padding: 0 1.25rem 1.25rem;
    color: #6c757d;
}

/* Final CTA */
.performance-tuning-course .gradient-cta {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
}

.performance-tuning-course .btn-custom-primary {
    background: #ffc107;
    color: #212529;
    font-weight: 600;
    transition: all 0.3s;
}

.performance-tuning-course .btn-custom-primary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Footer */
.performance-tuning-course footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.performance-tuning-course footer a:hover {
    color: #ffc107;
}

/* Scroll to Top */
.performance-tuning-course .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.performance-tuning-course .scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.performance-tuning-course .scroll-top:hover {
    background: #e0a800;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .performance-tuning-course .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .performance-tuning-course .pt-hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .performance-tuning-course .pt-hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .performance-tuning-course .trust-badge {
        justify-content: center;
    }
    
    .performance-tuning-course .pt-hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .performance-tuning-course .pt-stat-item {
        margin-bottom: 1rem;
    }
    
    .performance-tuning-course .pt-testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .performance-tuning-course .pt-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .performance-tuning-course .pt-hero-content p.lead {
        font-size: 1.1rem;
    }
    
    .performance-tuning-course .whatsapp-icon {
        width: 35px;
        bottom: 20px;
        right: 20px;
    }
}
.oem-hero-section {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.oem-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.5);
}

.oem-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 50, 0.8), rgba(0, 50, 100, 0.7));
    z-index: 2;
}

.oem-hero-content {
    position: relative;
    z-index: 3;
}

.oem-hero-image-container {
    position: relative;
    z-index: 3;
}

.oem-hero-image-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.avatar {
    height: 12px;
    width: 12px;
    background-color: #0d6efd;
}

.avatar-sm {
    height: 10px;
    width: 10px;
}

@media (max-width: 767px) {
    .display-4 {
        font-size: 2.2rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Hero Section Styles */
.rds-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .rds-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  
  .rds-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0,97,242,0.85) 0%, rgba(0,58,146,0.9) 100%);
  }
  
  .rds-hero-content {
    z-index: 1;
  }
  
  .rds-hero-image-container {
    z-index: 1;
  }
  
  .rds-hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
  }
  
  .rds-hero-image-wrapper:hover {
    transform: translateY(-5px);
  }
  
  /* Trust Badges */
  .trust-badge {
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }
  
  .trust-badge:hover {
    background-color: rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px);
  }
  
  /* Avatar Group */
  .avatar-group {
    align-items: center;
  }
  
  .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
  }
  
  .avatar-sm {
    width: 28px;
    height: 28px;
  }
  
  /* Gradient Overlay */
  .gradient-overlay {
    background: linear-gradient(
      to right,
      rgba(13, 110, 253, 0.9) 0%,
      rgba(13, 110, 253, 0.7) 100%
    );
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .rds-hero-section {
      min-height: auto;
      padding: 80px 0;
    }
    
    .rds-hero-content {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .d-flex.flex-wrap {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .rds-hero-section h1 {
      font-size: 2.5rem;
    }
    
    .rds-hero-section .lead {
      font-size: 1.1rem;
    }
    
    .trust-badge {
      font-size: 0.9rem;
      padding: 0.5rem 1rem !important;
    }
  }
  
  /* ===== Mission Section ===== */
.mission-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: #fff;
    padding: 80px 0;
}

.mission-section .section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Core Values Section ===== */
.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-section .section-title {
    color: #161b22;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Team-Card Customization for Values */
.values-section .team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.values-section .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-section .team-card i {
    color: #0d6efd;
    transition: color 0.3s ease;
}

.values-section .team-card:hover i {
    color: #6610f2;
}

.values-section .team-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.values-section .team-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .mission-section, .values-section {
        padding: 60px 0;
    }

    .mission-section p, .values-section p {
        font-size: 1rem;
    }
}
/* Hero Section - Scoped Styles */
.lcdb-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .lcdb-hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .lcdb-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .lcdb-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
  }
  
  .lcdb-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
  }
  
  .lcdb-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
  }
  
  .lcdb-hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .lcdb-hero-title {
      font-size: 3rem;
    }
    .lcdb-hero-subtitle {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .lcdb-hero-slide {
      min-height: 70vh;
    }
    .lcdb-hero-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .lcdb-hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }
    .lcdb-hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    .lcdb-hero-buttons a {
      width: 100%;
      max-width: 250px;
      margin: 0.5rem 0 !important;
    }
  }
  
  @media (max-width: 576px) {
    .lcdb-hero-title {
      font-size: 2rem;
    }
    .lcdb-hero-subtitle {
      font-size: 1rem;
    }
    .lcdb-hero-content {
      padding: 3rem 0;
    }
  }

   /* Ensure team cards have equal height and proper spacing */
.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make sure the content fills the card properly */
.team-card p {
    flex-grow: 1;
}

/* Center the team section title */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Add consistent padding to the section */
.team-section {
    padding: 4rem 0;
}