/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 150px;
    max-width: 62vw;
    height: auto;
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

/* Hero Section */
/* Hero Section */
/* Hero Section with Animations */
.hero {
    background: linear-gradient(148deg, rgb(229 64 193 / 44%) 37%, rgb(246 123 46) 100%);
    padding: 100px 0;
    overflow: hidden;
    height: 100vh;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
    animation: slideInLeft 1.5s ease-in-out;
}

.hero-text h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInText 2s ease-in-out forwards;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInText 2.5s ease-in-out forwards;
}

.cta-button {
    background-color: #ff3366;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0;
    animation: fadeInButton 3s ease-in-out forwards;
}

.cta-button:hover {
    background-color: #ff6699;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    animation: slideInRight 1.5s ease-in-out;
}

.hero-image img {
    width: 130%;
/*    max-width: 400px;*/
    border-radius: 10px;
    transform: scale(0.9);
    animation: imageZoom 3s ease-in-out forwards;
}

/* Keyframe Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInButton {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes imageZoom {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 300px;
    }
}

/* interest section */
/* Interest Section Styles */
.interests {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    background-image: url('./assets/img/clag_backtex.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.interests h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.interests .intro-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.interest-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.interest-box {
    background-color: white;
    width: 22%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 14px 20px 8px rgb(177 156 183 / 57%);
    transition: transform 0.3s ease-in-out;
}

.interest-box:hover {
    transform: translateY(-10px);
    background-color: #f1c0c9;
    transition: 0.3s;
}

.interest-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.interest-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.interest-box:hover .interest-image img {
    transform: scale(1.1); /* Zoom in on hover */
}

.interest-box h3 {
    font-size: 22px;
    color: #ff3366;
    margin-bottom: 10px;
}

.interest-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.interest-button {
    background-color: #ff3366;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.interest-button:hover {
    background-color: #ff6699;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .interest-box {
        width: 48%; /* Reduce box width to fit more on smaller screens */
    }
}

@media (max-width: 768px) {
    .interest-box {
        width: 100%; /* Stack boxes on mobile */
    }

    .interest-grid {
        justify-content: center;
    }
}

/* interest section */
/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: rgb(215,81,255);
background: linear-gradient(148deg, rgb(229 64 193 / 44%) 37%, rgb(246 123 46) 100%);
}

.why-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.why-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
    text-align: left;
}

.why-text h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 20px;
}

.why-text p {
    font-size: 18px;
    color: black;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff3366;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6699;
}

.why-video {
    flex: 1;
    max-width: 50%;
}

.why-video iframe {
    width: 100%;
    /* height: auto; */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-content {
        flex-direction: column;
        text-align: left;
    }

    .why-text {
        max-width: 100%;
        padding: 0;
    }

    .why-video {
        max-width: 100%;
        margin-top: 20px;
    }

    .why-video iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .why-video iframe {
        height: 240px;
    }
}


/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #f7f7f7;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    width: 30%;
    margin: 10px 0;
}

.feature-item h3 {
    color: #ff3366;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: white;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial-item {
    width: 45%;
    margin: 10px 0;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .feature-item, .testimonial-item {
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Services Section Styles */
/* General Section Styles */
.services {
    padding: 60px 20px;
    /* background-color: #f500f71f; */
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.services .intro-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Services Grid for Large Screens */
.services-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Service Card Styles */
.slider-card {
    /* background-color: #ff33668f;  */
       background: linear-gradient(335deg, rgba(215, 81, 255, 1) 0%, rgba(242, 90, 182, 1) 100%);
    padding: 4px;
    width: 15%; /* Smaller cards on large screens */
    margin-bottom: 20px;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
}

/* Card Title Styling */
.slider-card h3 {
    position: absolute;
    bottom: 0px; /* Position at the bottom of the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 10px;
    border-radius: 15px;
    font-size: 16px;
    width: 90%; /* Stretch text background across */
    text-align: center;
}
.slider-card:hover h3 {
    background-color: rgba(255, 51, 102, 0.8); /* Change color on hover */
}

/* Card Image Styling */
.card-image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 8px 8px; /* Rounded bottom corners for image */
    display: block;
    object-fit: cover;
    border-radius: 25px;
}

/* Hover Effects */
.slider-card:hover {
    transform: translateY(-8px);
    background-color: #ff5680;
}

.slider-card:hover h3 {
    background-color: #ff5680;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-card {
        width: 48%; /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .slider-card {
        /* width: 100%; One card per row on small screens */
    }
    .services-grid {
    display: flex;
    
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}
}


/* Events Section Styles */
/* up-comming events css */
/* General section styling */
.upcoming-events-section {
  padding: 4rem 2rem;
  background-color: #f4f8fc; /* Soft background color */
  text-align: center;
  position: relative;
}

.texts h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.texts p {
  color: #666;
  margin-bottom: 2rem;
}

.upcoming-events-section .slider-container {
 display: flex;

  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.6s ease-in-out;

  
}


.upcoming-events-section .slider-container .slide {
   min-width: 100%;
  transition: transform 0.6s ease-in-out;
  visibility: hidden;
}



.upcoming-events-section .slider-container .slide.active {
  /* display: flex; Show only the active slide  */
   /* display: block; */
   opacity: 1;
   visibility: visible;
   flex-direction: row-reverse;
  
}

.slide-image-container {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}

.slide-image-container img {
  width: 100%;
  height: auto;
}

.slide-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Text background overlay */
  padding: 1rem;
  border-radius: 8px;
  width: 90%;
}
.slide {
    display: flex;
    flex: 1;
    min-width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.slider-btn {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  /* border-radius: 50%; */
  z-index: 2;
}

.slider-btn.left {
  left: 0px;
}

.slider-btn.right {
  right: 0px;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .slide-text {
    bottom: 5%;
    left: 2%;
    width: 96%;
  }
  .slide-image-container{
    flex-direction: column;
  }
  .slider-btns{
top: 40%;
  }
  .upcoming-events-section .slider-container .slide.active {
  /* display: flex; Show only the active slide  */
   /* display: block; */
   opacity: 1;
   visibility: visible;
   flex-direction: column;
  
}
}


/* Team Section Styles */
.team-section {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    background: linear-gradient(148deg, rgb(229 64 193 / 44%) 37%, rgb(246 123 46) 100%);
}

.team-section h2 {
    font-size: 36px;
    /* color: #fff; */
    margin-bottom: 20px;
    color: black;
}

.team-section .team-intro {
    font-size: 18px;
    /* color: #fff; */
    margin-bottom: 40px;
}


/* Team Slider Wrapper */
.team-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: 1200px;
    /* margin: 0 auto; */
    margin-top: 100px;
}


.team-slider {

    display: flex;
    transition: transform 0.5s ease-in-out;
    /* animation: scroll 10s linear infinite; Automatic scroll */
}

/* Team Card Styles */
.team-card {

    flex: 1 0 33%; /* 3 cards per slide */
    margin: 0 10px;
    padding: 20px;
    background-color: #f4f8fc;
    border-radius: 10px; /* Fully rounded card */
    box-shadow: 0 16px 13px rgb(0 0 0);
    overflow: visible; /* Allow overflow */
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Team Card Image */
.team-card-image {
    position: absolute;
    top: -60px; /* Move image outside the card */
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

/* Team Card Content */
.team-card-content {
    padding-top: 60px; /* Adjust padding to account for the image */
}

.team-card-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.team-card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Team Social Links */
.team-social-links a {
    margin: 0 10px;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.team-social-links a:hover {
    color: #ff3366;
}

/* Automatic Scrolling */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-card {
        flex: 1 0 50%; /* 2 cards per slide on smaller screens */
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 1 0 100%; /* 1 card per slide on mobile screens */
    }
    .team-slider{
        flex-direction: column;
        gap: 4rem;
    }

    .team-card-image {
        width: 100px;
        height: 100px;
    }

    .team-card-content {
        padding-top: 50px;
    }
}


/* Accreditations Section Styles */
.accreditations-section {
    padding: 50px 20px;
  
   
    
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
    background-position: center center;
    position: relative;
}
/* .accreditations-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(13, 20, 26, 0.7);
} */

.accreditations-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.section-title{
    padding: 40px;
}
.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #010111;
    font-family: "Poppins", sans-serif;
    text-align: left;
}
.accreditations-section .accreditations-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.accreditations-slider-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.accreditations-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.accreditation-card {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
     background: linear-gradient(148deg, rgb(229 64 193 / 44%) 37%, rgb(246 123 46) 100%);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s;
}

.accreditation-card img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.accreditation-content {
    text-align: center;
}

.accreditation-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a0909;
}

.accreditation-content p {
    font-size: 14px;
    color: #0a0909;
}

.slider-buttons {
    margin-top: 20px;
    text-align: center;
}

.slider-btns {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.image-container {
    flex: 1;
}
.slider-btns.active {
    background-color: #ff3366;
}

.slider-btns:hover {
    background-color: #ff6699;
}


/* social icons */

.icon-bar_nn {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    z-index: 99;
}

.icon-bar_nn a {
    display: block;
    text-align: center;
    padding: 10px 15px;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}
.facebook_nn {
    background: #3B5998;
    color: white;
}
.instagram_nn {
    background: #ee2a7b;
    color: white;
}
.linkedin_nn {
    background: #0077b5;
    color: white;
}

.floating-whatsapp {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 999;
}
.floating-whatsapp a {
    display: block;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 47px;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.floating-whatsapp img {
    width: 50px;
    padding: 5px 5px 5px 5px;
    height: 50px;
}

button{
    
background: linear-gradient(245deg, rgba(215,81,255,1) 0%, rgba(204,92,160,1) 100%);
}
button:hover{
    background: rgb(215,81,255);
}
