/* * {
  cursor: url('./images/customCursor.png') 25 25, auto !important;
} */


body {
    margin: 0;
    font-family: Arial, sans-serif;
}

:root {
    /* --primary-color: #4733c9; */
    /* do not remove this color */
    --primary-color: #185ca5;
    --primary-hover: #2d1f80;
    --secondary-color: #ffffff;
    --accent-color: #f0f0f0;
    --white: white;
    --black: black;
    --background-color: #ffffff;
    --section-bg-light: #f8f9fc;
    --section-bg-alt: #f8fafc;
    --muted-color: #595c5f;
    /* Typography */
    --small-font-size: 14px;
    --desc-font-size: 15px;
    --title-font-size: 32px;

    /* Decoration */
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
    --border-radius-pill: 50px;
    --main-transition: all 0.4s ease;
    --fast-transition: 0.3s ease;
    --card-shadow: 0 10px 30px rgba(71, 51, 201, 0.08);
    --hover-shadow: 0 25px 50px rgba(71, 51, 201, 0.25);
}



.italic {
    font-style: italic;
}

.HeaderBackground {
    background-color: var(--primary-color);
}

.bgColor {
    background-color: var(--primary-color) !important;
}

.textWhite {
    color: var(--white) !important;
}

.hero {
    background: var(--primary-color);
    height: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: var(--small-font-size);
    max-width: 500px;
    margin: 0 auto 10px;
    opacity: 0.9;
}

.breadcrumb {
    font-size: var(--small-font-size);
    opacity: 0.8;
}

.legal-section {
    background: var(--white) !important;
}

.mission-vision-section {
    background:linear-gradient(135deg, #28beff47 0%, #3e80d540 50%, #3e80d569 100%);
    color: var(--black);
}


.mission-vision-section p {
    font-style: italic;
    color: var(--muted-color);
}

.section-title {
    color: var(--primary-color) !important;
    font-size: var(--title-font-size);
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--title-font-size);
}

.section-title p {
    color: var(--white) !important;
}
.section-lable{
    color: var(--primary-color);
}
.second-section-title {
    color: var(--primary-color) !important;
    font-size: var(--title-font-size);
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--title-font-size);
}

.cardHeader {
    line-height: 1 !important;
    font-size: 20px !important;
    margin-top: -25px;
}

.secondSectionSubTitle {
    margin-bottom: 58px !important;
}

.mv-card {
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--main-transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mv-card h3 {
    color: var(--primary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.custom-tabs .nav-link {
    border-radius: 30px;
    padding: 6px 20px;
    margin-right: 10px;
    background: transparent;
    color: #555;
}


.image-box {
    padding: 20px;
    border-radius: var(--border-radius-xl);
    display: inline-block;
}

.heroText {
    text-align: justify;
}

.online-card {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    width: 220px;
    text-align: left;
}

/* services section */

.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 18px 10px;
    box-shadow: 0 12px 35px rgb(145 145 145 / 6%);
    transition: var(--fast-transition);
    border: 1px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-desc {
    color: #6c757d;
    font-size: var(--desc-font-size);
    max-width: 90%;
    margin: 0 auto 15px;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 25px auto;
    width: 260px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    padding: 6px 0;
    font-size: var(--small-font-size);
    color: #444;
}

.service-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #ff4d4d;
    border-radius: 50%;
    flex-shrink: 0;
}


.service-bottom {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}




@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* value section */

.values-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 0 60px;
    overflow: hidden;
    margin: 300px 0;
}

.values-section .container,
.values-section .row {
    min-height: 100vh;
}


.left-block {
    margin-bottom: 40px;
    transition: var(--fast-transition);
}

.value-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 10px;
    transition: var(--fast-transition);
}

.value-title.active {
    font-weight: 700;
}

.value-desc {
    font-size: var(--desc-font-size);
    opacity: 0.8;
    max-width: 400px;
}

.timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.timeline {
    position: relative;
    width: 100%;
    max-width: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item {
    position: absolute;
    width: 100%;
    padding: 70px 60px;
    border-radius: 30px;
    backdrop-filter: blur(25px);
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-item h4 {
    font-size: var(--title-font-size);
    margin-bottom: 25px;
    font-weight: 700;
}

.timeline-item p {
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.95;
}

/* Products */

.products-section {
    background: var(--white);
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: #6a5af9;
    top: -150px;
    left: -150px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    bottom: -150px;
    right: -150px;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.main-title {
    color: var(--primary-color);
}

.main-title span {
    color: var(--primary-color);
}

.subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--main-transition);
    border: 1px solid rgba(71, 51, 201, 0.15);
    height: 100%;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}


.product-card h5 {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}


.product-card p {
    font-size: var(--small-font-size);
    color: #555;
}


.icon-box {
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    position: relative !important;
    top: -41px;
    border: 1px solid var(--primary-color) !important;
}



/* ===== NEWSLETTER SECTION ===== */


.newsletter-section {
    background: var(--white);
    position: relative;
}


.newsletter-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    transition: var(--main-transition);
}

.newsletter-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


.newsletter-subtitle {
    font-size: var(--small-font-size);
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
}

.newsletter-title span {
    color: var(--white);
    position: relative;
}

.newsletter-title span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: 5px;
    border-radius: 5px;
    z-index: -1;
}

.newsletter-desc {
    font-size: var(--desc-font-size);
    opacity: 0.85;
}


.newsletter-input-group {
    display: flex;
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--primary-color);
}


.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    outline: none;
    font-size: var(--small-font-size);
}


.newsletter-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    transition: var(--fast-transition);
}

.newsletter-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}


.form-check-label {
    color: var(--primary-color);
    font-size: var(--small-font-size);
}


.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #6b5cff;
    top: -120px;
    left: -120px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #3a27a8;
    bottom: -120px;
    right: -120px;
}


@media(max-width:768px) {
    .newsletter-title {
        font-size: 26px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: var(--border-radius-lg);
    }

    .newsletter-btn {
        padding: 15px;
        width: 100%;
    }
}




/* 1. Force the iframe to disappear */
iframe.goog-te-banner-frame {
    display: none !important;
}

/* 2. Prevent the 'table' space from appearing at the top */
body {
    top: 0px !important;
    position: static !important;
}

/* 3. Hide the tooltip popups when you hover over text */
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}

/* 4. Remove the blue highlight on translated text */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

 .bg-circle {
     position: absolute;
     border-radius: 50%;
     opacity: 0.15;
     background: #5b9bd5;
     pointer-events: none;
 }

 .bg-circle-1 {
     width: 220px;
     height: 220px;
     top: -40px;
     right: -60px;
 }

 .bg-circle-2 {
     width: 160px;
     height: 160px;
     top: 80px;
     right: 60px;
 }

 .bg-circle-3 {
     width: 120px;
     height: 120px;
     bottom: 20px;
     right: -30px;
 }