* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: #000;
    /* background-image: url(./asset/Images/bg.jpg); */

}

/* Header Styles */
.header {
    background-color: #0b1040;
    /* Dark blue from the image */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo Styles */
.logo img {
    width: 222px;

}

.logo p {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation Menu Styles */
.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin-left: 25px;
    /* Spacing between menu items */
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #66ccff;
    /* Lighter blue on hover */
}

/* Get Details Button */
.get-details-btn {
    background: linear-gradient(to right, #613dff, #ff3e57);
    /* Green color from the image */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.get-details-btn:hover {
    background-color: #218838;
    /* Darker green on hover */
}

/* Hamburger Menu (Hidden by default on desktop) */
.hamburger-menu {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu ul li {
        margin-left: 18px;
        /* Slightly reduce spacing for tablets */
    }
}

@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        margin-right: auto;
        /* Push logo to the left */
    }

    .nav-menu {
        flex-basis: 100%;
        /* Take full width */
        order: 3;
        /* Move below the button on smaller screens */
        display: none;
        /* Hide by default */
        text-align: center;
        background-color: #1a1e36;
        /* Same background for dropdown */
        padding: 10px 0;
        position: absolute;
        top: 80px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: block;
        /* Show when active */
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
        /* Vertical spacing for mobile menu */
    }

    .get-details-btn {
        order: 2;
        /* Position button before hamburger */
        margin-left: auto;
        /* Push button to the right */
    }

    .hamburger-menu {
        display: block;
        /* Show hamburger icon */
        order: 1;
        /* Position hamburger first, then button */
        margin-left: 20px;
        /* Spacing from button */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo h1 {
        font-size: 1.8em;
    }

    .logo p {
        font-size: 0.7em;
    }

    .logo img {
        width: 142px;

    }

    .get-details-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .nav-menu {
        top: 70px;
        /* Adjust for smaller header height */
    }
}

/* Main Header CSS */

.hero-section {
    background: url(./asset/Images/Ethical_Hacking_Exposed_For_Beginners.jpg);
    padding: 50px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.left-content {
    flex: 1 1 55%;
    color: #fff;
}

.badges {
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    margin-right: 10px;
    color: white;
}

.badge.grey {
    background-color: #e60023;
}

.badge.red {
    background-color: #e60023;
}

.left-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.left-content h1 {
    font-size: 32px;
    color: #ffd700;
    margin: 15px 0;
}

.left-content h1 strong {
    text-decoration: underline;
}

.left-content p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.left-content ul {
    margin-bottom: 25px;
}

.left-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.brochure-btn {
    background: linear-gradient(to right, #613dff, #ff3e57);
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.brochure-btn:hover {
    background: linear-gradient(to right, #613dff, #ff3e57);
    ;
}

.right-form {
    flex: 1 1 28%;
    /*background: #fff;*/
    /*padding: 25px;*/
    border-radius: 12px;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.right-form h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.right-form p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.right-form input,
.right-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.right-form button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.right-form button:hover {
    background-color: #cc5200;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-content,
    .right-form {
        flex: 1 1 100%;
    }

    .left-content h1 {
        font-size: 24px;
    }
}


/* CEH Course details */

.ceh-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #0b1040 0%, #0b1040 50%, #102046 100%);
}

.ceh-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ceh-left img {
    width: 100%;
    max-width: 480px;
    /* border: 5px solid #fff;
  border-radius: 6px; */
}

.ceh-right {
    flex: 1;
    max-width: 600px;
}

.ceh-right .subtitle {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ceh-right h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    color: rgb(255, 255, 255);
    text-align:left;
}

.ceh-right p {
    font-size: 16px;
    color: #dcdcdc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ceh-right ul {
    padding-left: 10px;
    margin-bottom: 25px;
    list-style-type:none;
}

.ceh-right ul li {
    margin-bottom: 15px;
    padding-bottom: 12px;
    font-size: 16px;
    color: white;
}

.cta-button {
    background: linear-gradient(to right, #613dff, #ff3e57);
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .ceh-container {
        flex-direction: column;
        text-align: center;
    }

    .ceh-left img {
        max-width: 100%;
    }

    .ceh-right h2 {
        font-size: 24px;
    }

    .ceh-right p,
    .ceh-right ul li {
        font-size: 15px;
    }

    .cta-button {
        display: inline-block;
        margin-top: 15px;
    }
}


/* Labs Gallery  */

.lab-carousel-section {
    padding: 60px 20px;
    text-align: center;
    background-image: url(./asset/Images/facts-bg.png);
    background-position: top;
    background-repeat: no-repeat;
}

.lab-carousel-section .section-title {
    font-size: 2.4em;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: bold;
}


/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1200px;
    /* Max width of the entire carousel block */
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* Vertically center buttons with track */
    padding: 0 40px;
    /* Padding for buttons to sit outside the track wrapper */
}

/* Carousel Navigation Buttons */
.carousel-nav {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2.5em;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    /* Prevent buttons from shrinking */
}

.carousel-nav:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-nav:disabled {
    background-color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

/* Carousel Track Wrapper - The visible window */
.carousel-track-wrapper {
    overflow: hidden;
    /* Crucial: Hides overflowing items */
    flex-grow: 1;
    /* Allows it to take available space */
    margin: 0 20px;
    /* Space between buttons and track */
}

/* Carousel Track - This element slides */
.carousel-track {
    display: flex;
    /* Use gap for spacing between items */
    gap: 20px;
    /* Gap between individual carousel items */
    transition: transform 0.5s ease-in-out;
    /* Smooth sliding animation */
}

/* Carousel Item - Each image container */
.carousel-item {
    flex-shrink: 0;
    /* Prevent items from shrinking below their content size */
    width: calc(100% / 3 - (20px * 2 / 3));
    /* Default to 3 items per view + gaps */
    /* This calculation is (total width / number of items) - (total gap space / number of items) */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Hide anything spilling out of the item */
    display: flex;
    /* For centering image */
    justify-content: center;
    align-items: center;
    min-height: 200px;
    /* Minimum height for consistency */
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    object-fit: cover;
    /* Cover the item area, potentially cropping */
    border-radius: 8px;
    /* Match parent border-radius */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .carousel-item {
        width: calc(100% / 2 - 10px);
        /* 2 items per view on tablets */
        /* For 2 items with 20px gap, it's (100% / 2) - (20px / 2) */
    }
}

@media (max-width: 768px) {
    .lab-carousel-section {
        padding: 40px 10px;
    }

    .lab-carousel-section .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .carousel-container {
        padding: 0 10px;
        /* Reduce padding for buttons */
    }

    .carousel-nav {
        font-size: 2em;
        width: 40px;
        height: 40px;
        margin: 0 5px;
        /* Adjust button margin */
    }

    .carousel-track-wrapper {
        margin: 0 10px;
        /* Smaller space between buttons and track */
    }

    .carousel-item {
        width: 100%;
        /* 1 item per view on mobile */
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .lab-carousel-section .section-title {
        font-size: 1.8em;
    }

    .carousel-container {
        padding: 0 5px;
    }

    .carousel-nav {
        font-size: 1.8em;
        width: 35px;
        height: 35px;
    }
}

/* course css */

.course-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background-image: url(./asset/Images/video-bg.png);
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    font-size: 52px;
    color: #fff;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-top: 30px;
}

.section-title .underline {
    display: block;
    width: 120px;
    height: 5px;
    background-color: red;
    margin: 8px auto 0;
    border-radius: 10px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.course-card {
    background-color: #e5e7f3;
    border: 2px solid red;
    border-radius: 12px;
    width: 45%;
    min-width: 300px;
    padding: 43px;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon {
  font-size: 26px;
  color: #fff;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  flex-shrink: 0;

  /* animation */
  animation: popIn 1.5s ease-in-out infinite;
}

@keyframes popIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* enlarge */
  }
  100% {
    transform: scale(1);
  }
}


.card:hover .icon {
  animation: popIn 0.6s ease-out forwards;
}

.content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
}

.apply-btn {
    background-color: red;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .course-card {
        width: 90%;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Module  */

.course-modules-two-column {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.Module-title .underline {
    display: block;
    width: 120px;
    height: 5px;
    background-color: red;
    margin: 14px auto 0;
    border-radius: 10px;
    padding-top: 8px;
}

.course-modules-two-column h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 30px;
}

.module-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.module-column {
    flex: 1;
    min-width: 280px;
}

.module {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.module-header {
    padding: 15px 20px;
    cursor: pointer;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-header h3 {
    margin: 0;
    font-size: 1rem;
}

.plus-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    background-color: red;
    color: white;
}

.module.open .plus-icon {
    transform: rotate(45deg);
    background-color: red;
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f4f4f4;
    color: #000000;
    padding: 0 20px;
}

.module.open .module-content {
    max-height: 300px;
    padding: 15px 20px;
}

@media (max-width: 768px) {
    .module-columns {
        flex-direction: column;
    }
}

/* After course apportunity */

.features-section {
    max-width: 100%;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #000b41;
    border-top: 1px solid white;
}

.features-title {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.features-title .underline {
    display: block;
    width: 120px;
    height: 5px;
    background-color: red;
    border-radius: 10px;
    margin: 8px auto 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    justify-self: center;
}

.feature-box {
    background-color: #e5e7f3;
    border: 2px solid red;
    border-radius: 12px;
    padding: 30px 20px;
    width: 250px;
    text-align: center;
}

.feature-icon {
    background-color: red;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 40px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 1s infinite; /* 1 second, repeat forever */
}

@keyframes pop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* enlarge at midpoint */
  }
}

.feature-box p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .features-title {
        font-size: 28px;
    }

    .feature-box {
        width: 90%;
    }
}

.timeline-section {
    padding: 60px 20px;
    background-color: #000b41;
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
}

.timeline-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.timeline-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.module-container {
    width: 100%;

    height: auto;
    display: flex;
    justify-content: center;
    display: flex;

}

.module-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        margin-left: 30px;
        padding-left: 20px;
    }

    .timeline-title {
        font-size: 26px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .timeline-point {
        left: -31px;
    }
}

/* Tools we cover */

.tools-section {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid white;
    background-image: url(./asset/Images/video-bg.png);
    background-position: left;
    background-repeat: no-repeat;
}

.section-title {
    font-size: 2.4em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 5px;
    background-color: red;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(to right, #613dff, #ff3e57);
    ;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Section specific styling */
.partners-section {
    padding: 60px 0;
    background-color: #000000;
    /* White background for the section */
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    text-align: center;
    width:100%;
}

.partners-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Carousel Styling */
.logo-carousel-wrapper {
    overflow: hidden;
    /* Hides parts of the track outside the visible area */
    white-space: nowrap;
    /* Prevents logos from wrapping to the next line */
    position: relative;
    /* For potential absolute positioning later if needed */
    padding: 20px 0;
    /* Vertical padding around the logos */
    width:100%;
}

.logo-track {
    display: flex;
    /* Arrange logos in a row */
    /* Set a width that is at least twice the width of your original set of logos 
       to allow for seamless looping. This width will be adjusted in media queries.*/
    width: calc((150px + 30px) * 8 * 2);
    /* (logo_width + margin) * num_logos * 2 (for duplication) */
    animation: scrollLogos 30s linear infinite;
    /* Animation for continuous scroll */
    /* Adjust animation duration based on number of logos and desired speed */
}

/* Pause animation on hover */
.logo-carousel-wrapper:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    /* Prevents logos from shrinking */
    width: 150px;
    /* Fixed width for each logo item */
    height: 80px;
    /* Fixed height for each logo item */
    object-fit: contain;
    /* Ensures the logo image fits within its bounds without distortion */
    margin: 0 30px;
    /* Spacing between logos */
    /* filter: grayscale(100%); Apply grayscale filter to logos */
    opacity: 2;
    /* Make them slightly transparent */
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effects */
}

.logo-item:hover {
    /* filter: grayscale(0%); Remove grayscale on hover */
    opacity: 2;
    /* Full opacity on hover */
    /* transform: scale(1.05); Slightly enlarge on hover */
}

/* GLOBAL Keyframe animation for scrolling logos - Defined ONLY ONCE */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
        /* Start from the original position */
    }

    100% {
        /* This should be half the total width of the .logo-track, 
           i.e., the width of one complete set of logos. 
           (logo_width + margin) * number_of_original_logos */
        transform: translateX(calc(-180px * 8));
        /* (150px + 30px) * 8 */
    }
}


/* Responsive adjustments */

/* For screens up to 1024px wide (e.g., smaller desktops, large tablets) */
@media (max-width: 1024px) {
    .logo-item {
        width: 120px;
        height: 70px;
        margin: 0 25px;
    }

    .logo-track {
        /* Update track width based on new logo item dimensions */
        width: calc((120px + 25px) * 8 * 2);
        /* (120px + 25px) * 8 logos * 2 sets */
        animation-duration: 25s;
        /* Slightly faster for smaller screens */
    }

    /* No @keyframes redefinition here! */
}

/* For screens up to 768px wide (e.g., tablets) */
@media (max-width: 768px) {
    .partners-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .logo-item {
        width: 100px;
        height: 60px;
        margin: 0 20px;
    }

    .logo-track {
        /* Update track width based on new logo item dimensions */
        width: calc((100px + 20px) * 8 * 2);
        /* (100px + 20px) * 8 logos * 2 sets */
        animation-duration: 20s;
    }

    /* No @keyframes redefinition here! */
}

/* For screens up to 480px wide (e.g., mobile phones) */
@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-section h2 {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .logo-item {
        width: 80px;
        height: 50px;
        margin: 0 15px;
    }

    .logo-track {
        /* Update track width based on new logo item dimensions */
        width: calc((80px + 15px) * 8 * 2);
        /* (80px + 15px) * 8 logos * 2 sets */
        animation-duration: 15s;
        /* Even faster for mobile as fewer logos are visible */
    }

    /* No @keyframes redefinition here! */
}

/* .logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  background-color: white;
  margin-top: 20px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

/* .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
} */

/* .logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  width: 150px;
} */
*/
/* Exam Details */

.exam-details-section {
    padding: 50px 20px;
}

.exam-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.exam-image img {
  width: 600px; /* adjust */
  display: block;
  margin: 0 auto;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.exam-info {
    max-width: 600px;
}

.exam-info h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: white;
}

.exam-list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.exam-info h3 {
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.exam-info p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.buy-btn {
    display: inline-block;
    background: linear-gradient(to right, #613dff, #ff3e57);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}

.buy-btn:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .exam-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .exam-info {
        max-width: 90%;
    }

    .exam-image img {
        max-width: 300px;
    }
}

/* FAQ */

.faq-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-image: url(./asset/Images/facts-bg.png);

}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: white;
    padding-bottom: 20px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #000000;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding-left: 12px;
}

.faq-question span {
    margin-right: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #000000;
    background-color: #ffffff;
    font-size: 0.99em;
    padding-left: 12px;
    font-weight: bold;
    line-height: 2;
    border-top: 1px solid gray;

}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 8px;
}

.faq-item .icon {
    color: #ffffff;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    color: #ffffff;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Testimonial */

/* Testimonial Section Styling */
.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000000;
    /* Slightly darker background for the section */
    background-image: url(./asset/Images/cases-imgs\ \(1\).png);
    background-position: top;
    background-repeat: no-repeat;
}

.testimonial-section .subtitle {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.testimonial-section h2 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Slider Wrapper - The visible window */
.slider-wrapper {
    max-width: 900px;
    /* Max width of the visible slider area */
    margin: 0 auto 40px auto;
    /* Center it and add space below */
    overflow: hidden;
    /* Crucial: Hides anything outside this container */
    position: relative;
    /* For potential future absolute positioning of arrows */
}

/* Testimonial Slider - The moving track */
.testimonial-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    /* Smooth sliding animation */
    /* The width of this track will be set dynamically by JS */
}

/* Testimonial Card */
.testimonial-card {
    flex-shrink: 0;
    /* Prevents cards from shrinking */
    width: 100%;
    /* Default to 1 card per view for mobile */
    max-width: 400px;
    /* Max width for individual card */
    margin: 0 10px;
    /* Horizontal spacing between cards */
    padding: 30px;
    /* background-color: #fff; */
    background: linear-gradient(to right, #c1e7f9, #ffffff);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card .user-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff6347;
    /* Accent border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-card h3 {
    font-size: 1.4em;
    color: #1a1e36;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows review text to take available space for consistent card height */
}

.testimonial-card .google-badge {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    opacity: 0.8;
}

/* Dots Navigation */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background-color: #ff6347;
    /* Active dot color */
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background-color: #888;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial-section h2 {
        font-size: 2.2em;
    }

    .testimonial-card {
        padding: 25px;
        margin: 0 8px;
    }

    .testimonial-card h3 {
        font-size: 1.3em;
    }

    .testimonial-card p {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .testimonial-card {
        width: 100%;
        /* Ensure only one card is fully visible */
        margin: 0 5px;
        padding: 20px;
    }

    .testimonial-card .user-img {
        width: 80px;
        height: 80px;
    }

    .testimonial-card h3 {
        font-size: 1.2em;
    }

    .testimonial-card p {
        font-size: 0.9em;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .testimonial-section .subtitle {
        font-size: 0.9em;
    }

    .testimonial-section h2 {
        font-size: 1.7em;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 15px;
        margin: 0 5px;
    }

    .testimonial-card .user-img {
        width: 70px;
        height: 70px;
    }

    .testimonial-card h3 {
        font-size: 1.1em;
    }

    .testimonial-card p {
        font-size: 0.85em;
    }
}

/* Footer */

.site-footer {
    background-color: #0b1040;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-logo {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.footer-section img {
    width: 222px;
    height: auto;
}

/* .footer-logo span {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 5px;
} */

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    /* filter: brightness(0) invert(2); */
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons a {
        margin-right: 15px;
        margin-bottom: 10px;
    }
}

/* Whatsapp button */

/* WhatsApp Chat Button Styling */
.whatsapp-chat-button {
    position: fixed;
    /* Makes the button fixed relative to the viewport */
    bottom: 30px;
    /* 30px from the bottom of the screen */
    right: 30px;
    /* 30px from the right of the screen */
    background-color: #25D366;
    /* WhatsApp green color */
    color: #fff;
    padding: 12px 25px;
    /* Adjust padding as needed */
    border-radius: 50px;
    /* Highly rounded corners for a pill shape */
    display: flex;
    /* Use flexbox to align icon and text */
    align-items: center;
    /* Vertically center icon and text */
    text-decoration: none;
    /* Remove underline from the link */
    font-family: 'Arial', sans-serif;
    /* Or your website's font */
    font-size: 1.1em;
    /* Adjust font size */
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for depth */
    z-index: 9999;
    /* Ensure it stays on top of other content */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effects */
}

.whatsapp-chat-button:hover {
    transform: translateY(-3px);
    /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow on hover */
}

.whatsapp-icon {
    width: 24px;
    /* Size of the WhatsApp icon */
    height: 24px;
    margin-right: 10px;
    /* Space between icon and text */
    /* If your icon image has a background, you might need to make it transparent or use SVG */
    object-fit: contain;
    /* Ensures the icon scales correctly */
}

/* Hide text on smaller screens (optional, but common for mobile floating buttons) */
@media (max-width: 768px) {
    .whatsapp-chat-button {
        padding: 10px 15px;
        /* Adjust padding for mobile */
        right: 20px;
        /* Slightly less from right */
        bottom: 20px;
        /* Slightly less from bottom */
        font-size: 1em;
        /* Slightly smaller font */
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }

    /* Option 1: Stack icon and text for very small screens if needed */
    /* .whatsapp-chat-button {
        flex-direction: column;
        padding: 10px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
    }
    .button-text {
        display: none; // Hide text on very small screens, only show icon
    }
    .whatsapp-icon {
        margin-right: 0;
        margin-bottom: 0px; // Adjust if you want icon to fill the circle
    } */

    /* Option 2: Just hide the text and show only the icon on very small screens */
    .whatsapp-chat-button .button-text {
        display: none;
        /* Hide the text on mobile, showing only the icon */
    }

    .whatsapp-chat-button {
        width: 50px;
        /* Make button round for icon only */
        height: 50px;
        padding: 0;
        /* Remove padding */
        justify-content: center;
        /* Center icon */
        border-radius: 50%;
        /* Make it perfectly round */
    }

    .whatsapp-icon {
        margin-right: 0;
        /* Remove margin if text is hidden */
    }
}

/* Adjust position if it conflicts with other fixed elements (e.g., cookie consent banner) */
/* @media (max-width: XXXpx) {
    .whatsapp-chat-button {
        bottom: 80px; // Example: if a cookie banner appears at the bottom
    }
} */

/* Hide buttons by default for larger screens */
.mobile-action-buttons {
    display: none; /* Hidden on desktop/tablet */
    width: 100%;
    justify-content: center; /* Center buttons horizontally if they don't fill width */
    gap: 10px; /* Space between buttons */
    padding: 10px 0; /* Optional: padding above/below the button container */
}

/* Base styling for all action buttons */
.action-button {
    flex: 1; /* Allows buttons to share available space equally */
    max-width: 250px; /* Limits button width on larger phones/small tablets */
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px; /* Slightly rounded corners */
    font-family: Arial, sans-serif; /* Or your preferred font */
    font-size: 20px; /* Adjust font size as needed */
    font-weight: bold;
    text-decoration: none; /* Remove underline from links */
    display: flex; /* Use flex to vertically center text if needed */
    align-items: center; /* Vertically center text */
    justify-content: center; /* Horizontally center text */
    white-space: nowrap; /* Prevents text from wrapping */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background-color 0.3s ease, transform 0.1s ease; /* Smooth hover effects */
}

/* Specific styling for the "Apply Now" button (Red) */
.apply-now-button {
    background-color: linear-gradient(to right, #613dff, #ff3e57); /* Bright Red */
    color: rgb(0, 0, 0);
}

.apply-now-button:hover {
    background-color:linear-gradient(to right, #613dff, #ff3e57); /* Slightly darker red on hover */
    transform: translateY(-1px); /* Slight lift on hover */
}

/* Specific styling for the "Call Now" button (Yellow) */
.call-now-button {
    background-color: linear-gradient(to right, #613dff, #ff3e57); /* Bright Yellow */
    color: black; /* Black text for better contrast on yellow */
}

.call-now-button:hover {
    background-color: linear-gradient(to right, #613dff, #ff3e57); /* Slightly darker yellow/orange on hover */
    transform: translateY(-1px); /* Slight lift on hover */
}

/* Media query to display and fix buttons ONLY on phone devices */
@media (max-width: 767px) { /* Typically targets phones (adjust max-width if needed) */
    .mobile-action-buttons {
        display: flex; /* Show the container on mobile */
    }

    /* Fixed positioning for the bottom bar on mobile */
    .mobile-action-buttons.fixed-bottom {
        position: fixed; /* THIS IS THE KEY */
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgb(0, 0, 0); /* Background for the fixed bar, or transparent */
        /* border-top: 1px solid #eee; Optional top border */
        z-index: 999; /* Ensure it's above other content */
        padding: 10px; /* Padding for the bar itself */
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Shadow for fixed bar */
    }

    .mobile-action-buttons.fixed-bottom .action-button {
        flex: 1; /* Ensure buttons stretch to fill the fixed bar */
        margin: 0 5px; /* Add margin between buttons when fixed */
        background-color: rgb(0 167 36);
        color: white;
    }
}

/* By default, hide the banner for desktop sizes */
.hero-banner {
  display: none; /* Hide by default */
}

/* Media query for smaller screens (phones) */
/* This will show the banner only when the screen width is 768px or less */
@media (max-width: 768px) {
  .hero-banner {
    display: block; /* Show the banner on screens up to 768px wide */
    width: 100%; /* Ensures the banner takes full width */
    overflow: hidden; /* Hides any overflowing content */
    position: relative; /* Allows for absolute positioning of child elements */
    max-height: 400px; /* Adjust as needed for your desired phone banner height */
    background-color: #000; /* Example background color */
  }

  .hero-image {
    width: 100%; /* Makes the image take 100% of the banner's width */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Removes any extra space below the image */
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    object-position: center; /* Centers the image within its container */
  }

  /* Adjustments for even smaller phone screens */
  @media (max-width: 480px) {
    .hero-banner {
      max-height: 300px; /* Further adjustment for very small screens */
    }
  }

  /* If you have .hero-content for text overlay (optional) */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Or whatever color your text should be */
    text-align: center;
    z-index: 1; /* Ensures content is above the image */
    padding: 15px; /* Slightly less padding for smaller screens */
    font-size: 0.9em; /* Adjust font size if needed */
  }
}

/* pop up Form */

/* Open Button Styling */
.open-button {
    background-color: #007bff;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

/* Pop-up Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    display: flex; /* Kept flex here to center popup-content when it IS displayed */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of other content */
}

/* Pop-up Content Box */
.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%; /* Responsive width */
    max-width: 450px; /* Maximum width for larger screens */
    position: relative;
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
}

.close-button:hover {
    color: #555;
}

/* Form Headings */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding in width */
    font-size: 16px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Required Field Asterisk */
.required {
    color: #ff4500; /* Orange-red for required fields */
    margin-left: 3px;
}

.required-note {
    font-size: 14px;
    color: #777;
    text-align: right;
    margin-top: 20px;
}

/* Submit Button */
.submit-button {
    background-color: #ff4500; /* Orange-red as in the image */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e63900;
}

/* Media Queries for Responsiveness */

/* For screens smaller than 600px */
@media (max-width: 600px) {
    .popup-content {
        width: 95%; /* Slightly more padding on smaller screens */
        padding: 20px;
    }

    h2 {
        font-size: 22px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input {
        padding: 10px;
        font-size: 15px;
    }

    .submit-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* For screens smaller than 400px */
@media (max-width: 400px) {
    .popup-content {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .submit-button {
        padding: 10px 15px;
        font-size: 15px;
    }
}

/*trustpilot banner*/

.banner-full {
  width: 100%;           
  overflow: hidden;      
}

.banner-full img {
  width: 100%;           
  height: auto;          
  display: block;        
}



.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #000000;
  padding: 10px;
  text-align: left;
  font-size: 14px;
  background: aliceblue;
}

.responsive-table thead {
  background: #f8f8f8;
}

/* Mobile view: stack each cell as a block with its label */
@media (max-width: 768px) {
  .responsive-table thead {
    display: none; /* hide header row */
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 15px;
    border: 1px solid #000;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
  }

  .responsive-table td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    background: whitesmoke;
  }

  .responsive-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    white-space: nowrap;
  }
}



.placements-section {
  padding: 20px 0 70px;
  background-color: #000; 
}

.section-title {
  text-align: center;          
  max-width: 800px;            
  margin: 0 auto 50px auto;    
}

.section-title span {
  display: block;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 16px;
}

.section-title h1 {
  color: #fff;
  font-size: 36px;
  margin: 0;
}

/* Grid layout for images */
.placements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Each image item */
.placement-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.placement-item img:hover {
  transform: scale(1.03);
}

.cta-button {
  display: inline-block;
  background-color: #e60000; /* red CTA color */
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #c50000;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/*Certificate */

/* CAROUSEL STYLING */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 0 1rem;
}

/* New CSS to style the image inside the slide */
.certificate-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 33.333%; }
}
@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 50%; }
}
@media (max-width: 480px) {
  .carousel-slide { flex: 0 0 100%; }
}


/* NAVIGATION BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.carousel-btn:hover {
    opacity: 1;
}

.carousel-btn.prev-btn {
    left: 1rem;
}

.carousel-btn.next-btn {
    right: 1rem;
}

/* PAGINATION DOTS */
.pagination-dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #717171;
}

/*/whatsapp popup*/
/* Show only on phones (max width 768px) */
@media (max-width: 768px) {
  .whatsapp-icon {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: blink 1.2s infinite; /* blink effect */
  }

  .whatsapp-icon img {
    width: 30px;
    height: 30px;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
  }
}

/* Hide on desktop */
@media (min-width: 769px) {
  .whatsapp-icon {
    display: none;
  }
}




