
/* color */

body{
    box-sizing: border-box;
}
:root{
    --background-color: #ffffff;
    --btn-primary-color:#01b5dd;


    --background-color-rgb: 255, 255, 255;
    --default-color: #212529;
    --default-color-rgb: 33, 37, 41;
    --primary-color: #2E336B;
    --primary-color-rgb: 35, 150, 210;
    --secondary-color: #f1581e;
    --secondary-color-rgb: 241, 88, 30;
    --contrast-color: #ffffff;
    --contrast-color-rgb: 255, 255, 255;
    --text-primary-color: #111827;
    --text-secondary-color: #4b5563;
    --section-Background-color: #f4f7fd;
    --course-btn-color: #085374;
    --main-button-hover-color: #2E336B;
}


.txt-black{
    color: rgb(12, 12, 12);
}

 /* Navbar */

 nav{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    color: black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
    border: 0;
  }
  
 .membership-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Abstract Background Shapes */
/* .membership-section::before,
.membership-section::after {
    content: "";
    position: absolute;
    background: rgba(0, 128, 96, 0.1);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    z-index: 0;
} */

.membership-section::before {
    top: 10%;
    left: 10%;
}

.membership-section::after {
    bottom: 10%;
    right: 10%;
}

.membership-content {
    position: relative;
    z-index: 1;
}

/* Text Styles */
.membership-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.membership-title span {
    color: #4c8bf5
}

/* Buttons */
.btn-apply {
    /* background: linear-gradient(45deg, #ff4b2b, #ff416c); */
     display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}


.btn-apply:hover {
   color: blue;
  background: linear-gradient(45deg, #5a6fd8, #693c93);
}

.btn-read {
    background: #0d6efd;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-read:hover {
    background: #0948a6;
}

/* List Styling */
.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefits-list li {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.benefits-list li::before {
    content: "»";
    color: #008060;
    font-weight: bold;
    margin-right: 10px;
}

/* btn-primary */

.btn-primary{
    background-color: var(--btn-primary-color);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    border: 0;
    padding: 7px 12px;
    
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link:hover{
    background-color: #4c8bf5 !important;
}

.btn-primary:hover{
    background-color: #4c8bf5;
    /* background-color: var(--btn-primary-color); */
    border-radius: 10px;
    color: white;
    font-weight: 500;
    border: 0;
    padding: 7px 12px;
}

.txt-justify{
    text-align: justify;
}

/* our services */
.servicesContainer{
    height: 500px;
    width: 100%;
    border: 2px solid red;
}


        /* Floating Button */
        #backToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #f8b400;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            display: none;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.5s ease-in-out;
        }

        #backToTop:hover {
            background: #ff6f00;
            transform: scale(1.1);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



/* Footer */



.footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Light modern gradient */
    padding: 50px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    border-top: 3px solid #f8b400;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #f8b400;
    display: flex;
    align-items: center;
}

.footer h3 i {
    margin-right: 10px;
    color: #f8b400;
}

.footer p, .footer ul {
    font-size: 14px;
    color: #555;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer ul li i {
    margin-right: 10px;
    color: #f8b400;
}

.footer ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.footer ul li:hover {
    transform: translateX(5px);
}

.footer ul li:hover a {
    color: #f8b400;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.contact-info p i {
    margin-right: 10px;
    color: #f8b400;
    font-size: 16px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #555;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #f8b400;
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    padding: 15px;
    background: #e9ecef;
    font-size: 14px;
    color: #666;
    animation: fadeIn 2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer div {
        margin-bottom: 20px;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* contact */
.bg-from{
    background-color: antiquewhite;
    padding: 5px;
}

.from-body{
    border-radius: 4px;
    margin: 30px 0px;
}

.from-body input[type = 'text']{
    margin: 5px;
    border-radius: 10px;
    padding: 2px 5px;
    border-color: #f8b400;

}
.from-body textarea{
    padding: 5px;
}

.from-body textarea{
    border-color: #f8b400;
    border-radius: 10px;

}

.profile-img{
    border-radius: 10px;
    

}


.copyright {
  text-align: center;
  padding: 15px 10px;
  background: #f8f9fa;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

.copyright .powered {
  margin-left: 80px;
}

.copyright .dit {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.copyright .dit:hover {
  color: #764ba2;
  text-decoration: none;
}


/* Slide background */
.member-slider .swiper-slide{
  min-height: 450px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
}

/* Dark overlay */
.member-slider .swiper-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* Content above overlay */
.member-slider .member-container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1400px;      /* a bit wider so both sides fit nicely */
  margin:0 auto;
  padding:70px 60px;     /* left-right padding like screenshot */
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}



.member-slider .member-right{
  max-width:520px;
  margin-left:auto;      /* keeps it on the right side */
  text-align:left;
}


/* Titles */
.member-slider .member-left h2,
.member-slider .member-right h3{
  margin:0 0 18px 0;
  color:#fff;
}



.member-slider .member-left h2 span{
  color:#4a7df3;
}

/* ✅ FIX BUTTON */
.member-slider .apply-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:14px 38px;
  border-radius:999px;
  background:linear-gradient(90deg,#6b73ff,#8e54e9);
  color:#fff !important;
  text-decoration:none !important;
  font-weight:700;
  line-height:1;
  border:none;
  outline:none;
  white-space:nowrap;
  box-shadow:0 12px 28px rgba(0,0,0,0.25);
  transition:transform .2s ease, box-shadow .2s ease;
}

.member-slider .apply-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,0.35);
}

/* Right list */
.member-slider .member-right ul{
  list-style:none;
  padding:0;
  margin:0;
}

.member-slider .member-right ul li{
  margin-bottom:12px;
  padding-left:22px;
  position:relative;
  color:#fff;
  opacity:.95;
}

.member-slider .member-right ul li::before{
  content:"»";
  position:absolute;
  left:0;
  color:#4a7df3;
  font-weight:800;
}

/* Responsive */
@media (max-width: 992px){
  .member-slider .member-container{
    flex-direction:column;
    text-align:center;
  }
  .member-slider .member-right ul li{
    padding-left:0;
  }
  .member-slider .member-right ul li::before{
    display:none;
  }
  .member-slider .member-left h2{
    font-size:42px;
    font-weight:800;
    white-space: nowrap;
  }


   .member-slider .member-container{
    flex-direction:column;
    text-align:center;
    gap:35px;
    padding:60px 20px;
  }
  .member-slider .member-right{
    margin-left:0;
    text-align:center;
  }

}

@media (max-width: 576px){
  .topbar-links{
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:center;
    text-align:center;
  }
}


.member-slider .member-left h2{
  white-space: normal;   /* allow wrap on small screen */
  font-size: 32px;
  line-height: 1.1;
}


/* REMOVE your old nav{} sticky styles. Use Bootstrap sticky-top only */
nav.navbar{
  height: auto;              /* let bootstrap handle height */
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  z-index: 9999;             /* above slider */
}

.member-slider{
  position: relative;
  z-index: 1;
}

.image-container{
    height: 60px !important; 
}

.member-card{
        border-radius: 12px;
        overflow: hidden;
    }

    .member-img-box{
        width: 100%;
        max-height: 250px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
    }

    .member-img{
        width: 100%;
        height: auto;
    }

    .member-name{
        font-weight: 600;
        margin-bottom: 10px;
    }

    .member-info{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .member-info li{
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.5;
    }


@media (max-width: 991px){

  /* keep header above everything */
  .navbar{
    position: sticky;
    top: 0;
    z-index: 99999;
  }

  /* collapse panel */
  #navbarNav{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999999;
    padding: 12px 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
  }

  /* dropdown items spacing */
  #navbarNav .nav-link{
    padding: 10px 16px;
  }

  /* make dropdown menus look good inside mobile collapse */
  #navbarNav .dropdown-menu{
    position: static !important;
    float: none;
    width: 100%;
    box-shadow: none;
    margin: 0;
    padding-left: 10px;
  }

  /* keep toggler clickable */
  .navbar-toggler{
    position: relative;
    z-index: 1000000;
  }
}

@media (max-width: 576px){
  .copyright{
    font-size: 13px;
    padding: 12px 10px;
  }
}

