:root {
    --primary-color: #18366c;
    --secondary-color: #e20612;
    --green-color: #4CAF50;
    --background-color: #fff;
    --text-color: #333;
    --font-family: "Montserrat", sans-serif;
    --Bebas: "Bebas Neue", sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --text-dark: #333;
    --text-light: #fff;
    --border-radius: 5px;

    /* Colors from the screenshot */
    --clr-1: #4e54c8;
    /* Class A - Blue/Purple */
    --clr-2: #67a1b5;
    /* Class B - Teal */
    --clr-3: #ff9f43;
    /* Class B to A - Orange */
    --clr-4: #a55eea;
    /* Endorsements - Pink/Purple */
}

/* HEADER */
.header {
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* TOP BAR */
.top-bar {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
}

.top-left span {
    margin-right: 20px;
}

.top-right i {
    margin-left: 10px;
    cursor: pointer;
}

/* NAVBAR */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo a img {
    width: 80px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    font-size: 20px;
}

.menu a:hover {
    color: var(--secondary-color);
}

.appointment-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    text-decoration: none;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 1000;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible;
}




.hero {
    background-image: linear-gradient(270deg, #18366cb8, #18366cb8), url("../images/banner.png");
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    /* min-height: 500px; */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LEFT CONTENT */
.hero-content h1 {
    font-family: var(--bebas-font);
    font-size: 50px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}

.tagline {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.highlight {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.small-text {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: var(--background-color);
    color: var(--primary-color);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.outline-btn {
    border: 2px solid #ccc;
    color: var(--text-light);
}

.outline-btn:hover {
    background: #e20612;
    color: #fff;
}

/* IMAGE SIDE */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* BADGE */
.badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: var(--card-bg);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge .icon {
    background: #f5b400;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
}

.badge-text strong {
    font-size: 20px;
    display: block;
}

.badge-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* RESPONSIVE */













.course-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
    font-family: var(--font-family);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
    /* Cards touch each other in the screenshot */
}

.course-card {
    background: #fff;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 0px 0px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.crsImg {
    width: 100%;
    height: 175px;
}

.crsImg img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

/* Add a subtle shadow to make them pop like the image */
.course-card:hover {
    z-index: 10;
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.course-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 20px 0;
    padding: 0 20px;
}

.course-subtitle {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    min-height: 40px;
    padding: 0 20px;
}

/* The Price "Pill" Style */
.course-price {
    display: inline-block;
    margin: 0 auto 20px auto;
    border-radius: 50px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* Assigning Colors to Cards */
.course-card:nth-child(1) .course-price {
    color: var(--primary-color);
}

.course-card:nth-child(2) .course-price {
    color: var(--primary-color);
}

.course-card:nth-child(3) .course-price {
    color: var(--primary-color);
}

.course-card:nth-child(4) .course-price {
    color: var(--primary-color);
}

.course-card:nth-child(5) .course-price {
    color: var(--primary-color);
}

/* Feature List Styling */
.course-card ul {
    list-style: none;
    padding: 0 20px;
    margin: 0 0 30px 0;
    text-align: left;
}

.course-card ul li {
    padding: 12px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

/* Adding the checkmark icon via CSS if FontAwesome isn't used */
.course-card ul li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
}

/* Color coding the checkmarks to match the card theme */
.course-card:nth-child(1) li::before {
    color: var(--primary-color);
}

.course-card:nth-child(2) li::before {
    color: var(--primary-color);
}

.course-card:nth-child(3) li::before {
    color: var(--primary-color);
}

.course-card:nth-child(4) li::before {
    color: var(--primary-color);
}

.course-card:nth-child(5) li::before {
    color: var(--primary-color);
}

.course-card ul li:nth-child(even) {
    background-color: #fcfcfc;
}

/* Button Styling */
.btn-select {
    margin: auto 20px 20px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
}

.btn-select:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 20px;
    }

    .course-card {
        max-width: 100%;
        border-radius: var(--border-radius);
    }
}






.faq-clean {
    padding: 100px 0;
    background: #18366c;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

.faq-header p {
    color: var(--text-light);
    margin-top: 10px;
}

/* GRID */

.faq-image-wrapper {
    position: relative;
    flex: 1;
    padding: 20px;
}

.blue-border-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background-color: #fff;
    /* The bright blue from your image */
    z-index: 1;
}

.faq-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 4px;
    display: block;
    margin-top: 40px;
    margin-left: 40px;
}

.faq-wrapper {
    max-width: 100%;
    margin: auto;
}

/* CARD */

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.faq-item:hover {
    transform: translateY(-5px);
}

/* QUESTION */

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
}

.faq-question .arrow {
    margin-left: auto;
    transition: 0.3s;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* RESPONSIVE */

@media(max-width:768px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
}








.video-gallery {
    padding: 80px 20px;
    background-color: #f5f7fa;

}

.video-gallery .title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 25px;
    margin: 0 auto;
}

.video-card {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    /* Keeps standard video shape */
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Darkens image like your screenshot */
    transition: var(--transition);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: #18366c91;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.watch-btn {
    background-color: var(--primary-color);
    /* The orange from your screenshot */
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #fff;
}

.video-card:hover .watch-btn {
    background-color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}






.review-section {
    background: #fff;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    margin-top: 10px;
}

.review-slider-wrapper {
    position: relative;
}

.review-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 25px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* Reviewer */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Stars */
.review-stars {
    color: #f5b50a;
    margin-bottom: 10px;
}

/* Text */
.review-text {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.review-text .more {
    display: none;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: none;
    box-shadow: var(--shadow-soft);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}


@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 100%;
    }
}






.blog-section {
    padding: 100px 20px;
    background-color: #f5f7fa;
    font-family: var(--font-family);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--bebas-font);
    font-size: 3rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}









.footer {
    /* background: #0b0f1a; */
    background: #18366c;
    color: #ccc;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* LOGO */

.footer-logo {
    font-family: var(--Bebas);
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 80px;
    filter: brightness(0) invert(1);
}

/* TEXT */

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* HEADINGS */

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

/* LINKS */

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

/* SOCIAL */

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}


.social-links a:hover {
    background: var(--text-light);
}

/* CONTACT ICONS */

.footer-col i {
    margin-right: 8px;
    color: var(--text-light);
}

.social-links a i {
    margin-right: 0;
}

/* NEWSLETTER */

.newsletter {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background: var(--secondary-color);
    border: none;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.newsletter button:hover {
    background: var(--primary-color);
}

/* BOTTOM */

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:768px) {
    .footer {
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter button {
        border-radius: 4px;
    }
}







/* about Us page */
.about-hero-premium {
    position: relative;
    background: linear-gradient(120deg, #014599, #002b66);
    color: #fff;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #e20612;
    top: -50px;
    left: -50px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #fff;
    bottom: -80px;
    right: -80px;
}

/* aboutUs start */
.aboutUs {
    padding: 80px 0;
}

.aboutUs .container {
    gap: 4%;
    row-gap: 20px;
}

.aboutUs .left {
    width: 47%;
    height: 400px;
}

.aboutUs .left .img1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 20px #ddd;
}

.aboutUs .left .img1:after,
.aboutUs .left .img3:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.aboutUs .left .img1:hover:after,
.aboutUs .left .img3:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.aboutUs .left .img1 img {
    border-radius: 20px;

}

.aboutUs .left .img2 {
    position: absolute;
    width: 15%;
    top: 10%;
    left: 70%;
}

.aboutUs .left .img3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
}

.aboutUs .left .img3 img {
    border: 5px solid var(--white);
    border-radius: 20px;
    box-shadow: 10px 10px 20px #ddd;
}

.aboutUs .right {
    width: 47%;
}

.aboutUs .right ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}

.aboutUs .right ul li {
    font-size: 14px;
    font-weight: 600;
    color: var(--darkgreen);
    width: 50%;
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.aboutUs .right ul li i {
    color: var(--primary);
    font-size: 16px;
}

.aboutUs .right ul li span {}

.rajdhani {}

.title {
    font-size: 40px;
    font-weight: 700;
    color: var(--darkgreen);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subtitle img {
    width: 10px;
}

.subtitleCenter {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subtitleCenter img {
    width: 10px;
}

.description {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 22px;
}



.abtSteps {
    background: #f5f7fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section.abtSteps {
    padding: 50px 0;
    margin: 0 auto;
    text-align: center;
}

.abtSteps h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.abtSteps .subtitle {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    text-align: center;
    justify-content: center;
}

.abtSteps .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.abtSteps .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-radius: 18px;
    padding: 2.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(.2, .9, .2, 1);
    text-align: left;
}

.abtSteps .card.show {
    transform: translateY(0);
    opacity: 1;
}

.abtSteps .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.abtSteps .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* SVG icon container */
.abtSteps .icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.15);
    transition: transform .35s ease;
}

/* svg icons use currentColor for fill/stroke; set color for gradient look */
.abtSteps .icon-wrap svg {
    width: 38px;
    height: 38px;
    display: block;
    color: var(--primary-color);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

/* icon bounce-in when card becomes visible */
.abtSteps .card.show .icon-wrap svg {
    animation: bounceIn 900ms cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(.6)
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.08)
    }

    100% {
        transform: translateY(0) scale(1)
    }
}

.abtSteps .step-label {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: .08em;
    font-size: .95rem;
}

.abtSteps .card h3 {
    font-size: 1.25rem;
    margin: 0.4rem 0;
    color: var(--text-dark);
}

.abtSteps .card p {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.abtSteps .learn {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    margin-right: 14px;
    transition: color .2s ease, transform .15s ease;
}

.abtSteps .learn:hover {
    color: #fff;
    transform: translateX(6px)
}

.abtSteps .btn {
    display: inline-block !important;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    padding: .7rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.22);
    transition: transform .18s ease, box-shadow .18s ease;
    margin-top: 15px;
}

.abtSteps .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.32)
}

/* small screens layout */
@media (max-width:650px) {
    .abtSteps .card {
        text-align: center
    }

    .abtSteps .card-header {
        justify-content: center
    }

    .abtSteps .icon-wrap {
        margin-bottom: .6rem
    }
}

/* aboutUs end */