* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: Arial, sans-serif;

}
body{
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: rgb(240, 227, 209);
}

:root {
    --primary-color: #8f715c;
    --secondary-color: #6b4c3d;
    --bg-color: rgb(240, 227, 209);
    --bt-color: #a66a3a;
}
.overflow-wrapper {
    overflow-x: hidden !important;
  }
  
.main {
    background-image: linear-gradient(rgba(240, 227, 210, 0.8), rgba(179, 144, 122, 0.8)), url('asset/hero-img.jpg');
    background-size: cover;
    background-position: center;
}

.main_heading {
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 20px;
    font-weight: 700;
}

.main_heading:hover {
    color: var(--secondary-color);
    cursor: pointer;
}

/* Header Styles */
.header {
    position: fixed;
    padding: 5px 0;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgb(240, 227, 209);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 150px;
    margin-right: 10px;
}

.nav-list .nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    /* Orange color on hover */
}

.toggle_button button {
    background-color: transparent;
    border-color: var(--secondary-color);
}

.toggle_button button i {
    color: var(--primary-color);
}

.theme-btn {
    background-color: var(--primary-color) !important;
    text-decoration: none;
    color: rgb(240, 227, 209) !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    transition: background-color 0.3s ease !important;
    border: none;
}

.theme-btn:hover {
    background-color: var(--bg-color) !important;
    color: var(--primary-color) !important;
}
.theme-btn2 {
    background-color: rgb(240, 227, 209) !important;
    text-decoration: none;
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    transition: background-color 0.3s ease !important;
    border: none;
}
.theme-btn2:hover {
    background-color: var(--primary-color) !important;
    color: rgb(240, 227, 209) !important;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-container .swiper-slide {
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Text color for contrast */
}

.swiper-container .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.welcome-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-slider {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .swiper-container {
        width: 100%;
        height: 60vh;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .swiper-container {
        width: 100%;
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .swiper-container {
        width: 100%;
        height: 60vh;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .welcome-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .welcome-text {
        font-size: 1rem;
    }
}

/* Our Services section start  */
.services-section {
    background-image: url(./asset/services/5.png);
    padding: 50px 0px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
}

.services-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(./asset/services/4.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
    opacity: 0.5;
}


.service-card {
    background-color: var(--bg-color);
    background-image: url(./asset/services/bg-shape-orange.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    z-index: 10px;
    position: relative;
    border: none;
    transition: transform 0.3s ease;
    height: 210px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 0;
    transition: all linear 0.3s;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    /* Orange color for icons */
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-card h5 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
    line-height: 32px;
    margin-top: 23px;
    margin-bottom: 8px;
    display: block;
    padding: 0 12px;
}

.service-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-card:hover i,
.service-card:hover h5 {
    color: rgb(240, 227, 209);
}

/* Our Services section end  */

/* Cloudzilla's Students Coures! section start  */
.coures_section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-color);
    /* background-image: url('asset/noise.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; */
    color: var(--secondary-color);
    overflow: hidden;
    /* Prevents content overflow */
}

.heading_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 30px;
    gap: 10px;

}

@media (max-width: 480px) {
    .heading_content {
        display: flex;
        justify-content: center !important;
    }
}

.coures_section h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0 30px;
}



/* Swiper Styles */
.swiper_card {
    width: 450px;
    height: auto;
    max-width: 100%;
    /* Ensures it doesn't exceed container */
}

.swiper_card .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px !important;
    padding: 20px;
    height: auto;
}

.card {
    background: var(--primary-color);
    color: rgb(240, 227, 209);
    width: 100%;
    max-width: 400px;
    /* Consistent width for cards */
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
    height: 100%;
}

.card h4 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.card h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
    background-color: var(--bg-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

.card ul li i {
    display: flex;
    margin-right: 10px;
    align-items: center;
    transition: 0.5s;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 20px;
}

.card ul li i:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color);
}

.swiper-slide-active .card,
.swiper-slide-duplicate-active .card {
    transform: scale(1.1);
}

/* Image Wrapper Styles */
.image-wrapper {
    text-align: center;
    overflow: hidden;
    /* Prevents image cutoff */
    max-height: 100%;
    /* Ensures image fits within column */
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper_card {
        padding-bottom: 40px;
        width: 100%;
        /* Full width on tablets */
    }

    .card {
        max-width: 100%;
    }

    .swiper-slide-active .card,
    .swiper-slide-duplicate-active .card {
        transform: scale(1.05);
    }

    .image-wrapper {
        margin-top: 20px;
        /* Adds space above image on smaller screens */
    }
}

@media (max-width: 480px) {
    .swiper_card {
        width: 100%;
        padding-left: 0;
    }

    .card h4 {
        font-size: 1rem;
    }

    .card li {
        font-size: 0.8rem;
    }

    .image-wrapper img {
        width: 90%;
        /* Reduces image size on mobile */
        margin-bottom: 20px;
        /* Adds space below image */
    }
}

/* Cloudzilla's Students Coures! section end  */

/* why choose us section start */
.why_choose {
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
}

.back_img_1 {
    position: absolute;
    left: 0;
    top: 170px;
    z-index: -1;
}

.back_img_1 img {
    max-width: 100%;
    vertical-align: middle;
}

.back_img_2 {
    position: absolute;
    right: 0;
    top: 260px;
    z-index: -1;
}

.back_img_2 img {
    max-width: 100%;
    vertical-align: middle;
}

.graph-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content_area {
    margin-left: 30px;
}

.content_area h3 {
    color: var(--primary-color);
}

.content_area p {
    color: var(--secondary-color);
}

.reason-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reason-item span {
    font-weight: 700;
    color: var(--primary-color);
}

.reason-item p {
    font-weight: 500;
    color: var(--secondary-color);
}

.reason-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

/* why choose us section end */



/* About company section start  */
.about_section {
    background-color: var(--bg-color);
}

.about_container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    box-sizing: border-box;
}

.content-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-column h1 {
    color: var(--primary-color);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-column h1 span {
    color: var(--bt-color);
}

.content-column p.subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 750px;
}

/* Tabs Section */

.tabs-section {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.tab-headers {
    display: flex;
    justify-content: center;
    /* center the buttons */
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tab-button {
    position: relative;
    background: none;
    border: none;
    padding: 4px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;

    display: flex;
    /* for centering text */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    text-align: center;
    min-width: 120px;
    /* optional: keeps button wide enough */
}

/* Active button style */
.tab-button.active {
    color: var(--bt-color);
    font-weight: bold;
}

/* Underline below active tab */
.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--bt-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Optional Hover Effect */
.tab-button::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--bt-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.tab-button:hover::after {
    width: 60%;
}



/* Tab content */
.tab-content {
    display: none;
    padding: 10px 0;
    text-align: center;
    /* ✅ Center text */
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.icon {
    color: var(--bt-color);
    margin-right: 10px;
}

.button-section {
    text-align: center;
    /* ✅ Center the button */
}

/* Responsive Tab Buttons */
@media (max-width: 768px) {
    .about_container {
        flex-direction: column;
        padding: 20px 10px;
    }

    .content-column {
        padding: 10px;
        align-items: center;
        text-align: center;
    }

    .content-column h1 {
        font-size: 2rem;
    }

    .content-column p.subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .tab-headers {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-button {
        font-size: 0.95rem;
        padding: 10px 16px;
    }

    .tab-button.active::after {
        bottom: -6px;
    }
}

@media (max-width: 480px) {
    .about_container {
        padding: 10px 15px;
    }

    .content-column {
        padding: 10px;
        align-items: center;
        text-align: center;
    }

    .content-column h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .content-column p.subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .tab-headers {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
        border-bottom: none;
        border-radius: 5px;
        padding: 8px;
        font-size: 1rem;
    }

    .tab-button.active::after {
        display: none;
    }
}



/* About company section end  */


/* Our Work process section start  */
.work-process {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-color);
    padding-top: 50px;
}

.process-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.step {
    position: relative;
    text-align: center;
}

.step:hover img {
    transform: scale(1.1);
}

.step:hover .step-number {
    background-color: rgb(240, 227, 209);
    color: var(--primary-color);
}

.step img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    transition: .5s ease;
}

.step-number {
    position: absolute;
    top: 50px;
    left: 10px;
    transform: translateX(-50%);
    color: rgb(240, 227, 209);
    background: var(--secondary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    overflow: hidden;
    z-index: 10;
    transition: all linear 0.3s;
}

.step h3 {
    color: var(--primary-color);
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .step img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .step-number {
        left: 5%;
    }
}

@media (max-width: 991px) {
    .step-number {
        left: 20%;
    }
}

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
    }

    .step {
        margin: 20px 0;
    }

    .step-number {
        left: 31%;
    }
}

@media (max-width: 530px) {
    .step-number {
        left: 28%;
    }
}

@media (max-width: 430px) {
    .step-number {
        left: 23%;
    }
}

@media (max-width: 330px) {
    .step-number {
        left: 12%;
    }
}

/* our Work process section end  */



/* Contact section start  */
.contact-section {
    background: var(--bg-color);
    /* Gradient background similar to the image */
    color: var(--primary-color);
    padding: 40px 20px;
}

/* Individual Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon Styles */
.contact-item i {
    font-size: 50px;
    color: var(--primary-color);
    /* Orange color for icons */
}

/* Text Styles */
.contact-item p {
    font-size: 18px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item p {
        font-size: 16px;
        font-weight: 500;
    }

    .contact-item i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .contact-item p {
        font-size: 20px;
        text-align: center;
    }

    .contact-item i {
        font-size: 30px;
    }
}

/* Contact section end  */

/* Footer section start  */
.footer-section {
    padding-top: 30px;
    font-weight: 600;
    background-color: var(--bg-color);
}

.f-box,
.footer-section .map {
    margin-top: 20px;
}

.f-box h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    font-weight: 600;
}

.f-box p {
    margin: 15px 0px;
    font-size: 17px;
    color: var(--primary-color);
}

.f-box h4::after {
    height: 3px;
    width: 70px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    content: "";
}

.f-box ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.f-box ul li {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 10px 0px;
}

.f-box ul li a span {
    font-weight: 600;
}

.f-box ul li a {
    color: var(--primary-color);
}

.f-box ul li a:hover {
    color: var(--secondary-color);
}

.f-box ul li span {
    flex: 1;
}

.f-box img {
    width: 120px;
}

.f-box .social-link {
    display: flex;
    align-items: center;
}

.f-box .social-link li a,
.f-box ul li>i {
    display: flex;
    margin-right: 10px;
    align-items: center;
    transition: 0.5s;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--primary-color);
    color: rgb(240, 227, 209);
    border-radius: 1px;
}

.f-box .social-link li a:hover,
.f-box ul li>i:hover {
    background-color: rgb(240, 227, 209);
    color: var(--primary-color);
    border-radius: 5px;
}

.footer-section .map {
    height: 100%;
    box-shadow: 0px 10px 20px 0px #1dbf7316;
}

.footer-section .map iframe {
    height: 100%;
    border-radius: 10px;
}

.footer-section .copy-right {
    text-align: center;
    padding: 10px;
    z-index: 7;
    color: rgb(240, 227, 209);
    background-color: var(--secondary-color);
    margin-top: 20px;
    position: relative;
}

.footer-section .copy-right p {
    margin-bottom: 0;
}

.footer-section .copy-right p a {
    color: rgb(240, 227, 209);
    font-weight: 600;
}

/* Footer section end  */


/* About Us Page Start */
.banner_section {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 220px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.about_heading {
    position: relative;
    z-index: 1;
    color: rgb(240, 227, 209);
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* ✅ Tablet */
@media (max-width: 991px) {
    .about_heading {
        font-size: 40px;
        line-height: 48px;
    }

    .banner_section {
        padding: 150px 20px;
        height: auto;
    }
}

/* ✅ Mobile */
@media (max-width: 576px) {
    .about_heading {
        font-size: 32px;
        line-height: 38px;
    }

    .banner_section {
        padding: 120px 15px;
    }
}


/* Text marquee start  */
.marquee_section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-color);
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    font-size: 10vw;
    font-weight: bold;
    color: var(--secondary-color);
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin: 0 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Rotating star */
.star-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.star {
    width: 6vw;
    height: 6vw;
    min-width: 40px;
    min-height: 40px;
    background: url('./asset/about us/star-dark.png') no-repeat center center/contain;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive text size */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 12vw;
    }

    .star {
        width: 8vw;
        height: 8vw;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 14vw;
    }

    .star {
        width: 10vw;
        height: 10vw;
    }
}

/* Text marquee end  */

/* Our team section start  */
.team_section {
    background-color: var(--bg-color);
}

.team_heading {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -1.06px;
    margin-top: 10px;
    transition: all 0.5s ease-in-out;
}

.team_heading span {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 300;
    transition: all 0.5s ease-in-out;
    color: var(--bt-color);
}

.team_p {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.team_p span {
    font-weight: 500;
}


.team_section .swiper {
    padding-top: 30px;
    width: 100%;
}

.team_section .swiper-slide {
    height: 400px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.team_section .swiper-slide img {
    width: 100%;
    border-radius: 8px;
    /* Optional: for rounded corners */
}

.team_section .swiper-wrapper {
    padding-bottom: 20px;
    /* Optional: space below slider before line */
}

.team-content h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.team-content p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--secondary-color);
    cursor: pointer;
}


/* Our team section end  */

/* Testimonial section start  */
.testimonial_section {
    background-color: var(--bg-color);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    background-color: var(--primary-color);
    color: rgb(240, 227, 209);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 100%;
    flex: 0 0 100%;
    transition: transform 0.5s ease;
}

.testimonial-card .top-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: rgb(240, 227, 209);
    font-size: 30px;
    /* Adjust size as needed */
}

.quote {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    /* Ensures quote stays compact */
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.author {
    font-size: 24px;
    font-weight: bold;
}

.location {
    font-size: 14px;
    color: rgb(240, 227, 209);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.nav-buttons button {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-buttons button.active {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 15px;
    }

    .quote {
        font-size: 40px;
    }

    .stars {
        font-size: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .author {
        font-size: 15px;
    }

    .location {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 10px;
    }

    .quote {
        font-size: 36px;
    }

    .stars {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author {
        font-size: 18px;
    }

    .location {
        font-size: 15px;
    }
}

/* Testimonial section end  */

/* About Us Page end */


/* Courses Page Start */

/* Center cards on screens between 600px and 991px */
@media (min-width: 600px) and (max-width: 991px) {
    .courses_card {
        margin-left: auto;
        margin-right: auto;
    }
}

.courses_card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* default shadow */
    border-radius: 10px;
    /* optional for smooth corners */
    padding: 20px;
    /* spacing inside card */
    background-color: var(--primary-color);
}

.courses_card:hover {
    transform: translateY(-8px);
    /* little lift on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
    /* stronger shadow on hover */
}

/* Courses Page end */

/* Contact page start  */
.contact-section {
    /* background-color: #f8f9fa; */
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.contact-info-container {
    background: #6b4c3d;
    color: white;
    position: relative;
    height: 100%;
}

/* .contact-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
} */

.info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
}

.contact-text p {
    margin-bottom: 0;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: white;
    color: #6a11cb;
    transform: translateY(-3px);
}

.form-container {
    padding: 40px 30px;
}

.form-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.form-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6a11cb;
}

.form-floating>label {
    padding: 12px 15px;
}

.btn-submit {
    background: #6b4c3d;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.btn-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.7s ease;
    z-index: -1;
}

.btn-submit:hover:before {
    left: 100%;
}

/* Animation effect */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom floating labels */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: #6a11cb;
    opacity: 0.8;
}

/* Contact page end  */



/* floting buttons  */


/* Demo content */
.content {
    padding: 20px;
}

/* Floating buttons container */
.floating-buttons {
    position: fixed;
    bottom: 10%;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* For side-by-side layout (like in your image) */
@media (min-width: 768px) {
    .floating-buttons {
        flex-direction: row;
        gap: 15px;
    }
}

/* Button styling */
.floating-buttons .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-buttons .btn:hover {
    transform: scale(1.1);
}

/* WhatsApp button */
.floating-buttons .whatsapp-btn {
    background-color: #25D366;
}

/* Call button */
.floating-buttons .call-btn {
    background-color: var(--primary-color);
}

/* Icon styling */
.floating-buttons .btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}




  /* The underline effect */
  .nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #8b5a2b;
    bottom: 0;
    left: 0;
    transition: width 0.5s ease;
}

.nav-item a:hover {
    color: #8b5a2b;
}

.nav-item a:hover::after {
    width: 100%;
}
