﻿body {
    margin: 0;
    font-family: "Lato", sans-serif;
}

.top-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.container {
    max-width: 1800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 5px 20px;
}

.logo img {
    height: 50px;
}

/* ================= HAMBURGER MENU BUTTON ================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

/* ================= NAV MENU ================= */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .nav-menu ul li {
        position: relative;
    }

        /* Main Links */
        .nav-menu ul li a {
            display: block;
            padding: 15px 18px;
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s ease;
        }

            .nav-menu ul li a:hover {
                color: #0073aa;
            }
.contact_success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
    z-index:999;
}


/* Dropdown base */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 170px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

/* Show dropdown on hover */
.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown items */
.nav-menu .dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid #eee;
}

    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu li a {
        padding: 12px 15px;
        font-size: 13px;
        color: #333;
        display: block;
        text-decoration: none;
    }

        .nav-menu .dropdown-menu li a:hover {
            background: #f5f5f5;
            color: #0073aa;
        }

/* ================= ARROW ================= */
.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s ease;
}

/* ================= CONTACT INFO ================= */
.contact-info {
    font-size: 12px;
    text-align: right;
    color: #333;
}

    .contact-info span {
        display: block;
    }

/* Base dropdown */
.nav-menu .dropdown {
    position: relative;
}

    /* First-level dropdown */
    .nav-menu .dropdown > .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 180px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        border-radius: 4px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 999;
    }

/* Show first-level dropdown on hover */
.nav-menu > ul > li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Nested dropdown (right side) */
.nav-menu .dropdown-menu .dropdown {
    position: relative;
}

    /* Nested submenu styling */
    .nav-menu .dropdown-menu .dropdown > .dropdown-menu {
        top: 0;
        left: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    /* Show nested submenu on hover of its parent li */
    .nav-menu .dropdown-menu .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.nav-menu .dropdown-menu .dropdown-toggle::after {
    content: " ►";
    float: right;
    margin-left: 5px;
}

/* ================= MOBILE RESPONSIVE ================= */
/* ================= MOBILE RESPONSIVE ================= */
.top-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0;
}

.container {
    max-width: 1800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 5px 20px;
}

.logo img {
    height: 50px;
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: all 0.3s ease;
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

/* ================= NAVIGATION ================= */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .nav-menu ul li {
        position: relative;
    }

        .nav-menu ul li a {
            display: block;
            padding: 15px 13px;
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s ease;
        }

            .nav-menu ul li a:hover {
                color: #0073aa;
            }

/* ================= DESKTOP DROPDOWNS ================= */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-menu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu .dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid #eee;
}

    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu li a {
        padding: 12px 15px;
        font-size: 13px;
        color: #333;
    }

        .nav-menu .dropdown-menu li a:hover {
            background: #f5f5f5;
            color: #0073aa;
        }

/* Nested dropdowns (desktop) */
.nav-menu .dropdown-menu .dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
}

/* Arrows */
.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

.nav-menu .dropdown-menu .dropdown-toggle::after {
    content: " ►";
    float: right;
}

/* ================= CONTACT INFO ================= */
.contact-info {
    font-size: 12px;
    text-align: right;
    color: #333;
}

    .contact-info span {
        display: block;
    }
@media (min-width: 1025px) and (max-width: 1500px) {

    .nav-menu ul {
    
        gap: 0px;
    }

    .sap-hero-content {
        margin-top: 40px;
    }
}
/* ================= MOBILE STYLES ================= */


@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .container {
        flex-wrap: wrap;
        position: relative;
    }

    /* Hide menu by default on mobile */
    .nav-menu {
        display: none;
        width: 100%;
        background: #fff;
        padding: 10px 0;
    }

        /* Show menu when active */
        .nav-menu.active {
            display: block;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 0;
        }

            .nav-menu ul li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }

                .nav-menu ul li a {
                    padding: 12px 15px;
                }

        /* DISABLE hover on mobile */
        .nav-menu .dropdown:hover > .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* Mobile dropdown styling */
        .nav-menu .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            background: #f9f9f9;
            display: none;
            pointer-events: auto;
        }

        /* Show dropdown when parent has active class */
        .nav-menu .dropdown.active > .dropdown-menu {
            display: block;
        }

        /* Nested dropdown styling */
        .nav-menu .dropdown-menu .dropdown-menu {
            background: #f0f0f0;
            padding-left: 15px;
            display: none;
        }

        /* Show nested dropdown when active */
        .nav-menu .dropdown-menu .dropdown.active > .dropdown-menu {
            display: block;
        }

    .contact-info {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding: 15px 0;
        border-top: 1px solid #ddd;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .contact-info {
        font-size: 11px;
    }
}
/*-----------------------HOME BANNER------------------------------*/
.h-bann {
    width:100%;
}
.h-bann img{
    width:100%;
}
.h-bann {
    position: relative;
    padding-top: 75px;
}

    .h-bann img {
        width: 100%;
        display: block;
    }

.courses-box {
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

    .courses-box a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px 30px;
        display: inline-block;
        margin: auto;
    }

/*-----------------------*/
.about-section {
    background: #f5f5f5;
    padding: 60px 20px;
}

.about-container {
    max-width: 1800px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Text */
.about-text {
    flex: 1;
    font-family: "Lato", sans-serif;
}

    .about-text h2 {
        font-size: 32px;
        color: rgb(33, 59, 116);
        margin-bottom: 15px;
        line-height: 42px;
        font-weight: 600;
        margin-top: -25px;
    }

    .about-text h3 {
        font-size: 24px;
        color: rgb(33, 59, 116);
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 31px;
    }

    .about-text p {
        font-size: 16px;
        color: rgb(66, 61, 61);
        line-height: 29px;
        margin-bottom: 15px;
        font-weight: 400;
    }

/* Right Image */
.about-image {
    flex: 1;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }













/* Buttons */
.tab-buttons {
    display: flex;
}

.tab-btn {
    flex: 1;
    padding: 30px;
    border: none;
    cursor: pointer;
    background: #ddd;
    font-weight: bold;
    margin-top: 0px;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
}

    .tab-btn.active {
        background: #2f6fad;
        color: white;
    }

/* Content */
.tab-content {
    display: none;
    padding: 0px 0px 40px 0px;
    background: #f5f5f5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
     visibility: hidden;
}

    .tab-content.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1800px;
    margin: auto;
}

/* Image */
.tab-image img {
    width: 100%;
    border-radius: 6px;
}

/* Text */
.tab-text h2 {
    font-size: 55px;
    color: rgb(33, 59, 116);
    font-family: "Lato", sans-serif;
    font-weight: 300;
}
.tab-text h4 {
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #000000;
}
.tab-text p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #423d3d;
    line-height: 29px;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-grid {
        grid-template-columns: 1fr;
    }
}

.discover-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #2f6fad;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .discover-btn:hover {
        background-color: #1f4d80;
        transform: translateY(-2px);
    }
/* Section */
.sap-section {
    display: flex;
    height: 320px;
    overflow: hidden;
}

/* Panels */
.panel {
    flex: 1;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

    /* Chevron shape */
    .panel::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    }

/* Colors */
.left::before {
    background: #3f97c6;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 0% 50%);
}

.center::before {
    background: #2f6fa3;
}

.right::before {
    background: #3f97c6;
    clip-path: polygon(0 0, 90% 0, 100% 0%, 100% 100%, 0 100%, 10% 50%);
}

/* Fix overlap spacing */
.panel:not(:first-child) {
    margin-left: -80px;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    transition: transform 0.4s ease;
}

/* Text hover effect ONLY */
.panel:hover .content {
    transform: translateY(-10px);
}

/* Icon */
.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Divider */
h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    margin: 10px auto;
    transition: width 0.3s ease;
}

.panel:hover h3::after {
    width: 80px;
}

/* Hidden content */
.extra {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
    .extra a {
        text-decoration: none;
        color: black;
    }
        .extra a:hover {
            color: black;
           
        }
.extra .button :hover {
    color: #73DCE5;
}

.panel:hover .extra {
    opacity: 1;
    transform: translateY(0);
}
.sap-section .sap-btn {

    background-color:white;
     min-height: 25px;
    min-width: 40px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

   /* .sap-section .sap-btn:hover {
        color: #73DCE5;
        border-color: #73DCE5;
    }
*/
/* Button */
button {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.footer-col button {
    margin-top: 10px;
    padding: 3px 68px;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
}
button a {
    text-decoration: none;
}


/* ================= MOBILE SLIDER ================= */
@media (max-width: 768px) {
    /* Remove chevron clips */
    .sap-section {
        height: 100%;
    }
        .panel::before {
        clip-path: none !important;
        border-radius: 20px;
    }

    .left::before {
        background: linear-gradient(135deg, #3f97c6 0%, #2c7ba8 100%);
        clip-path: none !important;
    }

    .center::before {
        background: linear-gradient(135deg, #2f6fa3 0%, #1f4f7a 100%);
    }

    .right::before {
        background: linear-gradient(135deg, #3f97c6 0%, #2c7ba8 100%);
        clip-path: none !important;
    }

    .panel {
        min-width: 280px;
        flex-shrink: 0;
        margin-left: 0 !important;
        margin-right: 15px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        min-height: 320px;
    }

    .content {
        padding: 25px 20px;
    }

    .icon {
        font-size: 45px;
    }

    h3 {
        font-size: 18px;
    }
  

        h3::after {
            width: 50px;
        }

    p {
        font-size: 15px;
        line-height: 1.5;
    }

    .extra {
        opacity: 1;
        transform: translateY(0);
        margin-top: 12px;
    }

    button {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .panel {
        min-width: 260px;
    }

    .icon {
        font-size: 40px;
    }
}















.testimonial-section {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

h2 {
    color: #1f3c73;
    margin-bottom: 40px;
}

.slider {
    overflow: hidden;
    max-width: 1500px;
    margin: auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

/* Card with 2 testimonials */
.card {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Each testimonial */
.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 48%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px 110px;
}

    .testimonial img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .testimonial p {
        line-height: 26px;
            color: #000000;
        font-size: 16px;
        /* line-height: 1.5; */
        font-weight: 400;
    }

    .testimonial h3 {
        margin-top: 10px;
    }

    .testimonial span {
        color: #2bb673;
        font-size: 13px;
    }

/* Dots */
.dots {
    margin-top: 20px;
}

    .dots span {
        height: 10px;
        width: 10px;
        margin: 5px;
        display: inline-block;
        background: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }

        .dots span.active {
            background: #333;
        }

/* Responsive */
@media(max-width: 768px) {
    .card {
        flex-direction: column;
    }

    .testimonial {
        width: 100%;
    }
}


.sap-recruiters-sec {
    text-align: center;
    padding: 0px 20px;
    background: #f5f5f5;
    padding-bottom: 50px;

}

.sap-title {
    font-size: 40px;
    font-weight: 700;
    color: #213b74;
     margin-bottom: 0px; 
    line-height: 100px;
    font-weight: 600;
    margin-top:0px;
}

.sap-desc {
    margin: auto;
    max-width: 1500px;
    /* margin: 0 -1px 29px; */
    color: #213b74;
    font-size: 18px;
    margin-bottom: 70px;
}

.sap-slider {
    overflow: hidden;
    width: 100%;
}

.sap-track {
    display: flex;
    width: max-content;
    animation: sapScroll 30s linear infinite;
}

.sap-item {
    flex: 0 0 250px;
    height: 120px;
    margin: 0 10px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:0.3s;
}
    .sap-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .sap-item:hover {
        transform: scale(1.05);
    }

/* 🔥 move only 1/3 since 3 sets */
@keyframes sapScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}




.footer {
    background: #111;
    color: #ccc;
    padding: 50px 50px 20px 50px;
    font-family: "Lato", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 90px;
}

.footer-col h2 {
    color: #fff;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-col h4 {
    margin-top: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin: 8px 0;
        font-size: 14px;
        cursor: pointer;
        transition: 0.3s;
    }

     
   

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

    .social-icons i {
        font-size: 18px;
        margin-right: 15px;
        background: #222;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
        color:white;
    }
    .social-icons1 i {
        font-weight: 100;
        font-size: 25px;
        margin-right: 10px;
        
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
        color: black;
    }
        .social-icons1 i:hover {
            background: #00aaff;
            color: #fff;
        }
        .social-icons i:hover {
            background: #00aaff;
            color: #fff;
        }
.social-icons1 a{text-decoration:none;}
/* Form */
.footer-form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    outline: none;
    background: #eee;
}

.footer-form button {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 120px;
    border-radius: 3px;
}

    .footer-form button:hover {
        background: #0096c7;
    }

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
}

    .footer-bottom span {
        color: #00aaff;
        font-weight: 600;
    }
   
/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
.footer-col ul li{

text-decoration:none;
}
.footer-col li a{
    text-decoration:none;
    color:#fff;
}
    .footer-col li a:hover {
        color: #00aaff;
    }
.footer-col li span{
    padding-left:10px;
}
.footer-col li a span:hover {
    color: #00aaff;
}
.footer-col a{
    text-decoration:none;
    color:#fff;
}
    .footer-col a:hover {
        color: #00aaff;
        
    }



.sap-hero {
    height: 250px; /* Adjust height as needed */
    background: url('img/sap-img/breadcrum-banner1.jpg') no-repeat center center/cover; /* Replace with your image path */

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    padding-top: 80px;
}

    /* Optional dark overlay for better text visibility */
    .sap-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      /*  background: rgba(0,0,0,0.4);*/
        z-index: 1;
    }

.sap-hero-content {
    position: relative; /* Make sure text is above overlay */
    z-index: 2;
    text-align: center;
}

    .sap-hero-content h1 {
        font-size: 70px;
        margin: 0;
        line-height:90px;
        font-weight:300;
        font-family:'Open Sans';
    }

    .sap-hero-content p {
        margin-top: 10px;
        font-size: 14px;
        letter-spacing: 1px;
    }


.sap-plus-section {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Lato", sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}
    .sap-plus-section p {
        font-size: 16px;
        line-height: 29px;
        color: #423d3d;
        font-weight: 400;
        font-size: 16px;
        font-weight: 400;
        line-height: 29px;
        margin: 0px 0px 0px 0px;
    }
    .sap-plus-section h2 {
        color: #213b74;
        margin-top: 20px;
        margin-bottom: 10px;
        line-height: 38px;
        font-size: 24px;
        font-weight: 700;
        font-family: "Lato", sans-serif;
    }

    .sap-plus-section h3 {
        color: #003366;
        margin-top: 30px;
        font-family: "Lato", sans-serif;
        margin-bottom: 0px;
    }

    .sap-plus-section ul {
        padding-left: 20px;
        font-family: "Lato", sans-serif;
        list-style: none;
    }

    .sap-plus-section b{
        color: #423d3d;
        font-size: 16px;
    }
    .sap-plus-section ul li p {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 29px;
        color: #423d3d;
    }
    .sap-plus-section ul li{
        margin-top:10px;
    }
        .sap-plus-section ul li::before {
            content: "▶";
            color: #423D3D; /* Light gray color */
            display: inline-block;
            width: 1em;
            margin-right: 6px;
            font-weight: normal; /* lighter weight */
            font-size: 0.9em; /* slightly smaller */
        }


/*------------------------------blog---------------------------*/


/* Container */
.yn-blog-container {
    width: 95%;
    margin: 40px auto;
    font-family: "Lato", sans-serif;
    max-width: 950px;
}

/* Card Layout */
.yn-blog-card {
    display: grid;
    grid-template-columns: 320px 110px 1fr;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

/* IMAGE */
.yn-blog-img {
    width: 300px;
    height: 150px;
   /* object-fit: cover;*/
}

/* DATE COLUMN */
.yn-blog-date {
    text-align: center;
    position: relative;
}

    /* Vertical divider */
    .yn-blog-date::after {
        content: "";
        position: absolute;
        right: 0;
        top: 5%;
        height: 90%;
        width: 1px;
        background: #ccc;
    }

/* Calendar Icon */
.yn-cal-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
    /* ADD THIS 👇 */
    background: url('blog-new/calander.svg') no-repeat center;
    background-size: 36px; /* controls icon size */
}

    /* Yellow top bar */
    .yn-cal-icon::before {

  
        position: absolute;
        top: -6px;
        left: 4px;
        width: 18px;
        height: 6px;
        background: #f4c542;
        border-radius: 2px;
    }

/* Date text */
.yn-date-day {
    font-size: 32px;
    font-weight: bold;
}

.yn-date-month {
    font-size: 14px;
}

.yn-date-year {
    font-size: 13px;
    color: #555;
}

/* Content */
.yn-blog-content {
    padding-left: 25px;
}

/* Title */
.yn-blog-title {
    font-size: 22px;
    margin-bottom: 10px;
}
.yn-blog-title a {
    text-decoration: none;
    color: inherit;
}

/* Description */
.yn-blog-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Link */
.yn-blog-link {
    text-decoration: none;
    color: #000;
}

    .yn-blog-link:hover {
        text-decoration: underline;
    }

/* Mobile */
@media (max-width: 768px) {
    .yn-blog-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .yn-blog-date::after {
        display: none;
    }

    .yn-blog-content {
        padding-left: 0;
    }

    .yn-blog-img {
        width: 100%;
    }
}


 /*   ---------------------------FAQs------------------------------*/

/* Wrapper */
.ynx-faq-wrapper {
    width: 80%;
    margin: 40px auto;
    font-family: "Lato", sans-serif;
}

/* Title */
.ynx-faq-title {
    text-align: center;
    font-size: 36px;
    color: #244a86;
    margin-bottom: 30px;
}

/* Container */
.ynx-faq-container {
    border: 1px solid #ddd;
}

/* Item */
.ynx-faq-item {
    border-bottom: 1px solid #ddd;
    background: #f5f5f5;
}

/* Question */
.ynx-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #213b74;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: "Lato", sans-serif;
    line-height: 29px;
}


/* Icon */
.ynx-faq-icon {
    transition: 0.3s;
}

/* Answer */
/* Answer (smooth animation) */
.ynx-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 16px;
    color: #423d3d;
    
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease, border 0.3s ease;
    font-family: "Lato", sans-serif;
    line-height:29px;
    font-weight:400;
}

/* Active open state */
.ynx-active .ynx-faq-answer {
    max-height: 200px;
    padding: 15px 20px;
    border: 1px solid #d0d7e2;
    margin: 0px 0px 0px 0px;
    /* border-radius: 6px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.ynx-active .ynx-faq-icon {
    transform: rotate(90deg);
}

/* Highlighted rows */
.ynx-highlight {
    background: #bcd3df;
}

    .ynx-highlight .ynx-faq-question {
        background: #7faec5;
        color: white;
    }

/* Hover */
.ynx-faq-question:hover {
    background: #32A0DB;
}




/*-------------------------WEBINAR--------------------------*/


/* Main Layout */
.ynw-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    font-family: "Lato", sans-serif;
}

/* Left */
.ynw-left {
    flex: 1;
}

.ynw-image {
    width: 100%;
    border-radius: 5px;
}

/* Right */
.ynw-right {
    flex: 1;
}

/* Title */
.ynw-title {
    font-size: 32px;
    color: #213b74;
    line-height: 42px;
    margin-bottom: 20px;
    font-weight:600;
    font-family: "Lato", sans-serif;
}

/* Text */
.ynw-text {
    font-size: 16px;
    color: #423d3d;
    line-height: 29px;
    margin-bottom: 15px;
    font-weight:400;
    font-family: "Lato", sans-serif;
    letter-spacing:0.2px;
}

/* Subtitle */
.ynw-subtitle {
    margin-top: 40px;
    margin-bottom:0px;
    font-size: 18px;
    color: #333;
    font-family: "Lato", sans-serif;
}

/* List */
.ynw-list {
    padding-left: 20px;
    margin-top:0px;

}

    .ynw-list li {
        margin-bottom: 5px;
        font-size: 16px;
        color: #423d3d;
        line-height:29px;
        font-weight:400;
        font-family: "Lato", sans-serif;
    }

/* SECTION with background image */
.ynp-section {
    position: relative;
    padding: 80px 40px;
    font-family: "Lato", sans-serif;
    text-align: center;
    color: white;
    /* YOUR IMAGE HERE 👇 */
    background: url("img/webinar-img/background.jpg") center/cover no-repeat;
}

    /* DARK OVERLAY (important for readability) */
    .ynp-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6); /* adjust darkness */
        z-index: 0;
    }

    /* Make content above overlay */
    .ynp-section * {
      
        position: relative;
        z-index: 1;
    }

/* TITLE */
.ynp-title {
    font-size: 38px;
    margin-bottom: 60px;
    color:white;
}

/* GRID */
.ynp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
    .ynp-grid p {
        font-family: "Lato", sans-serif;
        font-size:18px;
    }

/* CARD (glass effect) */
.ynp-card {
    padding: 40px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* ICON */
.ynp-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* HOVER */
.ynp-card:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* SCROLL SHOW */
.ynp-card.ynp-show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ynp-grid {
        grid-template-columns: 1fr;
    }
}












/* SECTION */
.ynx9-attend-wrapper {
    padding: 70px 20px;
    background: #f5f5f5;
    font-family: "Lato", sans-serif;
    text-align: center;
}

/* TITLE */
.ynx9-attend-heading {
    font-size: 34px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* SUBTEXT */
.ynx9-attend-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    font-family: "Lato", sans-serif;
}

/* GRID */
.ynx9-attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1150px;
    margin: auto;
}

/* CARD */
.ynx9-attend-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

/* ICON */
.ynx9-attend-icon {
    width: 50px;
    height: 50px;
}

/* TEXT */
.ynx9-attend-box p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    font-family: "Lato", sans-serif;
}

/* HOVER EFFECT */
.ynx9-attend-box:hover {
    background: #ffffff;
    transform: translateY(-5px);
    border: 1px solid #007bff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* LAST CARD FULL WIDTH */
.ynx9-full-width {
    grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ynx9-attend-grid {
        grid-template-columns: 1fr;
    }

    .ynx9-full-width {
        grid-column: span 1;
    }
}



/*------------contact-------------*/

.nx-callbar {
    /*  width: 100%;*/
    background: #2f4a7f;
    padding: 50px 10px;
    text-align: center;
    padding: 100px 0px 25px 10px;
}

.nx-callbar-text {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nx-callbar-number {
    font-weight: 700;
}
/* ROOT WRAPPER */
.vx-contact-wrapper {
    display: flex;
   /* min-height: 100vh;*/
   /* background: #f4f6f9;*/
    max-width: 1000px;
    margin: auto;
    padding: 80px
}

/* LEFT PANEL */
.vx-contact-left {
    width: 40%;
    background: linear-gradient(135deg, #1f3c88, #39a0ed);
    color: #fff;
    padding: 50px 40px;
}

.vx-contact-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.vx-contact-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.vx-contact-label {
    font-weight: bold;
    margin-top: 20px;
}

/* SOCIAL */
.vx-social-box {
    margin-top: 30px;
}

.vx-social-icon {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    cursor: pointer;
}

/* RIGHT PANEL */
.vx-contact-right {
    width: 65%;
    background: #fff;
    padding: 60px;
}

.vx-form-title {
    font-size: 28px;
    color: #1f3c88;
    margin-bottom: 30px;
}

/* FORM */
.vx-form-group {
    margin-bottom: 20px;
}

.vx-form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.vx-form-input,
.vx-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom:20px;
}

.vx-form-textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.vxz-submit-btn {
    width: 100%;
    padding: 14px;
    background: #1f3c88;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .vx-submit-btn:hover {
        background: #16306b;
    }

/* RESPONSIVE */
@media(max-width: 900px) {
    .vx-contact-wrapper {
        flex-direction: column;
    }

    .vx-contact-left,
    .vx-contact-right {
        width: 100%;
    }
}

.nx-map-wrapper {
    width: 100%;
    height: 600px;
    /*margin-top: 40px;*/
    border-radius: 10px;
    overflow: hidden;
   
}

.nx-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}


/*------------------------about vacs--------------------*/

.vacs-about-section {
    position: relative;
    background-image: url('img/about-vacs/about-banner2a555.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 100px;
}

    /* White overlay so text is readable */
    .vacs-about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
       /* background: rgba(255, 255, 255, 0.88);*/
    }

/* Keep text above overlay */
.vacs-about-container {
    position: relative;
    z-index: 2;
}

.vacs-about-left {
    width: 50%;
}

.vacs-about-title {
    color: #213b74;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 42px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
}

.vacs-about-heading {
    color: #2d4a8a;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.vacs-about-text {
    color: #423d3d;
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
}
.social-icons a {
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #2d4a8a;
        transform: translateY(-3px);
    }

.vacs-service-section {
    background: #efefef;
    padding: 60px 80px;
}

.vacs-service-container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0px;
}

.vacs-service-image img {
    width: 420px;
    height: auto;
    border-radius: 4px;
}

.vacs-service-content {
   width:100%
}

.vacs-service-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vacs-service-list {
    list-style: none;
    padding-left: 0;
}

    .vacs-service-list li {
        font-size: 15px;
        margin-bottom: 12px;
        position: relative;
        padding-left: 20px;
    }

        /* Custom square bullets */
        .vacs-service-list li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: #2d4a8a;
            font-size: 10px;
            top: 5px;
        }


     /*   -------------------success stories-----------------*/

/* Section */
.vacs-placement-section {
    padding: 60px 20px;
    background: #f4f7fb;
    text-align: center;
}

/* Title */
.vacs-placement-title {
    font-size: 24px;
    color: #1f3c88;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 600;
}

/* Container */
.vacs-placement-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    gap: 50px;
  /*  flex-wrap: wrap;*/
}

/* Card */
.vacs-placement-card {
    width: 400px;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    /* Image */
    .vacs-placement-card img {
        width: 100%;
        display: block;
        height: 100%;
    }

    /* Hover Effect */
    .vacs-placement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .vacs-placement-container {
        flex-direction: column;
        align-items: center;
        display:grid;
        gap:50px;
        grid-template-columns:1fr ;
    }

    .vacs-placement-card {
        width: 100%;
    }
}
.google-reviews {
    background: #f4f7fb;
}
.backBtn {
    right: 10px;
}
    /*-----------------------carrer--------------------*/
    /* Section */
    .vacs-ai-placement-section {
    padding: 20px 20px;
    font-family: "Lato", sans-serif;
}

/* Container */
.vacs-ai-container {
    max-width: 1200px;
    margin: auto;
    padding: 0px 0px;
    border-radius: 10px;
}
    .vacs-ai-container .ynx-faq-wrapper {
        width: 100%;
        margin: 30px auto;
        font-family: "Lato", sans-serif;
    }
    /* Title */
    .vacs-ai-title {
        color: #1f3c88;
        font-size: 26px;
        margin-bottom: 10px;
        font-weight: 600;
    }

/* Subtitle */
.vacs-ai-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraph */
.vacs-ai-text {
    font-size: 15px;
    color: #555;
    line-height: 29px;
    margin-bottom: 25px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

/* Heading */
.vacs-ai-heading {
    font-size: 20px;
    color: #1f3c88;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Blocks */
.vacs-ai-block {
    margin-bottom: 20px;
    padding-left: 15px;
   
}

    .vacs-ai-block h4 {
        font-size: 16px;
        color: #423d3d;
        line-height:29px;
        font-family: "Lato", sans-serif;
        margin-bottom: 5px;
    }

    .vacs-ai-block p {
        font-size: 16px;
        color: #423d3d;
        line-height: 29px;
        font-family: "Lato", sans-serif;
    }

/* Responsive */
@media (max-width: 768px) {
    .vacs-ai-container {
        padding: 20px;
    }

    .vacs-ai-title {
        font-size: 22px;
    }
}



/*---------------------------------university-----------------------------*/




/* SECTION */
.uxp-main-section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: url("img/uni-img/1university707a.jpg") center no-repeat;
    background-size: cover; /* 👈 shows full image */
    background-color: #f3f4f6; /* fills empty space */
    background-position: top;
    background-repeat: no-repeat;
    line-height: 29px;
    color: #423d3d;
    letter-spacing: 0.5px;
}
    /* OVERLAY for readability */
    .uxp-main-section::before {
        content: "";
        position: absolute;
        inset: 0;
       
        z-index: 1;
    }

/* INNER LAYOUT */
.uxp-inner {
    width: 92%;
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2; /* ABOVE background */
}
.uxp-content{
    margin-left:20px;
    width:48%;
}

/* LEFT CONTENT */
.uxp-left {
    width: 55%;
}

.uxp-title {
    font-size: 34px;
    font-weight: 600;
    color: #2c4373;
    line-height: 1.3;
    margin-bottom: 25px;
}

.uxp-para {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 95%;
}

/* RIGHT SIDE (now optional / empty) */
.uxp-right {
    width: 45%;
}

/* REMOVE IMAGE DISPLAY */
.uxp-img {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .uxp-inner {
        flex-direction: column;
        margin-left: 0;
        width: 90%;
        margin: auto;
    }

    .uxp-left, .uxp-right {
        width: 100%;
    }

    .uxp-title {
        text-align: center;
    }

    .uxp-para {
        text-align: center;
    }
}


/* MAIN SECTION */
.uxb-section {
    padding: 40px 0;
}

/* LAYOUT */
.uxb-container {
    width: 92%;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT IMAGE */
.uxb-left {
    width: 45%;
}

.uxb-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RIGHT CONTENT */
.uxb-right {
    width: 55%;
}

/* BLOCK SPACING */
.uxb-block {
    margin-bottom: 30px;
}

/* TITLES */
.uxb-title {
    font-size: 28px;
    color: #2c4373;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

    /* UNDERLINE EFFECT */
    .uxb-title::after {
        content: "";
        display: block;
        width: 60%;
        height: 1px;
        background: #d6d6d6;
        margin-top: 8px;
    }

/* LIST */
.uxb-list {
    margin-top: 0px;
    padding-left: 18px;
}

    .uxb-list li {
        font-size: 16px;
        color: #423d3d;
        margin-bottom: 10px;
        line-height: 29px;
        list-style-type: square;
        font-family: "Lato", sans-serif;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .uxb-container {
        flex-direction: column;
    }

    .uxb-left,
    .uxb-right {
        width: 100%;
    }

    .uxb-img {
        max-width: 400px;
        margin: auto;
        display: block;
    }
}

/* Root Section */
.vacs-section {
    font-family: "Lato", sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* Header */
.vacs-header {
    background: #1e1e1e;
    padding: 20px;
    text-align: center;
}

.vacs-title {
    color: #fff;
}

/* Layout */
.vacs-row {
    display: flex;
    gap: 30px;
    padding: 20px 2% 40px 2%;
  
}

.vacs-row-reverse {
    flex-direction: row-reverse;
}

.vacs-col {
    flex: 1;
}

/* Text */
.vacs-heading {
    color: #1a3c6e;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.vacs-text {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 29px;
}

.vacs-text-block {
    animation: vacsFadeUp 0.8s ease;
}

/* Image */
.vacs-image {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
.vacs-footer {
    background: #1e1e1e;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Animation */
/*@keyframes vacsFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Responsive */
@media (max-width: 768px) {
    .vacs-row {
        flex-direction: column;
        padding: 20px;
    }
}

.vacs-info-section {
   
    background: #f7f7f7;
    padding: 40px 8%;
    color: #333;
}

/* Top Row Layout */
.vacs-info-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* Image Block */
.vacs-info-image {
    position: relative;
    flex: 1;
}

    .vacs-info-image img {
        width: 100%;
        border-radius: 4px;
    }

/* Overlay Text on Image */
.vacs-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    max-width: 70%;
    font-size: 14px;
    border-radius: 4px;
}

    .vacs-info-overlay h4 {
        margin-bottom: 5px;
    }

    .vacs-info-overlay strong {
        display: block;
        margin: 5px 0;
    }

/* Right Text */
.vacs-info-text {
    flex: 1.2;
    font-size: 15px;
    line-height: 29px;
    letter-spacing: 0.5px;
}

    .vacs-info-text p {
        margin-bottom: 16px;
        width: 75%;
    }

/* Bottom Section */
.vacs-info-bottom {
    font-size: 16px;
    line-height: 1.7;
}

    .vacs-info-bottom p {
        margin-bottom: 16px;
        line-height:29px;
        letter-spacing:0.5px;
    }

/* Responsive */
@media (max-width: 768px) {
    .vacs-info-row {
        flex-direction: column;
    }

    .vacs-info-overlay {
        position: static;
        background: #fff;
        margin-top: 10px;
    }
}


/*--------------------sap training---------------------*/

.uxp-courses-section {
    width: 84%;
    padding: 50px 8%;
    background: #f3f4f6;
}

/* Title */
.uxp-courses-title {
    font-size: 24px;
    color: #2c4373;
    margin-bottom: 25px;
    border-bottom: 2px solid #5a78c9;
    padding-bottom: 8px;
}

/* Grid */
.uxp-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

/* Course Box */
.uxp-course-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #3c94bf;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

    /* Hover Effect */
    .uxp-course-box:hover {
        background: #233D76;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 992px) {
    .uxp-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .uxp-courses-grid {
        grid-template-columns: 1fr;
    }
}







/*---------------------------sales-distribution-------------*/
/* Layout container */
.unique-container {
    display: grid;
    grid-template-columns: 15% 67% 15%;
    padding: 10px;
}
/* Left Menu */

.unique-left-menu {
    width: 100%;
    background-color: #6da5dc;
    color: white;
    border-right: 2px solid #ccc;
    font-size: 14px;
    height: auto;
    align-self: self-start;
}

.unique-left-menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .unique-left-menu-list li {
        padding: 12px 10px;
        cursor: pointer;
        border-bottom: 1px solid #4a7ab9;
        transition: background 0.3s ease;
    }

/* Link */
.unique-left-menu-link {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

/* Hover */
.unique-left-menu-list li:hover {
    background-color: #4a7ab9;
}

/* ACTIVE STATE */
.unique-left-menu-list li.unique-active {
    background-color: #4a7ab9;
    font-weight: bold;
}


/* normal menu item */
.unique-left-menu-list li {
    padding: 12px 10px;
    border-bottom: 1px solid #4a7ab9;
    transition: background 0.3s ease;
}

/* link style */
.unique-left-menu-link {
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* hover */
.unique-left-menu-list li:hover {
    background-color: #4a7ab9;
}

/* ACTIVE PAGE (highlight current page) */
.unique-left-menu-list li.unique-active {
    background-color: #1f4f86; /* darker different color */
    font-weight: bold;
}
/* Main content */
.unique-main-content {
    flex-grow: 1;
    padding: 10px;
    max-width: 1275px;
}

/* Brief Section */
.unique-brief h1 {
    border-left: 3px solid #6da5dc;
    padding-left: 15px;
    margin-bottom: 40px;
}

    .unique-brief h1 {
        font-weight: 900;
        color: #10345b;
        margin-bottom: 20px;
    }

.unique-brief-image {
  /*  background: #d6d8da;
    height:300px;*/
    margin-bottom: 20px;
  
   /* background-image: url('img/sales-distribution-img/sales-distribution-img1.jpg');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.unique-brief-text {
    font-size: 16px;
    line-height: 29px;
    max-width: 100%;
    color: #423d3d;
}

/* Course Content Section */
.unique-course-content h2 {
    border-left: 3px solid #6da5dc;
    padding-left: 15px;
    font-size:26px;
    font-weight:600;
    line-height:34px;
    margin-bottom:0px;

}


    .unique-course-content h3 {
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 40px;
        color: #10345b;
        height: 100%;
        line-height:52px;
    }

.unique-course-item {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

.unique-toggle-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid #10345b;
    border-radius: 3px;
    color: #10345b;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 10px;
    user-select: none;
}

.unique-course-title {
    font-weight: 600;
    color: #213b74;
    margin-top: 2px;
    font-size: 18px;
    line-height: 23px;
}

.unique-course-text {
    margin-left: 32px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    display: none;
}
    .unique-course-text li{
        font-size:16px;
        font-weight:400;
        line-height:29px;
    }
    .unique-course-text p{
        font-size:16px;
        font-weight:400;
        line-height:29px;
    }
    .unique-brief img{
        width:100%;
    }
    /* Right Enquiry Form */
    .unique-right-enquiry {
        width: 100%;
        background-color: #0275d8;
        padding: 25px 20px;
        color: white;
        font-size: 14px;
        height: auto;
        align-self:self-start;
    }

.unique-enquiry-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}
.unique-enquiry-input {
    width: 93%;
    padding: 10px 8px;
    margin-bottom: 15px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

    .unique-enquiry-input::placeholder {
        color: #bcd6fb;
    }

.unique-enquiry-textarea {
    width: 93%;
    height: 80px;
    padding: 10px 8px;
    border: none;
    border-radius: 3px;
    resize: none;
    font-size: 14px;
    margin-bottom: 15px;
}

.unique-send-btn {
    background-color: #014f9c;
    border: none;
    color: white;
    padding: 10px 0;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

    .unique-send-btn:hover {
        background-color: #003470;
    }



.ynx-heading {
    font-size: 26px;
    color: #1f3c88;
    margin: 40px 0px 0px 0px;
    border-left: 3px solid #6da5dc;
    padding-left: 15px;
}
.ynx-wrapper p {
    font-size: 16px;
    line-height: 29px;
    color: #423d3d;

}
.ynx-wrapper li {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    font-family: "Lato", sans-serif;
}

/* Accordion */
.ynx-item {
    margin-bottom: 10px;
}

.ynx-btn {
    width: 100%;
    text-align: left;
    padding: 15px;
    border: none;
    background: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    .ynx-btn:hover {
        background: #1f3c88;
        color: white;
    }

.ynx-content {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 0 15px;
    border-radius: 10px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active */
.ynx-item.active .ynx-content {
    max-height: 200px;
    padding: 15px;
}

/* List */
.ynx-list {
    background: white;
    padding: 0px 20px 0px 20px;
    border-radius: 10px;
    color: #423d3d;
}

    .ynx-list li {
        margin: 10px 0;
        font-size:16px;

        line-height:29px;
        font-weight:400;

    }

.unique-brief p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    Color: #423d3d;
}
/* Certification Box */
.ynx-cert-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
}
    .ynx-cert-box p {
        font-size: 16px;
        line-height: 29px;
        font-weight: 400;
        Color: #423d3d;
    }
    .ynx-cert-box ul {
        padding: 0px;
        margin: 0px;
    }
    .ynx-cert-box li {
        font-size: 16px;
        line-height: 29px;
        font-weight: 400;
        Color: #423d3d;
    }

    .ynx-cert-box h3 {
        color: #1f3c88;
        line-height: 30px;
    }

/* Section Styling */
.sap-vacs-section {
    background-color: #012940;
    /* padding: 60px 8%;*/
  
}

.sap-vacs-title h2{
    color:white;
}
/* Container */
.sap-vacs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

/* Left Image */
.sap-vacs-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.sap-vacs-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Right Content */
.sap-vacs-content-wrapper {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

/* Title */
.sap-vacs-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color:white;
}

/* Underline */
.sap-vacs-underline {
    width: 80px;
    height: 3px;
    background-color: #2bb6d6;
    margin: 15px 0 20px 0;
}

/* Description */
.sap-vacs-description {
    font-size: 16px;
    line-height: 1.8;
    color: #d6e7ec;
    margin-bottom: 15px;
}

/* Vertical Divider for Desktop */
.sap-vacs-content-wrapper {
    position: relative;
    padding-left: 40px;
}

    .sap-vacs-content-wrapper::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .sap-vacs-container {
        flex-direction: column;
        text-align: center;
    }

    .sap-vacs-content-wrapper {
        padding-left: 0;
    }

        .sap-vacs-content-wrapper::before {
            display: none;
        }

    .sap-vacs-underline {
        margin: 15px auto 20px;
    }

    .sap-vacs-title {
        font-size: 24px;
    }
}

/* Header Section */
.vacswf-header-section {
    background: linear-gradient(90deg, #1ea4c6, #138fb1);
    text-align: center;
    padding: 18px 10px;
}

.vacswf-header-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Main Section */
.vacswf-main-section {
    background-color: #e9eef2;
    padding: 40px 8%;
}

/* Container */
.vacswf-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image Wrapper */
.vacswf-image-wrapper {
    flex: 1;
    min-width: 320px;
}

.vacswf-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 2px solid #c7cdd3;
}

/* Content Wrapper */
.vacswf-content-wrapper {
    flex: 1;
    min-width: 320px;
    padding-left: 20px;
}

/* Title */
.vacswf-content-title {
    font-size: 30px;
    color: #2c4a7a;
    font-weight: 700;
}

/* Underline */
.vacswf-title-underline {
    width: 90px;
    height: 3px;
    background-color: #2c4a7a;
    margin: 10px 0 20px;
}

/* Paragraph Text */
.vacswf-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

/* List Styling */
.vacswf-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

    .vacswf-list li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
    }

        .vacswf-list li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: #2c4a7a;
            font-weight: bold;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .vacswf-container {
        flex-direction: column;
    }

    .vacswf-image {
        border-right: none;
        border-bottom: 2px solid #c7cdd3;
    }

    .vacswf-content-wrapper {
        padding-left: 0;
        padding-top: 20px;
    }

    .vacswf-header-title {
        font-size: 22px;
    }

    .vacswf-content-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .vacswf-main-section {
        padding: 30px 5%;
    }

    .vacswf-content-text,
    .vacswf-list li {
        font-size: 14px;
    }
}


/* Unique SAP Technologies Section */
.vacs-tech-section-x91 {
    background-color: #f2f4f7;
    padding: 70px 0%;
    font-family: "Lato", sans-serif;
}

/* Container */
.vacs-tech-container-x91 {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

/* Top Heading */
.vacs-tech-heading-x91 {
    font-size: 22px;
    color: #2a4b7c;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Grid Layout */
.vacs-tech-grid-x91 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Technology Cards */
.vacs-tech-card-x91 {
    background-color: #0b3d4f;
    color: #6bd0e6;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

    /* Hover Effect */
    .vacs-tech-card-x91:hover {
        background-color: #0f4f66;
        color: #ffffff;
        transform: translateY(-5px);
    }

/* Bottom Paragraph */
.vacs-tech-footer-x91 {
    font-size: 22px;
    color: #2a4b7c;
    font-weight: 600;
    line-height: 1.7;
    max-width: 1500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vacs-tech-grid-x91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vacs-tech-grid-x91 {
        grid-template-columns: 1fr;
    }

    .vacs-tech-heading-x91 {
        font-size: 18px;
    }

    .vacs-tech-footer-x91 {
        font-size: 18px;
    }

    .vacs-tech-section-x91 {
        padding: 50px 5%;
    }
}






/*------------------SAP CERTIFICATION----------------------*/

/* Section Styling */
.vacs-certification-section-u91 {
    background-color: #f4f6f9;
    padding: 60px 1%;
   
}

/* Container */
.vacs-certification-container-u91 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Image */
.vacs-certification-image-wrapper-u91 {
    flex: 1;
}

.vacs-certification-image-u91 {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Right Content */
.vacs-certification-content-u91 {
    flex: 1;
}

/* Title */
.vacs-certification-title-u91 {
    font-size: 28px;
    font-weight: 600;
    color: #2a4b7c;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Paragraph Text */
.vacs-certification-text-u91 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Highlight Text */
.vacs-certification-highlight-u91 {
    font-size: 18px;
    font-weight: 600;
    color: #2a4b7c;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vacs-certification-container-u91 {
        flex-direction: column;
        text-align: center;
    }

    .vacs-certification-title-u91 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .vacs-certification-section-u91 {
        padding: 40px 5%;
    }

    .vacs-certification-title-u91 {
        font-size: 20px;
    }

    .vacs-certification-text-u91 {
        font-size: 15px;
    }

    .vacs-certification-highlight-u91 {
        font-size: 16px;
    }
}
.vacs-certification-content-u91 li {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #423d3d;
}


/*
--------------Why Sap----------------*/
/* Section Styling */
.vacs-why-sap-section-z91 {
    background-color: #f5f7fa;
    padding: 60px 8%;
    font-family: "Lato", sans-serif;
}

/* Container */
.vacs-why-sap-container-z91 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Left Image */
.vacs-why-sap-image-wrapper-z91 {
    flex: 1;
}

.vacs-why-sap-image-z91 {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Right Content */
.vacs-why-sap-content-wrapper-z91 {
    flex: 1.2;
}

/* Title */
.vacs-why-sap-title-z91 {
    font-size: 32px;
    color: #2a4b7c;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph Text */
.vacs-why-sap-text-z91 {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

/* Numbered List */
.vacs-why-sap-list-z91 {
    margin-top: 10px;
    padding-left: 20px;
}

    .vacs-why-sap-list-z91 li {
        font-size: 16px;
        color: #2a4b7c;
        margin-bottom: 10px;
        font-weight: 500;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .vacs-why-sap-container-z91 {
        flex-direction: column;
    }

    .vacs-why-sap-title-z91 {
        font-size: 26px;
        text-align: center;
    }

    .vacs-why-sap-text-z91 {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .vacs-why-sap-section-z91 {
        padding: 40px 5%;
    }

    .vacs-why-sap-title-z91 {
        font-size: 22px;
    }

    .vacs-why-sap-text-z91,
    .vacs-why-sap-list-z91 li {
        font-size: 14px;
    }
}

/* Wrapper */
.sapx-container {
    font-family: "Lato", sans-serif;
    margin: 20px;
    color: #333;
}
.sapx-industries-box img{
    width:100%;
}
/* Top Box */
.sapx-industries-box {
    padding: 30px 150px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.sapx-industries-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.sapx-industries-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
    font-size: 14px;
}

    .sapx-industries-list div::before {
        content: "□ ";
    }

/* Content Section */
.sapx-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Left Text */
.sapx-left {
    width: 65%;
}

.sapx-heading {
    color: rgb(33, 59, 116);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height:34px;
}

.sapx-text {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 15px;
    color: rgb(66, 61, 61);
    font-weight:400;
}

/* Right Stats */
.sapx-right {
    width: 50%;
    text-align: left;
}
.sapx-right img{
    width:100%;
}

.sapx-stats-title {
    font-weight: bold;
    margin-bottom: 20px;
}

.sapx-stats-line {
    border-left: 2px dotted #2c6e8f;
    padding-left: 15px;
}

.sapx-stat {
    margin-bottom: 15px;
    font-size: 14px;
}

    .sapx-stat strong {
        color: #1a4d7a;
    }







/* Wrapper */
.vx-blog-wrapper {
 max-width:1170px;
   margin:auto;
    font-family: "Lato", sans-serif;
    color: #222;

}

/* Title */
.vx-blog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #213B74;
    line-height: 42px;
    margin-top: 100px;
}

/* Featured Image */
.vx-blog-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Paragraph */
.vx-blog-text {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 0px;
    color: #444;
    font-weight: 400;
    margin-top: 0px;
    margin-left:20px;
    margin-top:10px;
}
.vx-blog-text li{
    margin-bottom:8px;
}
/* Section Headings */
.vx-blog-heading {
    font-size: 26px;
    font-weight: 700;
    margin: 25px 0 10px;
    color: rgb(33, 59, 116);
    line-height: 34px;
}

/* List */
.vx-blog-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

    .vx-blog-list li {
        margin-bottom: 8px;
        font-size: 14px;
    }

/* Meta Info */
.vx-blog-meta {
    font-size: 13px;
    color: #777;
    margin-top: 25px;
}

/* Comment Section */
.vx-comment-section {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.vx-comment-title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Form */
.vx-form-group {
    margin-bottom: 35px;
}

.vx-input,
.vx-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.vx-textarea {
    height: 120px;
    resize: none;
}

/* Button */
.vx-submit-btn {
    padding: 10px 18px;
    background: #1a3d7c;
    color: #fff;
    border: none;
    cursor: pointer;
    width:15%;
}

    .vx-submit-btn:hover {
        background: #2a5bd7;
    }

/* Responsive */
@media (max-width: 768px) {
    .vx-blog-wrapper {
        width: 90%;
    }
}

.vx-blog-list b {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: rgb(66, 61, 61);
    line-height:29px;
    font-size:16px;
}
.vx-comment-save {
    margin: 10px 0 20px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
}

    .vx-comment-save label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

.vx-checkbox {
    width: 14px;
    height: 14px;
    accent-color: #1a3d7c;
}

/* Main container */
.sap-post-container {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Left & Right Boxes */
.sap-prev-box,
.sap-next-box {
    width: 48%;
}

/* Align next post content to right */
.sap-next-box {
    text-align: left;
}

/* Links */
.sap-previous-link,
.sap-next-link {
    text-decoration: none;
    color: rgb(50, 160, 219);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

    /* Hover */
    .sap-previous-link:hover,
    .sap-next-link:hover {
        color: #0d5ea8;
    }

/* Arrow */
.sap-arrow {
    font-size: 18px;
}

/* Post Heading */
.sap-post-heading {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* Existing links */
.vx-blog-text a,
.vx-blog-meta a {
    text-decoration: none;
    color: #32A0E2;
}

/* Responsive */
@media (max-width: 768px) {
    .sap-post-container {
        flex-direction: column;
    }

    .sap-prev-box,
    .sap-next-box {
        width: 100%;
        text-align: left;
    }
}

/* ================= BACK TO TOP ================= */

/* Back to Top Button Styles */
.back-to-top {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 16px;
    border: none;
    border-radius: 50%;
    background-color: #FF3C4D;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: none; /* hidden initially */
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.5s ease-in-out, background-color 0.3s;
    z-index: 9999;
}

#backBtn {
    display: none !important; /* FORCE hidden initially */
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
}

    #backBtn.show {
        display: flex !important;
    }

.back-to-top:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
    background-color: #843B94;
    color: #E77626;
}

@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0,0,0,0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0,0,0,0.6);
    }
}

.back-to-top {
    display: block;
}


.btn-group {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

    .btn-group .btn:hover {
        color: white;
    }

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

    /* Hover effect */
    .btn:hover {
        background: linear-gradient(135deg, #0d47a1, #1e88e5);
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    }

    /* Active click effect */
    .btn:active {
        transform: scale(0.96);
    }


/* Button */
.ux-enquiry-tab-btn {
    position: fixed;
    right: 0;
    top: 20%;
    background: black;
    color: white;
    padding: 10px;
    cursor: pointer;
    writing-mode: vertical-rl;
    z-index: 1000;
}

/* Overlay */
.ux-enquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}

/* Form box */
.ux-enquiry-box {
    position: fixed;
    top: 40%;
    right: -350px;
    transform: translateY(-50%);
    width: 300px;
    background: black;
    color: white;
    padding: 20px;
    transition: 0.3s;
    z-index: 1001;
}

    .ux-enquiry-box.active {
        right: 40px;
    }

.ux-enquiry-overlay.active {
    display: block;
}

.ux-input-field {
    width: 93%;
    margin: 8px 0;
    padding: 8px;
}

.ux-submit-btn {
    width: 100%;
    padding: 10px;
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
}

.ux-close {
    float: right;
    cursor: pointer;
    font-size: 18px;
}

/* Question row */
.ynx-faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

/* Answer hidden by default */
.ynx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
    padding: 0 15px;
}

/* Active state */
.ynx-faq-item.active .ynx-faq-answer {
    max-height: 500px;
    padding: 15px;
}

/* Rotate icon */
.ynx-faq-icon {
    transition: transform 0.3s ease;
}

.ynx-faq-item.active .ynx-faq-icon {
    transform: rotate(90deg);
}