body {
    font-family: Arial, sans-serif !important;
    background-color: #0b0b0b;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Banner Section */
.banner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    /* overflow:hidden; */
}
.comet {
    width: 30px; /* Adjust length as needed */
    height: 5px; /* Adjust thickness as needed */
    background: radial-gradient(circle at 10px 2px, white, rgba(240, 236, 240, 0)); /* Radial gradient */
  filter: blur(2px); /* Add blur */
    position: absolute;
    border-radius: 1px; /* Optional: for rounded edges */
    opacity: 0; /* Start invisible */
    overflow: hidden;
  }
  .comet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px; /* Increase size */
  height: 5px; /* Increase size */
  background-color: white; /* Brighter purple */
    border-radius: 50%; /* Make it circular */
  }
  
  .comet:nth-child(1) {
    animation: moveComet1 15s linear infinite;
  }
  .comet:nth-child(2) {
    animation: moveComet2 15s linear infinite;
  }
  .comet:nth-child(3) {
    animation: moveComet3 15s linear infinite;
  }
  .comet:nth-child(4) {
    animation: moveComet4 15s linear infinite;
  }
  
  @keyframes moveComet1 {
    0% { top: 10%; left: -10%; opacity: 0; }
    10% { opacity: 1; }
    25% { top: 10%; left: 110%; }
    35% { top: -10%; left: 90%; opacity: 1; }
    50% { top: 110%; left: 90%; }
    60% { top: 90%; left: 110%; opacity: 1; }
    75% { top: 90%; left: -10%; }
    85% { top: 110%; left: 10%; opacity: 1; }
    100% { top: -10%; left: 10%; opacity: 0; }
  }
  
  @keyframes moveComet2 {
    0% { top: 90%; left: 110%; opacity: 0; }
    10% { opacity: 1; }
    25% { top: 90%; left: -10%; }
    35% { top: 110%; left: 10%; opacity: 1; }
    50% { top: -10%; left: 10%; }
    60% { top: 10%; left: -10%; opacity: 1; }
    75% { top: 10%; left: 110%; }
    85% { top: -10%; left: 90%; opacity: 1; }
    100% { top: 110%; left: 90%; opacity: 0; }
  }
  
  @keyframes moveComet3 {
    0% { top: -10%; left: 10%; opacity: 0; }
    10% { opacity: 1; }
    25% { top: 110%; left: 10%; }
    35% { top: 90%; left: 110%; opacity: 1; }
    50% { top: 90%; left: -10%; }
    60% { top: 110%; left: 10%; opacity: 1; }
    75% { top: -10%; left: 10%; }
    85% { top: 10%; left: -10%; opacity: 1; }
    100% { top: 10%; left: 110%; opacity: 0; }
  }
  
  @keyframes moveComet4 {
    0% { top: 110%; left: 90%; opacity: 0; }
    10% { opacity: 1; }
    25% { top: -10%; left: 90%; }
    35% { top: 10%; left: 110%; opacity: 1; }
    50% { top: 10%; left: -10%; }
    60% { top: -10%; left: 90%; opacity: 1; }
    75% { top: 110%; left: 90%; }
    85% { top: 90%; left: 110%; opacity: 1; }
    100% { top: 90%; left: -10%; opacity: 0; }
  }
.banner img {
    width:250px;
    height: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .banner img{
margin-top: 100px;
}
}
@media (max-width: 768px) {
    .banner img{
margin-top: -75px;
}
}
.banner h1 {
   
    font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #d15454, #fa5e6f, #b466a4, #4a82bd, #24a1a5, #40bdab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  
.banner p {
    font-size: 1.2rem;
    color: #bbb;
    margin-top: 10px;
}
.btn-custom {
    background: linear-gradient(90deg, #6d6fdc,  #649fd7 );
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease;
}
.btn-custom:hover {
    background: linear-gradient(90deg,  #649fd7,#6d6fdc );
    color: white;
}
.logo-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: grayscale(100%) brightness(1.2);
}


@media (max-width: 768px) {
    .logo-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .logo-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .banner h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        padding: 40px 20px;
    }
    .banner h1 {
        font-size: 2rem;
    }
    .banner img {
        width: 150px;
    }
}
@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.8rem;
    }
}



.banner-img-section {
    width:100%;
    height:auto;
    overflow:hidden;
    margin-top: 180px;
}
.banner-img-section img {
    width:100%;
    height:auto;
    overflow:hidden;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .banner-img-section {
        width:100%;
        height:auto;
        overflow:hidden;
        margin-top:-60px !important;
    }
}

.countdown {
    background: radial-gradient(circle at center, rgb(42, 44, 82), black);
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(42, 44, 82), black);
}

.countdown-box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;  /* ✅ Allow wrapping on smaller screens */
    gap: 50px;  /* ✅ Reduce gap for better mobile layout */
    z-index: 1;
    position: relative;
    min-width: 100%;
}

.time-box {
    font-size: 24px; /* ✅ Reduce font size for better mobile fit */
    font-weight: bold;
    background: radial-gradient(circle at center, rgb(42, 44, 82), black);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    min-width: 70px; /* ✅ Adjust for smaller screens */
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

.time-box:hover {
    transform: scale(1.1);
}

.countdown-box p {
    font-size: 16px; /* ✅ Reduce text size for mobile */
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
}

/* ✅ Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
    .countdown {
        height: auto;
        padding: 20px;
    }

    .countdown-box {
        gap: 30px; /* ✅ Reduce gap further */
    }

    .time-box {
        min-width: 60px; /* ✅ Smaller time boxes */
        min-height: 60px;
        font-size: 18px; /* ✅ Reduce font size */
    }

    .countdown-box p {
        font-size: 14px; /* ✅ Smaller text */
    }
}

/* ✅ Further Adjustments for Extra Small Screens */
@media (max-width: 480px) {
    .countdown-box {
        gap: 20px;
    }

    .time-box {
        min-width: 50px;
        min-height: 50px;
        font-size: 16px;
    }

    .countdown-box p {
        font-size: 12px;
    }
}



  
.row-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    /* background-image: radial-gradient(circle at center in hsl shorter hue, #2c1531, #1d1d1d) ; */
    /* background: linear-gradient(90deg, #333474,#3d3f9e,#aa58e0,  #0884d6,#1c6ab3 ); */
    /* background: linear-gradient(135deg, #3d2b1f, #422e04, #362201, #412c06, #4b3719, #3d2b1f); */
    background: linear-gradient(to right, #de8f28,  #cd7f2a, #f2be58, #fbf5a7, #f5be59);
       



    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
   
}

.icon-container img {
    width: 100%;
    height: 50px;
    filter: none; /* Remove brightness/invert */
    -webkit-mask-image: url("/asset/images/wall_fame_icon\(1\).png");
    mask-image: url("/asset/images/wall_fame_icon\(1\).png");
    -webkit-mask-size: cover;
    mask-size: cover;
    /* background: linear-gradient(90deg, #816804, #ffcc00, #f0a631, #dd9b21, #ffcc00, #ffcc00); */
    /* filter: drop-shadow(0px 0px 5px #ffcc00) brightness(1.5); */
    background: linear-gradient(to right, #dbdf22, #a87e30, #e4c92e, #e0ab46, #e9a231, #beb031);

}


.row-container p{
    color:white;
}
.wall-of-frames {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.frame-container {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}
.frame-container.reverse {
    animation: scroll-right 20s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.frame {
    position: relative;
    display: inline-block;
    width: 270px;  /* Fixed Width */
    height: 200px; /* Fixed Height */
    margin: 25px;
    box-sizing: border-box;
    padding: 15px; /* Increased to make space for thicker black border */
    background: black; /* Middle Black Border */
}

/* Outer Gradient Golden Border */
.frame::before {
    content: "";
    position: absolute;
    inset: -4px; /* Moves Outward */
    background: linear-gradient(135deg, #3d2b1f, #7e6235, #beaa84, #9c7327, #a0793c, #3d2b1f);
    z-index: -3;
}

/* Thicker Middle Black Border */
.frame::after {
    content: "";
    position: absolute;
    inset: 3px; /* Increased thickness */
    background: black; /* Black Border */
    z-index: -1;
}

/* Inner Gradient Golden Border */
.inner-border {
    position: absolute;
    inset: 10px; /* Adjusted for inner spacing */
    background: linear-gradient(135deg,#beaa84, #9c7327, #3d2b1f, #7e6235, #beaa84, #9c7327);
    z-index: 1;
    box-sizing: border-box;
    pointer-events: none;
}

/* Image Styling */
.frame img {
    width: calc(100% - 2px); /* Adjusted to fit inside inner border */
    height: calc(100% - 2px);
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
    margin: auto;
}



.row-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background: linear-gradient(90deg, #4b2055,  #1d1d1d ); */
    /* background: linear-gradient(135deg, #502602, #3d290c, #332711, #2b1d03, #442701, #6e2e03); */
/* background-color: rgba(82, 81, 81, 0.171); */
/* background: radial-gradient(circle at center, rgb(42, 44, 82), black); */
/* background: linear-gradient(135deg,#6d4805, #493001, #3d2b1f, #5f3c03, #6d4804, #795004); */
/* background-image: radial-gradient(circle at center in hsl shorter hue, rgb(30, 32, 75), black); */
background: radial-gradient(circle at center, rgb(42, 44, 82), black);






    
}


/* video-review */
.video-section {
    background-image: radial-gradient(circle at center in hsl shorter hue, rgb(36, 39, 92), black);
    width: 100%;
    height: auto;
    padding: 50px 0;
    color: white;
}

.client h2 {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #6d6fdc,  #649fd7 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    margin-bottom: 20px;
}

/* Video */
.video-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 20px;
   
}
@media (min-width: 768px) {
.video-container {
    padding-left: 100px;
  padding-top: 10px !important;

}

}


.video-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* Review Text */
.review-text {
    /* padding: 20px; */
    font-size: 16px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    /* box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1); */
    
}

.review-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #d1d1e0;
    text-align: justify;
}

.review-text .author {
    font-weight: bold;
    color: #4c6ef5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container iframe {
        height: 250px;
    }
    .client h2 {
        font-size: 2rem;
    }
    .review-text {
        text-align: center;
    }
}

.apply-form {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 60px 0;
    border-radius: 10px;
    background-image: radial-gradient(circle at center in hsl shorter hue, rgb(42 44 82), black);


}

.apply-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #6d6fdc,#6d6fdc,#3f8ed8, #649fd7 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apply-form li {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
@media (max-width: 768px) {
.apply-form li {
text-align: left;
}
}

.blinking-shape {
    display: inline-block;
    background: linear-gradient(90deg, #6d6fdc,  #649fd7 );
border-radius: 50px;

    color: white;
    font-weight: bold;
    padding: 10px 20px;
 
    animation: blink-animation 1s infinite alternate;
    text-align: left;
   
}

@keyframes blink-animation {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}


.form-box {
border:0.01px solid white;
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); */
}

form label {
    color: #e0e0e0;
    font-weight: 600;
}

form input,
form select {
    border-radius: 5px;
}
.dropdown-wrapper {
    position: relative;
}

.dropdown-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none; /* Prevents click interference */
    color: #555;
}

select.form-control {
    appearance: none; /* Hides default dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px; /* Space for icon */
}

button.btn-primary {
    background: linear-gradient(90deg, #6d6fdc, #649fd7);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    transition: background 0.3s ease;
    width: 50%; /* Reduced width */
    max-width: 200px; /* Ensures it doesn't get too wide */
    display: block; /* Ensures proper centering */
    text-align: center;
    margin-left: auto; /* Centering */
    margin-right: auto; /* Centering */
}


button.btn-primary:hover {
    background: linear-gradient(90deg,  #649fd7,#6d6fdc );
    color: white;
}


/* Responsive Design */
@media (max-width: 768px) {
    .form-box {
        padding: 20px;
    }

    .apply-form h2 {
        font-size: 1.8rem;
    }

    .apply-form li {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
    }
}



/* text-review */
.review {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative; /* Ensure child elements stay inside */
    padding: 50px 0; /* Add some padding if needed */
    /* background-image: radial-gradient(circle at center in hsl shorter hue, #2c1531, #1d1d1d); */


}
.review h2{
    font-size: 1.8rem;
    font-weight: 600;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.review p{
    color:rgb(134, 134, 134);
    font-size: 15px;
}
.review .carousel-item {
    padding: 40px 20px;
}

.review .card {
    background-color: #222;
    color: white;
    padding: 15px;
    border-radius: 10px;
    border: none;
    /* box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); */
    height: 100%;
}
.review .card p{
    margin-top: 10px;
    text-align: justify;
    font-size: 12px;
  color:rgb(212, 212, 212);
}
.review .card .username{
    margin-top: 5px;
    color:rgb(150, 147, 147)
   
}

.review .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review .username {
    font-size: 14px;
    color: gray;
}

.review .carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 10px;
 
 
}
.carousel-control-next-icon, .carousel-control-prev-icon{
width:20px;
height:20px;
}
.carousel-control-next-icon{
    margin-left: 100px;
}
.carousel-control-prev-icon{
    margin-left: -100px;

}
.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.986) !important; /* Default indicator color */
    border: none;
    width: 10px;
    height: 10px;
   
}

.carousel-indicators button:active {
    background-color: white !important; /* White active indicator */
}
.carousel-indicators button:hover{
    background-color: white !important; /* White active indicator */
}




/* Equal height for cards */
.review .row .col-md-4 {
    display: flex;
}

.review .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 30px 0;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer-logo img {
    max-width: 250px; /* Adjust size */
    height: auto;
}
.contact-info i {
    color: #fff;
    margin-right: 10px;
}
.contact-info p {
    margin: 5px 0;
}
.contact-info {
    text-align: left; /* Ensures left alignment */
}

.contact-info p {
    margin-bottom: 10px; /* Adds space between paragraphs */
    display: flex;
    align-items: center; /* Aligns icons properly */
    gap: 8px; /* Adds space between icon and text */
}

.contact-info i {
    min-width: 20px; /* Ensures icons are properly aligned */
}



.social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}
.social-icons a:hover {
    background: linear-gradient(90deg,#d15454, #4a82bd,#24a1a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.copyright{
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg,#f4f809,#f4f809, #ff7a18, #df55b5,#049edbc9, #13963a, #038a61,#045301);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
.copyright{
    font-size: 12px;
    margin-top: 50px !important;

}

}