:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-section {
    /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); */
    background-color: #dfe8ff;
    background-size: cover;
    padding-bottom: 4rem!important;
    padding-top: 6rem!important;
    /* padding: 4rem 0 !important; */
    background-position: center;
    min-height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite alternate;
        } */
@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.1;
    }
}
.nav-item a.nav-link {
    color: #000;
    font-size: 17px;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content {
    }

.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
    color: white;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.feature-card p {
    margin-bottom: 0;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 500;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.outcome-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.outcome-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.company-logo {
    height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}
.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}
.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

img.logo_img {
    max-width: 231px;
}
.hero-section {
    /* background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); */
    /* min-height: 100vh; */
    /* position: relative; */
    /* overflow: hidden; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="300" cy="700" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="700" cy="800" r="3" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}
img.logo_sx {
    max-width: 308px;
    /* display: block; */
    margin-top: 20px;
}
.highlight-text {
    color: #fbbf24;
    font-weight: 700;
}

.skill-badge {
    background: rgb(44 88 204);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(44 87 203);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 0.25rem;
    display: inline-block;
}

.cta-button {
    background: #2c58cc;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgb(44 88 204 / 46%);
}
.cta-button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 28%);
    color: #ffffff;
}

.secondary-btn {
    border: 2px solid #2c58cc;
    color: #2c58cc;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.secondary-btn:hover {
    background: white;
    color: #2563eb;
}

/* .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            transition: transform 0.3s ease;
        } */

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}
.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.about-section {
    background-color: #f8f9fa;
    /* padding: 80px 0; */
}

.about-title {
    /* color: #2563eb; */
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
}

.about-text {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 5px;
}
.about-text b {
    font-weight: 500;
}

.about-image img {
    width: 100%;
    /* background: linear-gradient(135deg, #2563eb, #3b82f6); */
    /* border-radius: 6px 6px 6px 145px; */
    /* padding-left: 9px; */
    /* border-left: 3px solid #2c58cc; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    /* box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2); */
}
@media (max-width: 768px) {
    .contact_no {
        margin-left: 0 !important;
    }

    .about-section {
        padding: 60px 0 10px !important;
    }

    .about-image {
        /* height: 250px; */
        /* margin-top: 2rem; */
    }
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}
.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.hero-section {
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); */
    /* color: white; */
    /* background: red; */
    /* padding: 4rem 0; */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.card-custom {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.badge-custom {
    background-color: var(--primary-color);
}

.list-group-item-custom {
    border-left: 4px solid var(--primary-color);
}
.form-group {
    margin: 7px 0;
}

div#enquiry-now .adm-txt {
    color: #2c58cc;
    text-align: center;
    padding-top: 21px;
    /* padding-bottom: 10px; */
    font-size: 31px;
    font-weight: bold;
    /* background-color: #2c58cc; */
}

.form-control {
    border: none;
    border: 1px solid #e3e3e3;
    border-radius: 5px !important;
    height: 48px;
    margin-bottom: 11px;
}
button#submitForm {
    background-color: #2c58cc;
    padding: 12px 40px;
    border-radius: 46px;
    border: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
}

div#enquiry-now {
    border: 0;
    border-radius: 25px;
    overflow: hidden;
    max-width: 397px;
    margin: 0 auto;
}

form#leadForm {
    padding: 10px 21px;
    padding-top: 0;
    margin-top: 5px!important;
}

.contact_no {
    background-color: #2c58cc;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
    text-decoration: none;
    margin-left: 20px;
    text-align: center;
    /* margin-top: 20px; */
}
.contact_no:hover {
    color: #000 !important;
    transition: all 0.3s;
    background-color: #ffd700;
}

/* footer */

footer {
    padding-top: 50px;
    background-color: #071329;
    background-image: url("../img/pattern.png");
    background-size: 39%;
}

.footer_widight {
    color: #fff;
    padding: 15px;
}
.footer_widight p {
    display: flex;
    align-items: baseline;
    grid-gap: 15px;
    padding: 7px 0;
    margin: 7px 0;
    font-size: 14px;
    border-bottom: 1px dashed #575757;
}
.footer_widight p i {
    font-size: 20px;
    position: relative;
    display: block;
}

.footer_widight p a {
    display: block;
    color: #fff;
}
.footer_widight p span {
    display: block;
    line-height: 1.5;
}
.footer_widight h4 {
    margin-bottom: 18px;
    color: #3473ff;
}
p.align-content-center {
    align-items: center;
}
.footer_widight .b-0 {
    border-bottom: 0;
}
.textwidget ul {
    /* margin: 0; */
    /* padding: 0; */
}
.textwidget ul li {
    }
.textwidget ul li:hover a {
    color: #3473ff;
    transition: all 0.2s;
}
section#Programs_Offered {
    background-color: #e7f6ff;
}
.cy {
    color: #ffffff;
}

.col-md-3.showhim {
    margin: 0 !important;
    padding: 8px;
}
.textwidget ul li a {
    /* border-bottom: 1px solid #474747; */
    border-bottom: 1px dashed #575757;
    color: #fff;
    padding: 5px 0;
    margin: 5px 0;
    display: block;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
}
.textwidget ul:last-child a {
    border-bottom: none;
}
footer iframe {
    height: 300px!important;
}
.text-center.copy-right {
    margin-top: 40px;
    background-color: #ffffff1c;
}
a.whatsapp__chat {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #0e870e;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 44px;
    font-size: 22px;
    /* padding: 10px; */
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 99;
    box-shadow: 2px 2px 10px #0000002e;
}

.col-md-12.text-center.form_btn {
    margin-bottom: 13px;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}
.back-to-top {
    position: fixed;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #000;
    width: 40px;
    height: 40px;
    /* font-size: 18px; */
    border-radius: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 21px;
    color: #fff;
    line-height: 42px;
    text-align: center;
    display: block;
}

.highlight-text {
    color: #2c58cc;
}
@media screen and (min-width: 1401px) and (max-width: 1650px) {
    .height44 {
        min-height: 30rem;
    }
    

}

@media   (max-width:767px) {


 body   .hero-content h1 small {
    font-size: 32px;
}

}

.form-clickOuter {
    position: fixed;
    bottom: 48%;
    right: -54px;
    -webkit-transform: rotate(352deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(270deg);
    animation: blinker 2s linear infinite;
    z-index: 9999;
    transition: all 0.3s;
}
.form-click:hover {
    color: #fff;
    transition: all 0.3s;
}
.form-click {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 7px 7px 0 0;
    color: #fff;
    background: #2c58cc;
    text-decoration: none;
}

nav.navbar.navbar-expand-lg.navbar-dark.w-100 {
    /* position: absolute; */
}

button.accordion-button {
    font-size: 20px;
}

button.navbar-toggler {
    background-color: #000000;
    padding: 2px 5px;
}

div#navbarNav {
    /* background-color: #ffffff; */
    /* padding: 15px; */
    /* border-radius: 12px; */
    /* margin-top: 12px; */
}

nav.navbar {
    transition: all 0.3s;
    position: absolute;
}
nav.navbar.navbar-expand-lg.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    position: fixed;
    background-color: #fff;
    transition: all 0.3s;
    box-shadow: 2px 2px 10px #ccc;
}

img.logo_icon {
    height: 22px;
    margin: 5px;
}

.hero-content p {
    color: #000;
    font-weight: 400;
    font-size: 18px !important;
}
.hero-content h1 small {
    font-size: 44px;
    font-weight: 400;
}
body .hero-content h3 {
    color: #000;
    font-weight: 400;
    font-size: 24px !important;
}
.hero_logo_flex {
    margin-top: 24px;
}

/*-dddddddddddd--*/

    /* Particles Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: float-particles 6s infinite linear;
        }

        @keyframes float-particles {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }






        h2.section-title.text-left.display-5 {
    text-align: left;
}

.about-section .section-title {
    font-size: 28px;
    margin-bottom: 6px;
}


.list_ul {

margin-left: 0;

padding-left: 0;
}

.list_ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    display: block;
    width: 20px;
    height: 20px;
    flex: none;
    color: #fff;
    background-color: #1e3a8a;
    border: 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
    border-radius: 3px;
    margin-top: 4px;
}


.list_ul li {
    padding: 4px 0;
    /* color: #fff; */
    border: 0;
}
.list_ul li {
    list-style: none;
    text-align: left;
    padding: 4px 0;
    color: #000;
    /* border-bottom: 1px dashed #928c8c; */
    padding-left: 0px;
    margin: -1px 0;
    font-size: 16px;
    display: flex;
    grid-gap: 12px;
    align-items: center;
}

.list_ul li:last-child {

    border-bottom: 0;

}



#Skill .feature-card {
    text-align: center;
}