:root {
    --brand_primary: #5A7DC1;
    --brand_secondary: #ffb121;
    --brand_tertiary: #ffffe3;
    --ink: #0f1f53;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
p {
    font-size: 1rem;
    line-height: 1.6;
    color: #707070;
}
section {
    padding: 80px 0 !important;
}

/* Section headings */
.section_header {
    text-align: center;
    margin-bottom: 50px !important;
}

.section_header i {
    color: var(--brand_primary);
}

.section-title {
    font-weight: 700;
    font-size: 3.5vw;
    letter-spacing: .3px;
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
    color: var(--ink);
}

.section-subtitle {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease .15s;
    max-width: 720px;
    margin-inline: auto;
    color: #707070;
}

.my_bg_light {
    background-color: #fafbff;
}

.my_button {
    background-color: var(--brand_primary);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.my_button:hover {
    background-color: var(--ink);
    color: #fff !important;
    transform: translateY(-2px);
}

.my_dark_icons {
    color: var(--brand_primary);
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.my_brand_text {
    color: var(--ink);
    font-weight: bold;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Navbar */

/* Responsive logo image in navbar */
.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}

/* Navbar sticky style when scrolled */
.navbar.sticky {
    box-shadow: 0 10px 30px rgba(71, 71, 71, 0.06);
    background: var(--ink) !important;
    color: #313131 !important;
}

/* Navbar default style (on hero, before scroll) */
.navbar {
    color: #fff !important;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Navbar links default (on hero) */
.navbar .nav-link,
.navbar .navbar-brand,
.navbar .navbar-toggler {
    color: #fff !important;
}

/* Navbar links when sticky */
.navbar.sticky .nav-link,
.navbar.sticky .navbar-brand,
.navbar.sticky .navbar-toggler {
    color: #fff !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    background: url('https://www.informatica.com/content/dam/informatica-com/en/images/c01v2/c01v2-education_1440x540.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 46, 139, 0.401);
}

.hero .container {
    padding-top: 15%;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}
.hero .colored_ {
    color: var(--brand_secondary);
    font-size: 4rem;
}
.hero p {
    color: #e2e2e2 !important;
}
.hero .scroll-down {
    margin-top: 10%;
    font-size: 2rem;
}

.scroll-down a {
    color: var(--brand);
    animation: bounce 1.5s infinite;
}

/* About */
#about {
    background: var(--brand_primary);
    color: #fff !important;
    padding: 5rem 0;
}
.about-title {
    font-weight: 800;
    letter-spacing: .3px;
    opacity: 100%;
    transition: all .7s ease;
    margin-bottom: 1.5rem;
}
.colored_ {
    color: var(--brand_primary) !important;
    font-size: 3rem;
}
.colored_2 {
    color: var(--brand_secondary);
    font-size: 3rem;
}

.about-subtitle {
    color: #fff !important;
    max-width: 85%;
    margin-inline: auto;
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.2px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.fade-up.delay-1 {
    animation-delay: .3s;
}

.fade-up.delay-2 {
    animation-delay: .6s;
}

.fade-up.delay-3 {
    animation-delay: .9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Services */
.service_feature_card {
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 25px 0 25px 0;
    border: 0.25px solid #e0e0e0;
    border-bottom: 4px solid var(--ink);
    padding: 40px 30px !important;
    box-shadow: 0 4px 12px rgba(141, 141, 141, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.service_feature_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(141, 141, 141, 0.2);
    border-bottom: 4px solid var(--brand_primary);
}
/* Partner carousel */
.partner-logo {
    object-fit: contain;
    height: 70px;
    filter: grayscale(100%);
    opacity: .85;
}

/* FAQ Section */
.faq-section {
    
}
#faq .faq_area{
    width: 80%;
}
#faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#faq .accordion-button {
    background-color: var(--ink);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: none;
}

#faq  .accordion-button:not(.collapsed) {
    background-color: var(--brand_primary);
    color: #fff;
}

#faq .accordion-button:focus {
    box-shadow: none;
}

#faq .accordion-body {
    background: #fff;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    padding: 1rem 1.25rem;
}

/* Footer */
.footer {
    background: var(--ink);
    color: #fff !important;
}

.footer p {
    color: #fff !important;
}

.footer-logo {
    max-height: 100px;
    height: auto;
    width: auto;
}

.footer a {
    color: #9ec5fe;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
    transition: all 0.3s ease;
}

/* Animation visible state */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}