@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background-image: url('../../Images/Page Images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
}

a {
    color: #FFFF00;
    text-decoration: none;
}

a:hover {
    color: #FFFF00;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    color: #FFFFFF;
}

/* TITLE TOP ------------------------------------------------------------ */
.titletop-box {
    background-color: #ffbb00;
    color: black;
    border-radius: 0 0 15px 15px;
    padding: 5px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

@media (max-width: 768px) {
    .titletop-box {
        font-size: 14px;
    }
}

/* TEXT BOX------------------------------------------------------------*/
.textbox {
    font-size: 40px;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .textbox {
        font-size: 20px;
    }
}

/* Paragraph-1 ---------------------*/
.para1 {
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    display: inline-block;
	font-size: 24px;
}
@media (max-width: 768px) {
    .para1 {
        font-size: 18px;
    }
}

/* ----GLOW BUTTON -------------------------------------*/
/* ----GLOWING IMAGE ONLY (PNG) -------------------------------------*/
.glowing-button {
    animation: glow 1.5s infinite, moveLeftRight 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px yellow); /* Create the glow effect around the image */
    transition: filter 0.5s ease-in-out;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px yellow);
    }
    50% {
        filter: drop-shadow(0 0 20px yellow);
    }
    100% {
        filter: drop-shadow(0 0 5px yellow);
    }
}

@keyframes moveLeftRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px); /* Move left */
    }
}

/*------COUNT DOWN TIMER ------------------------ */
 .counter {
            background-color: #111111;
            color: #ffffff;
            border: 2px solid #ffbb00;
            text-align: center;
            padding: 15px;
            margin: 10px;
            border-radius: 10px;
            width: 100px; /* Width of the counter boxes */
        }
        .counter-number {
            font-size: 2rem; /* Larger text for numbers */
        }
        .label {
            font-size: 0.75rem; /* Smaller text for labels */
        }
        .counter-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }



/* Rounded Text
/* Custom Rounded Rectangle Styling */
.custom-rounded-rectangle {
    background-color: #111111; /* Background color */
    border: 1px solid #2d2d2d; /* 1px border */
    border-radius: 15px; /* Rounded corners */
    padding: 10px; /* Padding inside the rectangle */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
}

/* Flex container for icon and text */
.icon-container {
    display: flex; /* Flex for alignment */
    align-items: center; /* Align icon and text vertically */
}

.icon {
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
    margin-right: 10px; /* Space between icon and text */
    margin-top: -45px; /* Adjusted top margin for vertical alignment */
}

.custom-rectangle-text {
    color: #ffffff; /* White text color */
    font-size: 18px; /* Text size for content */
    padding-left: 5px; /* Padding left for the text */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .custom-rectangle-text {
        font-size: 16px; /* Smaller font size for mobile */
    }

    .mb-2 {
        margin-bottom: 5px !important; /* Force gap to 5px for smaller displays */
    }

    .icon {
        width: 16px; /* Reduced icon width */
        height: 16px; /* Reduced icon height */
        margin-top: -35px; /* Adjusted top margin for vertical alignment */
    }
}


/*------------- CUSTOM CARD------------------------ */
.custom-card {
            background-color: #1c1c1c; /* Card background color */
            border-color: #2d2d2d; /* Card border color */
            color: white; /* Text color */
        }
        .custom-card .card-header {
            border-bottom: none; /* Remove border from card header */
            background-color: transparent;
        }
        .icon-size {
            font-size: 2rem;
        }

/*------------------Image Part------------*/
/* Left Part - Ensuring full height and image scaling */
/* Left Part - Ensuring full height and image scaling */
.left-part {
    height: 100%; /* Full height */
}

/* Right Part - Custom styling */
.right-part {
    height: 100%;
    padding-left: 30px !important;
    font-size: 1.25rem;
}

/* Make image full-screen on small devices and round corners */
@media (max-width: 768px) {
    .left-img {
        width: 100vw;  /* Full viewport width */
        height: 100vh; /* Full viewport height */
        object-fit: cover; /* Ensure image covers the full area without distortion */
        border-radius: 20px; /* Rounding the corners */
    }
}

/* Round the corners of the image for larger screens as well */
.left-img {
    border-radius: 20px; /* Adjust the value as needed */
}


/*--------------- Xbox details-------------------*/

 /* Container settings */
        .xcontainer {
            max-width: 1140px; /* Fixed width container */
            margin: 0 auto;
        }

        /* Box settings */
        .xbox {
            background-color: #181a1f;
            border: 1px solid #494a4e; /* Reduced border to 1px */
            border-radius: 15px;
            padding: 5px;
            display: flex;
            align-items: center; /* Vertically center */
            justify-content: flex-start;
            height: 60px; /* Increased height for the box */
        }

        /* Image container settings */
        .ximage-container {
            display: flex;
            padding-left: 10px; /* Adjusted padding */
            align-items: center; /* Vertically center the icon */
        }

        /* Icon settings */
        .xicon {
            color: #ffbb00; /* Icon color */
            font-size: 24px; /* Reduced icon size */
        }

        /* Text settings */
        .xtext {
            color: #ffffff;
            font-size: 1rem; /* Reduced font size */
        }

        /* Responsive behavior */
        @media (max-width: 768px) {
            .col-lg-6 {
                margin-bottom: 0px; /* Reduced margin bottom on small screens */
            }

            .xbox {
                padding: 10px; /* Less padding inside the boxes for smaller screens */
                height: 60px; /* Adjusted height for smaller screens */
            }

            .xicon {
                font-size: 20px; /* Smaller icon size for small screens */
            }

            .xtext {
                font-size: 0.9rem; /* Smaller font size for small screens */
            }
        }

/*-------------- INSTA CONTAINER --------------------*/
.instacontainer {
    background-color: #181a1f; /* Background color for the container */
}

.instavideo-container {
    border: 2px solid #494a4e; /* Border color for the video container */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensures rounded corners are applied to the video */
}

.instavideo-container iframe {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    min-height: 600px; /* Minimum height for the video */
}

/* Adjustments for smaller screens */
@media (max-width: 576px) {
    .instavideo-container {
        min-height: 300px; /* Adjusted height for small screens */
    }
}


/*------------- A Container --------------------*/
/*------------- A Container --------------------*/
.acontainer {
    background-color: #141519; /* Background color of the container */
    padding: 10px; /* Optional padding for the container */
}

.abox {
    background-color: #1e2125; /* Darker background for the box */
    border-radius: 15px; /* Rounded corners */
    padding: 5px; /* Padding inside the box */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.abox:hover {
    background-color: #2a2d31; /* Slightly lighter on hover */
}

/* Increased Image container size */
.aimage-container {
    width: 120px; /* Increased width for larger screens */
    height: 120px; /* Increased height for larger screens */
}

.aimage {
    width: 100%; /* Responsive image to fit the container */
    height: auto; /* Maintain aspect ratio */
}

/* Additional size increase for larger displays */
@media (min-width: 992px) { /* For larger screens */
    .aimage-container {
        width: 150px; /* Increased width for large screens */
        height: 150px; /* Increased height for large screens */
    }

    .aimage {
        max-width: 150px; /* Ensure image fits the container */
        max-height: 150px; /* Maintain aspect ratio */
    }
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .mb-2 {
        margin-bottom: 0.5rem; /* Reduced bottom gap for smaller screens */
    }

    .aimage-container {
        width: 120px; /* Maintain larger size for mobile screens */
        height: 120px; /* Maintain larger size for mobile screens */
    }

    .atext {
        font-size: 14px; /* Text size for mobile screens */
    }
}

.atext {
    font-size: 14px; /* Text size */
    color: #ffffff; /* White text color */
}




/*--------------- BBox ---------------------*/
.bbox-left {
    background-color: #1f1f1f;
    padding: 10px;
    border: 1px solid #ddd;
}

.bbox-right {
    background-color: #1f1f1f;
    padding: 10px;
    border: 1px solid #ddd;
}

.bbox-content {
    height: 450px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #bbb;
    background-color: #1f1f1f;
}

/*-------------- Small Division ---------- */
.small-div {
height: 20px; /* Adjust as needed */
}

.smaller-div {
height: 10px; /* Adjust as needed */
}

.long-div {
height: 100px; /* Adjust as needed */
}

/* ------------- Cboc --------------------*/
/* ------------- Cbox --------------------*/
.cbox {
    display: flex; /* Use flexbox to align items in a row */
    align-items: center; /* Center vertically */
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 10px; /* Reduced padding to decrease height */
    text-align: center;
    border: 1px solid #2d2d2d;
    transition: all 0.3s ease;
    width: 100%; /* Ensures the span takes up full width */
    box-sizing: border-box;
    background-color: #131519; /* Updated background color */
    color: #ffffff; /* White text color */
}

.cbox:hover {
    background-color: #1e2125; /* Darker background on hover */
}

.cicon {
    font-size: 30px; /* Reduced icon size */
    color: #ffbb00;
    margin-right: 10px; /* Spacing between icon and text */
}

.ctext {
    margin: 0; /* Remove top margin */
    font-size: 16px; /* Reduced font size */
    font-weight: 600;
    color: #ffffff; /* White text color */
}

/* Responsive Image */
.responsive-image {
    width: 100%;
    padding-top: 50%; /* This maintains a 600px width to 300px height ratio */
    background-image: url('../../Images/Page Images/Live Session.png');
    background-size: cover;
    background-position: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
    .cbox {
        flex-direction: row; /* Ensure the icon and text are in a row */
        justify-content: center; /* Center items */
    }

    .responsive-image {
        background-image: url('../../Images/Page Images/Live Session_small.png');
    }
}

/*-------------- FAQ ------------------------*/
.container {
    max-width: 1000px; /* Optional: set a max width for the container */
    margin: 0 auto; /* Center the container */
}

.faq-box {
    background-color: #1c1c1c; /* Box background color */
    border: 1px solid #2d2d2d; /* Border color */
    border-radius: 10px; /* Rounded corners */
    padding: 15px; /* Padding inside the box */
    margin-bottom: 15px; /* Space between boxes */
    cursor: pointer; /* Pointer cursor for clickable effect */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.faq-box:hover {
    background-color: #282828; /* Slightly lighter on hover */
}

.faq-question {
    color: #ffffff; /* Question text color */
    font-weight: bold; /* Bold text */
	font-size: 18px;
    margin: 0; /* Remove margin */
}

.faq-answer {
    color: #ffffff; /* Answer text color */
    margin-top: 10px; /* Space between question and answer */
	font-size: 16px;
}
.plus-icon {
    color: #ffbb00; /* Color for the plus icon */
    font-size: 20px; /* Size of the plus icon */
    font-weight: bold; /* Bold text */
}

/*----- Footer ---------------------------------------------*/
.separator {
    border: none; /* Remove default border */
    height: 2px; /* Line thickness */
    background-color: #ffbb00; /* Line color */
    margin: 20px 0; /* Space around the line */
}

/*----- Event Glow--------------------------- */
/* Event CSS */
.event span {
    animation: blinkGlow 1.5s infinite;
    font-weight: bold;
}

/* Blinking and Glowing Effect */
@keyframes blinkGlow {
    0% {
        color: #ffff00;
        text-shadow: 0 0 10px #f4b200, 0 0 20px #f4b200, 0 0 30px #f4b200;
    }
    50% {
        color: #fff;
        text-shadow: 0 0 5px #f4b200, 0 0 10px #f4b200, 0 0 15px #f4b200;
    }
    100% {
        color: #ffff00;
        text-shadow: 0 0 10px #f4b200, 0 0 20px #f4b200, 0 0 30px #f4b200;
    }
}

/*---------------- for whom boxes -------------------------- */
/* Base logo styles */
.custom-box {
  background-color: #1c1c1c;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  color: white;
  height: 100%; /* Ensure that all boxes have equal height */
}

.check-mark {
  margin-right: 10px;
  color: #28a745; /* Green color for the check mark */
  font-size: 20px;
}

.box-text {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

/* Swiper Images Styles */
.clients .swiper-slide img {

  transition: 0.3s;
 
  max-width: 150px; /* Adjust this for logo size */
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

/* Swiper Pagination Styles */
.clients .swiper-pagination {
  margin-top: 40px; /* Adjust the space between bullets and images */
  position: relative; /* Ensure proper positioning */
  text-align: center;
  z-index: 10; /* Ensure pagination is above other elements */
}

/* Inactive Bullet Styles */
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.2); /* Visible color for inactive bullets */
  opacity: 1; /* Fully visible */
  border-radius: 50%; /* Make the bullets round */
  margin: 0 5px; /* Space between bullets */
  cursor: pointer; /* Show pointer on hover */
}

/* Active Bullet Styles */
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5e5e; /* Bright color for active bullet */
  transform: scale(1.3); /* Slightly enlarge the active bullet */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for active state */
}

/* Bullet Hover Effect */
.clients .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #ff9a9a; /* Slight hover effect on inactive bullets */
}

/*------------------ Fixed Footer -------- */
.countdownminutes-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(17, 17, 17, 0.6); /* 111 with 60% opacity */
    border: 1px solid #ffbb00;
    border-radius: 15px 15px 0 0;
    z-index: 1000;
    padding: 0px 10px; /* Reduce padding for smaller height */
    display: flex;
    justify-content: space-between; /* Distribute content between left and right */
    align-items: center;
}

.countdownminutes-offer-text {
    color: white;
    font-size: 20px; /* Make "Offer Will Expire In" larger */
    font-weight: bold;
    margin-bottom: 2px; /* Add space between text and timer */
}

.countdownminutes-timer {
    display: flex;
    align-items: center; /* Keep minutes and seconds in one line */
    gap: 2px; /* Space between elements */
}

.countdownminutes-text {
    color: white;
    font-size: 12px; /* Smaller text for "Minute(s)" and "Second(s)" */
}

.countdownminutes-numbers {
    color: #ffbb00; /* Minute and second numbers in light green */
    font-size: 28px; /* Make the numbers larger */
    font-weight: bold;
}

/* Style the button with #ffbb00 color and rounded corners */
.countdownminutes-btn {
    background-color: #ffbb00; /* Button background color */
    color: black;
    border-radius: 30px; /* Rounded corners */
    font-weight: bold;
    padding: 10px 20px; /* Padding for larger screens */
    text-transform: uppercase;
    font-size: 16px; /* Default button font size */
    border: none;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

.countdownminutes-btn:hover {
    background-color: #e6a800; /* Slightly darker yellow on hover */
}

/* Responsive Design Adjustments */
@media (max-width: 576px) {
    .countdownminutes-footer {
        font-size: 14px; /* Adjust footer font size for smaller screens */
        padding: 3px 5px; /* Reduce padding for smaller screens */
    }

    .countdownminutes-offer-text {
        font-size: 18px; /* Adjust size for smaller screens */
    }

    .countdownminutes-numbers {
        font-size: 22px; /* Adjust number size for smaller screens */
    }

    .countdownminutes-text {
        font-size: 10px; /* Adjust letter size for smaller screens */
    }

    /* Adjust button padding and size for smaller screens */
    .countdownminutes-btn {
        padding: 4px 16px; /* Reduce top and bottom padding, keep left and right padding */
        font-size: 14px; /* Adjust button font size for smaller screens */
    }
}

