/* ================= BASE ================= */

body {
    font-family: Arial, sans-serif;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: #ffffff;
    color: #fff;
    padding: 6px 0;
    font-size: 14px;
}

/* ================= NAVBAR ================= */

.main-navbar {
    background: #ffffff;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 18px !important;
}

.navbar-nav .nav-link:hover {
    color: #ea1e23;
}

/* ================= ENROLL BUTTON ================= */

.enroll-btn {
    /* background: #0d6efd; */
    background: linear-gradient(90deg, #ea1e23, #ea1e23);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.enroll-btn:hover {
    background: #084ec1;
}

/* ================= DROPDOWN STYLE ================= */

.dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

/* ================= DESKTOP HOVER + SLIDE ================= */

@media(min-width:992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.35s ease;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* ================= NAV LINK HOVER ANIMATION ================= */

.navbar-nav .nav-link {
    position: relative;
    color: #000000;
    transition: all 0.3s ease;
}

/* Underline Effect */
/* .navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#0d6efd;
    transition:0.3s ease;
    transform:translateX(-50%);
} */

/* .navbar-nav .nav-link:hover::after{
    width:70%;
} */


/* ================= DROPDOWN ANIMATION ================= */

/* Desktop Hover Effect */
@media (min-width:992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.35s ease;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* Mobile Click Animation */
.dropdown-menu {
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ================= DROPDOWN ITEM HOVER ================= */

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #000000;
    color: #fff;
    padding-left: 20px;
}


/* ================= MOBILE FRIENDLY ================= */

@media(max-width:991px) {

    .main-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #cfcfcf;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        margin-left: 15px;
    }

    .enroll-btn {
        width: 100%;
        margin-top: 10px;
    }

}

/* ================= BANNER ================= */

.banner {
    /* background: linear-gradient(45deg, black, transparent), url(/assets/images/banner-final.jpg); */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.banner h1 {
    font-size: 45px;
}

.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-width: 900px;
    margin: auto;
    margin-top: 30px;
}

.search-btn {
    background: #c40000;
    color: #fff;
    border: none;
}

.search-btn:hover {
    background: #000;
}


/* ================= CATEGORIES SECTION ================= */

.categories-section {
    padding: 35px 0;
    background: #fff;
}

/* Heading */

.categories-title {
    text-align: center;
    margin-bottom: 50px;
}

.categories-title h2 {
    font-weight: 700;
    color: #1f2937;
}

.categories-title .line {
    width: 60px;
    height: 3px;
    background: #ea1f24;
    margin: 10px auto;
    position: relative;
}

.categories-title .line::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #ea1f24;
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%) rotate(45deg);
}

.categories-title p {
    color: #6b7280;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Cards */

.category-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ea1f24;
}

/* Icon */

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef2ff;
    color: #ea1f24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.category-card:hover .category-icon {
    background: #ea1f24;
    color: #fff;
}

/* Text */

.category-card h5 {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 17px;
    color: #111827;
}

/* WHY CHOOSE SECTION */

.why-choose {
    background: #fff;
}

/* Highlight underline */
.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 4px;
    background: #f59e0b;
    border-radius: 5px;
}

/* Image Area */

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

/* Images */

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
}

/* Position Images */

.img1 {
    top: 0;
    left: 0;
    width: 65%;
    z-index: 2;
}

.img2 {
    bottom: 0;
    left: 20%;
    width: 65%;
    z-index: 3;
}

.img3 {
    right: 0;
    top: 20%;
    width: 55%;
    z-index: 1;
}

/* Shapes */

.shape {
    position: absolute;
    border-radius: 15px;
    z-index: 0;
}

.shape.yellow {
    width: 90px;
    height: 90px;
    background: #fbbf24;
    left: -20px;
    top: 40%;
}

.shape.blue {
    width: 110px;
    height: 110px;
    background: #2563eb;
    right: -20px;
    top: 10%;
}

/* Responsive */

@media(max-width:768px) {

    .image-wrapper {
        height: 350px;
    }

    .image-wrapper img {
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }

    .shape {
        display: none;
    }
}


/* ================= SECTION ================= */

.courses-section {
    padding: 25px 0;
}


/* Title */

.section-title h2 {
    font-weight: 700;
}

.section-title p {
    color: #6b7280;
}


/* ================= CARD ================= */

.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* ================= TOP ================= */

.course-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    position: relative;
}


/* Backgrounds */

.bg-purple {
    background: linear-gradient(45deg, #7c3aed, #c026d3);
}

.bg-blue {
    background: linear-gradient(45deg, #2563eb, #06b6d4);
}

.bg-orange {
    background: linear-gradient(45deg, #f97316, #facc15);
}


/* ================= BADGE ================= */

.badge {
    position: absolute;
    top: 12px;
    left: -35px;
    padding: 6px 40px;
    font-size: 12px;
    transform: rotate(-45deg);
    color: #fff;
    font-weight: 500;
}

.free {
    background: #22c55e;
}

.pro {
    background: #3b82f6;
}

.sale {
    background: #ef4444;
}


/* ================= BODY ================= */

.course-body {
    padding: 10px;
}

.course-body h5 {
    font-weight: 600;
    margin-bottom: 10px;
}


/* Meta */

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.meta i {
    color: #6366f1;
}


/* Description */

.course-body p {
    font-size: 14px;
    color: #6b7280;
}


/* Info */

.info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    font-size: 13px;
    margin: 15px 0;
}


/* ================= BUTTON ================= */

.btn-course {
    display: block;
    text-align: center;
    background: #ec4899;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-course:hover {
    background: #be185d;
    color: #fff;
}


/* ================= MOBILE ================= */

@media(max-width:768px) {

    .course-img {
        height: 150px;
        font-size: 45px;
    }

}

.footer-section {
    background: #0d1b2a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0dcaf0;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #cfd8dc;
}

.footer-para {
    font-size: 14px;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    margin-right: 12px;
    display: inline-block;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0dcaf0;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #adb5bd;
}

/* Animated Heading */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e92124, #e92124);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s infinite linear;
}

@keyframes gradientMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* Glass Card */
.course-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.course-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Zoom */
.course-card img {
    height: 200px;
    object-fit: cover;
    transition: 0.6s ease;
}

.course-card:hover img {
    transform: scale(1.1);
}

/* Badge */
.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 50px;
}

/* Button Glow */
.enroll-btn {
    border-radius: 50px;
    transition: 0.4s;
}

.enroll-btn:hover {
    background: linear-gradient(90deg, #0d6efd, #ec4899);
    border: none;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

/* Custom Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #ea1e23;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

/* Smooth Slide Animation */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* mail section */
.hero-section {
    position: relative;
    background: url(../images/bg-1.jpg) center / cover no-repeat;
    /* min-height: 60vh; */
    display: flex;
    padding: 50px 0px;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* FORM CARD */
.form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-control {
    border-radius: 50px;
    height: 45px;
   
}

.btn-custom {
    background: linear-gradient(90deg, #ea1f24, #ea1f24);
    border: none;
    border-radius: 50px;
    padding: 12px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #e43d40;
    transform: scale(1.03);
}

/* RIGHT TEXT */
.hero-text {
    color: #fff;
    animation: slideIn 1.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE */
@media(max-width:991px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }

    .hero-text {
        margin-top: 30px;
    }
}

.choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #184a7e, #184a7e);
    position: relative;
    overflow: hidden;
}

/* Abstract Gradient BG Shapes */

.choose-us-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #fff3, #ffffff10);
    top: -80px;
    left: -80px;
    border-radius: 50%;
    filter: blur(60px);
}

.choose-us-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #ffffff20, #ffffff05);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(70px);
}

/* TITLE */

.section-title-1 h2 {
    color: #fff;
    font-weight: 700;
}

.section-title-1 p {
    color: #f1f1f1;
}

/* CARD DESIGN */

.choose-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #fff;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #184a7eb5, #184a7ebd);
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.choose-card:hover::before {
    opacity: 0.25;
}

.choose-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ICON */

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #184a7e, #184a7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.choose-card:hover .choose-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px #fff;
}


.feature-section {
    padding: 40px 0;
    background: #ffd0ec1c;
    position: relative;
    overflow: hidden;
}

/* =======================
TECH BG SHAPES
======================= */

.tech-shape {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
}

.html {
    top: 9px;
    left: 80px;
    font-size: 90px;
    color: #ad56c1;
}


.python {
    bottom: 198px;
    right: 174px;
    font-size: 100px;
    color: #ad56c1;
}

.react {
    top: 200px;
    right: 40px;
    font-size: 90px;
    color: #ad56c1;
}

.code {
    bottom: 107px;
    left: 145px;
    font-size: 80px;
    color: #ad56c1;
}

/* =======================
CARD
======================= */

/* =======================
CARD
======================= */

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    position: relative;
    z-index: 1;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #ea1f24;
    transition: all 0.35s ease;
}

/* HOVER EFFECT */

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ICON */

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ea1f24, #ea1f24);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.35s ease;
}

/* ICON HOVER */

.feature-card:hover .feature-icon {
    transform: translateY(-3px);
}


.section-title-2 h2 {
    color: #fff;
    font-weight: 700;
}

.section-title-2 p {
    color: #e9d5ff;
}


.width-190 {
    width: 220px;
}

/* BANNER */
.about-banner {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1581090700227-1e37b190418e') center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* NAV PILLS */
.nav-pills .nav-link {
    color: #000;
    border-radius: 30px;
    margin-right: 10px;
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background: #ea1e23;
    color: #fff;
}

/* IMAGE HOVER */
.about-tab-img {
    transition: 0.4s;
}

.about-tab-img:hover {
    transform: scale(1.05);
}

/* FIX TAB MOVEMENT */
.about-tab-box {
    min-height: 240px;
    position: relative;
}

/* REMOVE BOOTSTRAP JUMP */
.tab-content>.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.3s ease;
}

.tab-content>.active {
    position: relative;
    opacity: 1;
}

/* SECTION */
.founder-section {
    background: #f9f9f9;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}



/* WHITE CARD */
.founder-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 6px solid #e60023;
}

/* QUOTE */
.quote {
    font-size: 50px;
    color: #e60023;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* TEXT DESIGN LINE */
.design-line {
    width: 60px;
    height: 3px;
    background: #e60023;
    margin-bottom: 15px;
}

/* FOUNDER BOX */
.founder-box {
    margin-top: 25px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* EXPERIENCE BADGE */
.exp-badge {
    background: #000;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    display: inline-block;
}

/* IMAGE ANIMATION */
.founder-img {
    max-width: 300px;
    transition: 0.4s;
}

.founder-img:hover {
    transform: translateY(-8px);
}

/* SECTION BACKGROUND */

.azure-section {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.azure-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, red, black);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    opacity: .08;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* TITLE */

.azure-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    animation: fadeUp 1s ease forwards;
}

.azure-title span {
    color: red;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DESCRIPTION */

.azure-desc {
    color: #555;
    line-height: 1.8;
    animation: fadeUp 1.4s ease forwards;
}

/* CARD */

.azure-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.azure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.azure-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, red, black);
    bottom: 0;
    left: 0;
}

.azure-card h5 {
    font-weight: 600;
    color: #000;
}

/* LEARN BOX */

.learn-box {
    padding: 20px;
    background: #fff;
    border-left: 5px solid red;
    margin-bottom: 20px;
    transition: .3s;
}

.learn-box:hover {
    transform: scale(1.04);
    background: #fafafa;
}

/* WHO CAN JOIN */

.join-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.join-card:hover {
    background: black;
    color: #fff;
    transform: translateY(-8px);
}

.join-card img {
    width: 60px;
    margin-bottom: 15px;
}

/* SECTION */

.why-azure {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* BG LIGHT MOVE */

.why-azure::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 0, 0, 0.05),
            transparent 70%);
    animation: bgMove 8s linear infinite;
    z-index: 0;
}

@keyframes bgMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-150px);
    }
}

/* CARD */

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: .4s;
    overflow: hidden;
    border-top: 3px solid red;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .06);
}

/* ANIMATED BORDER */

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 0, 0, 0.2),
            transparent);
    transition: .5s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

/* ICON */

.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: red;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* TEXT */

.fadeUp {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #000;
}

.about-modern {
    background: linear-gradient(135deg, #eef2ff, #fdf2f8);
}

.about-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-img-box img {
    border-radius: 20px;
    transition: .4s;
}

.about-img-box:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card h5 {
    margin: 0;
    font-weight: bold;
}

.floating-card p {
    margin: 0;
    font-size: 14px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-tabs-wrapper {
    display: flex;
    gap: 20px;
}

.about-tabs-menu .nav-link {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 12px 18px;
    color: #333;
    transition: .3s;
    text-align: left;
    font-weight: 500;
}

.about-tabs-menu .nav-link i {
    margin-right: 8px;
}

.about-tabs-menu .nav-link:hover {
    background: #e0e7ff;
}

.about-tabs-menu .nav-link.active {
    background: #ea1e23;
    color: white;
}

.about-content-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    animation: fadeIn .5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-section {
    padding: 40px 0;
    background: #fff;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-title h2 {
    font-weight: 700;
    color: #ff0000;
}

.testimonial-title p {
    color: #000;
}

.testimonial-card {
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 30px;
    color: #000;
    transition: 0.4s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border: 2px solid #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff0000;
    margin-bottom: 15px;
}

.role {
    color: #ff0000;
    font-weight: 500;
}

.stars {
    color: #ff0000;
    font-size: 18px;
    margin-bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-indicators .active {
    background-color: #ff0000;
}

@media(max-width:768px) {
    .testimonial-card {
        text-align: center;
    }
}

/* Title */
.contact-title h2 {
    font-weight: 700;
    text-align: center;
    color: #000;
}

.contact-title .line {
    width: 80px;
    height: 3px;
    background: red;
    margin: 10px auto;
}

/* Contact Card */
.contact-info-box {
    background: #000;
    color: #fff;
    padding: 13px 20px 10px 20px;
    border-radius: 10px;
}

/* Icons */
.contact-icon {
    font-size: 20px;
    color: red;
    margin-right: 10px;
}

/* Form */
.contact-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
   
}

.form-control {
    border-radius: 0;
}

.btn-red {
    background: red;
    color: #fff;
    border: none;
    margin: px;
}

.btn-red:hover {
    background: #000;
    color: #fff;
}

/* Map */
.map iframe {
    width: 100%;
    /* height: 100%; */
    border: 0;
    border-radius: 10px;
}

/* Mobile */
@media(max-width:768px) {
    .map {
        height: 300px;
        margin-top: 20px;
    }
}



