
/* 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: #60b4a3;
}

/* Buttons */
.btn-apply {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.btn-apply:hover {
    background: linear-gradient(45deg, #ff3a1a, #ff3055);
    transform: scale(1.05);
}

.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: red !important;
}

.btn-primary:hover{
    background-color: red;
    /* 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: 50px;
    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;
    

}