/* Nav bar */

.custom-navbar {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar .navbar-nav .nav-link {
    font-family: "Oxanium", sans-serif;
}

.navbar .navbar-nav .nav-link:hover {
    color: #ee3325;
}



/* Banner Section */
.banner-section {
    background: url('your-background-image.jpg') center center / cover no-repeat;
    height: 100vh;
    position: relative;
    color: white;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .banner-content {
        padding-bottom:180px;
        justify-content: center;
    }
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: "Oxanium", sans-serif;
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
}

.banner-content p {
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
}

.banner-stats {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 15px;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-weight: bold;
}

.stat-box small {
    display: block;
    font-size: 0.9rem;
    color: #ddd;

}

.banner-stats {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    padding-bottom: 80px;
    margin-top: 15px;
}



/* Card section */

:root {
    --stroke-60: linear-gradient(180deg, rgba(210, 214, 219, .6) 0%, rgba(210, 214, 219, 0) 50%, rgba(210, 214, 219, .6) 100%);
}

.card-section {
    position: relative;
    background: #fff;
    padding: 3rem 0;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    top: -50px;
}

.card-box {
    border-radius: 12px;
    background: linear-gradient(231deg, #e3dfed 0%, #f0f1f4 36.13%) padding-box, var(--stroke-60) border-box;
    border: 1px solid transparent;
    height: 100%;
    padding: 1.5rem;
}

.card-box h5 {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
}

.card-box p {
    margin-top: 6rem;
    font-family: "Montserrat", sans-serif;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 40px;
}

.bg-purple {
    background-color: #39255b;
    border: 4px solid #7b63a1;
}

.bg-orange {
    background-color: #db6211;
    border: 4px solid #d17e47;
}

.bg-yellow {
    background-color: #d28c01;
    border: 4px solid #e5b350;
}

.bg-green {
    background-color: #1e433b;
    border: 4px solid #277262;
}

.bg-red {
    background-color: #990000;
    border: 4px solid #c13d3d;
}

.icon-box img {
    max-width: 100%;
    height: auto;
}


/* Why AI Section */

.why-ai .section-title {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
    font-weight: 600;
    color: #0f172a;
}

.why-ai .sub-title {
    font-size: 18px;
    color: #3f3f3f;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    line-height: inherit;
}

.why-ai .accordion-button {
    background-color: transparent;
    font-weight: 500;
    font-size: 22px;
    padding: 3rem 0;
    color: #0f172a;
    font-family: "Oxanium", sans-serif;
}

.why-ai .accordion-button::after {
    transform: rotate(45deg);
    content: '';
    width: 15px;
    height: 15px;
    border-right: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none !important;
}

.why-ai .accordion-button.collapsed::after {
    content: '';
    width: 15px;
    height: 15px;
    border-right: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none !important;
    /* Hides Bootstrap's default arrow */
}

.why-ai .accordion-button:hover,
.why-ai .accordion-button:focus,
.why-ai .accordion-button:focus-visible {
    background-color: transparent !important;
    color: #0f172a;
    box-shadow: none !important;
    border-color: transparent !important;
    outline: none !important;
}

.accordion-body {
    font-size: 17px;
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
}

/* Affordable Section */
.affortable h3 {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
    font-weight: 600;
    color: #0f172a;
}

.affortable-box {
    border-radius: 12px;
    background: linear-gradient(231deg, #e3dfed 0%, #f0f1f4 36.13%) padding-box, var(--stroke-60) border-box;
    border: 1px solid transparent;
    height: 100%;
    padding: 1.5rem;
}

.affortable h5 {
    font-size: 30px;
    margin-top: 80px;
    font-family: "Oxanium", sans-serif;
}

.affortable p {
    font-family: "Montserrat", sans-serif;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 40px;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #9da4ae;
    /* Match with theme or adjust */
    font-family: "Oxanium", sans-serif;
}

/* Network Section */

.network-section h2 {
    font-size: 30px;
    margin-top: 30px;
    font-family: "Oxanium", sans-serif;
}

.network-section p {
    font-family: "Montserrat", sans-serif;
}

.partner-card {
    border-radius: 12px;
    background: linear-gradient(231deg, #e3dfed 0%, #f0f1f4 36.13%) padding-box, var(--stroke-60) border-box;
    border: 1px solid transparent;
    height: 100%;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.partner-icon {
    font-family: "Oxanium", sans-serif !important;
    font-size: 22px;
    line-height: 1;
}

.partner-title {
    font-family: "Oxanium", sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: black;
}

.partner-subtext {
    color: black;
    font-size: 0.9rem;
}

.text-purple {
    color: #9b59b6;
}


.partner-list {
    color: black;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    margin-left: 1rem;
    padding-left: 0.5rem;
}

.partner-flag {
    border-radius: 50%;
    border: 2px solid black;
    width: 38px;
    height: 38px;
}

/* Services Section */
.service h2 {
    font-size: 30px;
    margin-top: 30px;
    font-family: "Oxanium", sans-serif;
}

.service p {
    font-family: "Montserrat", sans-serif;
}

/* Mission & Vision */

/* Make each column/card full height relative to the tallest sibling */
.mission-vision .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make each column take equal height */
.mission-vision .col-lg-6 {
    display: flex;
}

/* Stretch the card to fill the column */
.mv-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Ensure the image and content do not overflow */
.mv-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.mv-card:hover .mv-img {
    opacity: 0.5;
    /* Or any lower opacity you prefer */
}



/* Allow content area to grow to fill available space */
.mv-content {
    background: #fff;
    padding: 20px;
    margin: 0 15px;
    border-radius: 15px;
    position: relative;
    top: -40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Floating icon remains at the top-right */
.mv-icon {
    position: absolute;
    right: 20px;
    top: -20px;
    background: #ee3325;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    /* Equal width and height */
    height: 40px;
    display: flex;
    /* Center icon inside */
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}


.mv-icon:hover {
    background: #ff938c;
}

.mv-title {
    font-family: "Oxanium", sans-serif;
    font-size: 30px;
}

.mv-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #656565;
}


/* Team Section */

.team .section-title {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
    font-weight: 600;
    color: #0f172a;
}

.team .sub-title {
    font-size: 18px;
    color: #3f3f3f;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    line-height: inherit;
}

.team .accordion-button {
    background-color: transparent;
    font-weight: 500;
    font-size: 22px;
    padding: 3rem 0;
    color: #0f172a;
    font-family: "Oxanium", sans-serif;
}

.team .accordion-button::after {
    transform: rotate(45deg);
    content: '';
    width: 15px;
    height: 15px;
    border-right: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none !important;
}

.team .accordion-button.collapsed::after {
    content: '';
    width: 15px;
    height: 15px;
    border-right: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none !important;
    /* Hides Bootstrap's default arrow */
}

.team .accordion-button:hover,
.team .accordion-button:focus,
.team .accordion-button:focus-visible {
    background-color: transparent !important;
    color: #0f172a;
    box-shadow: none !important;
    border-color: transparent !important;
    outline: none !important;
}

.team .accordion-body {
    font-size: 17px;
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
}


/* Why 2smart Section */
.why-box {
    border-radius: 12px;
    background: linear-gradient(231deg, #e3dfed 0%, #f0f1f4 36.13%) padding-box, var(--stroke-60) border-box;
    border: 1px solid transparent;
    height: 100%;
    padding: 1.5rem;
}

.why-box h2 {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
}

.why-box h5 {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
}

.why-box p {
    font-family: "Montserrat", sans-serif;
}

/* Form Section */
form input,
form textarea {
    font-size: 1rem;
}

.form-control {
    padding: 1.375rem 1.75rem !important;
}

.custom-btn {
    height: 50px;
    width: 150px;
    background-color: #ee3325 !important;
    border: none !important;
}

.contact-title {
    font-size: 30px;
    font-family: "Oxanium", sans-serif;
}


/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 40px 0;
    color: #333;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Figtree', sans-serif;
    font-size: 30px;
}

footer a {
    text-decoration: none;
    color: #333;
}

footer a:hover {
    color: #ee3325;
}

footer p {
    margin: 0;
    font-family: 'Figtree', sans-serif
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.appointment-image {
    animation: upDown 2s ease-in-out infinite;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;

}

.contact-icon {
    font-size: 20px;
    color: #ee3325;
    /* or any custom color */
    min-width: 24px;
    /* ensures all icons align vertically */
    margin-top: 3px;
    /* optional: vertical centering tweak */
}

.book-btn {
    background-color: #ee3325;
    border-radius: 20px;
    text-decoration: none;
    padding: 20px;
    color: white;
    font-family: "Oxanium", sans-serif;
}

.book-btn:hover {
    background-color: #ff938c;
    border-radius: 20px;
    text-decoration: none;
    padding: 20px;
    color: white;
    font-family: "Oxanium", sans-serif;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 2px solid #ee3325;
    /* Change color as needed */
    border-radius: 50%;
    color: #ee3325;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ee3325;
    color: white;
}

/* Go to Top Button */
#goTopButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    /* hidden initially */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* This rotates the circle progress start */
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: #ee3325;
    stroke-width: 3.8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

/* Make sure only the text is counter-rotated to stay upright */
.arrow-text {
    transform: rotate(90deg);
    /* counter the -90deg rotation */
    transform-origin: center;
    fill: #000;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

#goTopButton.show {
    display: block;
    opacity: 1;
}

.elastic-circle-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #aaa;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    display: block;
    transition: transform 0.15s ease-out;
}


.elastic-circle-arrow .dot {
    width: 6px;
    height: 6px;
    background-color: #555;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-color{
    color: #ee3325;
}