@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif !important;
}

p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

a {
    text-decoration: none !important;
    font-size: 14px;
}

:root {
    --red-bg: linear-gradient(135deg, #A41D2C, #7E1622);
    ;
    --heading-text: #1c2539;
    --red-text-color: #A41D2C;
}

.container {
    padding: 0 15px;
    max-width: 1320px !important;
}



/* ============================ TOP HEADER MAIN============================================*/

.top_header {
    background: var(--red-bg);
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

/* subtle animated glow */
.top_header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    animation: topHeaderShine 6s infinite linear;
}

@keyframes topHeaderShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===============================
   FLEX STRUCTURE
================================= */
.top_header .flex_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* ===============================
   LEFT SECTION
================================= */
.top_header .left {
    display: flex;
    gap: 25px;
}

.top_header .left a {
    color: #eaf6ff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.4s ease;
}

/* icon animation */
.top_header .left i {
    color: #ffffff;
    font-size: 15px;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* hover underline effect */
.top_header .left a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #4fd1ff;
    transition: 0.4s;
}

.top_header .left a:hover::after {
    width: 100%;
}

/* ===============================
   RIGHT SECTION
================================= */
.top_header .right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ===============================
   LOGIN BUTTONS
================================= */
.top_header .login_btn a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.top_header .login_btn a:hover::before {
    left: 0;
}

.top_header .login_btn a:hover {
    color: rgb(0, 0, 0);
    background: white;
}

/* ===============================
   SOCIAL MEDIA ICONS
================================= */
.top_header .social_media {
    display: flex;
    gap: 12px;
}

.top_header .social_media a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
}

/* rotating border animation */
.top_header .social_media a::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px dashed transparent;
    transition: 0.4s;
}

.top_header .social_media a:hover::after {
    border-color: #ffffff;
    animation: rotateBorder 1.5s linear infinite;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.top_header .social_media a:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-4px);
}

/* ============================ END TOP HEADER MAIN============================================*/

/* =============== MY CUSTOM NAVBAR – PREMIUM DESIGN ================= */
.frenchize_btn {
    display: flex;
    align-items: center;
}

.my_custom_navbar::before {
    display: none;
}

.frenchize_btn .mobile-toggle {
    display: none;
}

.my_custom_navbar .navbar_flex li a {
    font-size: 15px !important;
}

.my_custom_navbar .submenu li a {
    font-size: 15px !important;
}

.my_custom_navbar .has_submenu {
    position: relative;
}

.my_custom_navbar {
    overflow: visible !important;
}

.my_custom_navbar .submenu {
    position: absolute;
    top: 170%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.45s ease;
    z-index: 99;
}

.my_custom_navbar .submenu li {
    list-style: none;
}

.my_custom_navbar .submenu li a {
    display: block;
    padding: 12px 22px;
    font-size: 14.5px;
    color: #333;
    text-decoration: none;
    transition: all 0.35s ease;
    padding-left: 28px;
}

.my_custom_navbar .submenu li a:hover {
    background: rgba(164, 29, 44, 0.08);
    color: #A41D2C;
}

/* Hover animation trigger */
.my_custom_navbar .has_submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow */
.my_custom_navbar .has_submenu i {
    margin-left: 6px;
    transition: transform 0.4s ease;
}

.my_custom_navbar .has_submenu:hover i {
    transform: rotate(180deg);
}

/* =============== MY CUSTOM NAVBAR – PREMIUM DESIGN ================= */

/* ===============HOME SECTION – MAIN WRAPPER ================ */

.home_Section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ===============================
   FLEX CONTAINER
================================= */
.home_Section .home_flex_item {
    display: flex;
    align-items: start;
    gap: 60px;
}

/* ===============================
   LEFT IMAGE SECTION
================================= */
.home_Section .left-Section {
    flex: 1;
    position: relative;
    animation: leftSlide 1.4s ease forwards;
}

.home_Section .left-Section img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: scale(0.92);
    transition: 0.6s ease;
}

.home_Section .left-Section img:hover {
    transform: scale(1);
}

/* Glow effect behind image */
.home_Section .left-Section::after {
    content: "";
    position: absolute;
    inset: -20px;
    background: var(--red-bg);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.35;
}

/* ===============================
   RIGHT CONTENT SECTION
================================= */
.home_Section .right-Section {
    flex: 1;
    color: #ffffff;
    animation: rightSlide 1.4s ease forwards;
}

/* Paragraph styling */
.home_Section .right-Section p {
    font-size: 15px;
    line-height: 1.9;
    color: #2a2c2e;
    margin-bottom: 20px;
    position: relative;
    padding-left: 22px;
    opacity: 0;
    animation: textFadeUp 0.9s ease forwards;
}

/* Animated delay for paragraphs */
.home_Section .right-Section p:nth-child(1) {
    animation-delay: 0.3s;
}

.home_Section .right-Section p:nth-child(2) {
    animation-delay: 0.6s;
}

.home_Section .right-Section p:nth-child(3) {
    animation-delay: 0.9s;
}

/* Accent line before text */
.home_Section .right-Section p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--red-bg);
    border-radius: 50%;
    box-shadow: 0 0 10px #991b29;
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes leftSlide {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rightSlide {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============HOME SECTION – MAIN WRAPPER ================ */


/* ===============COURSE SECTION MAIN WRAPPER================= */

.course_section {
    background: var(--red-bg);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* ================================
   HEADING AREA
================================ */
.course_section .custom_heading {
    text-align: center;
    margin-bottom: 20px;
}

.course_section .custom_heading h6 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    position: relative;
    animation: glowText 2.5s infinite alternate;
}

/* glow animation */
@keyframes glowText {
    0% {
        text-shadow: 0 0 5px #A41D2C;
    }

    100% {
        text-shadow: 0 0 20px #A41D2C;
    }
}

/* ================================
   COURSE AREA TEXT
================================ */
.course_section .course_area h6 {
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 50px;
    animation: fadeDown 1.5s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   COURSE BOX GRID
================================ */
.course_section .course_box {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* ================================
   INNER COURSE CARD
================================ */
.course_section .inner_box {
    width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* glowing border animation */
.course_section .inner_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--red-bg);
    transform: translateX(-100%);
    transition: 0.6s;
}

.course_section .inner_box:hover::before {
    transform: translateX(100%);
}

/* hover lift */
.course_section .inner_box:hover {
    transform: translateY(-15px) scale(1.04);
}

/* ================================
   IMAGE SECTION
================================ */
.course_section .inner_box .img-section {
    overflow: hidden;
    border-radius: 14px;
}

.course_section .inner_box img {
    width: 100%;
    transition: 0.6s;
}

/* zoom image */
.course_section .inner_box:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* ================================
   CONTENT AREA
================================ */
.course_section .inner_box .content {
    text-align: center;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.course_section .inner_box .content h3 {
    font-size: 18px;
    color: #A41D2C;
    line-height: 1.4;
    transition: 0.4s;
}

/* neon text hover */
.course_section .inner_box:hover .content h3 {
    color: #A41D2C;
    text-shadow: 0 0 10px rgb(155 27 42);
}

/* ================================
   ENTRY ANIMATION (CARDS)
================================ */
.course_section .inner_box {
    animation: cardEntry 1.2s ease forwards;
}

.course_section .inner_box:nth-child(1) {
    animation-delay: 0.2s;
}

.course_section .inner_box:nth-child(2) {
    animation-delay: 0.4s;
}

.course_section .inner_box:nth-child(3) {
    animation-delay: 0.6s;
}

.course_section .inner_box:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardEntry {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===============COURSE SECTION MAIN WRAPPER================= */

/* ===== BREADCRUMB SECTION ===== */
.breadcrumb_section {
    position: relative;
    height: 260px;
    background: var(--red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glow animation background */
.breadcrumb_section::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
    animation: breadcrumbGlow 8s linear infinite;
}

/* ===== CONTENT WRAP ===== */
.content_breadcrumb {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeSlideUp 1.2s ease forwards;
}

/* ===== TITLE ===== */
.content_breadcrumb h4 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2.5s infinite alternate;
}

/* ===== BREADCRUMB TEXT ===== */
.content_breadcrumb p {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.content_breadcrumb p span {
    color: #ffffff;
    font-weight: 600;
    position: relative;
}

/* underline animation */
.content_breadcrumb p span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #ffffff;
    animation: underlineMove 1.5s ease forwards;
}

/* ===== ANIMATIONS ===== */
@keyframes breadcrumbGlow {
    0% {
        transform: translate(-50%, -50%);
    }

    100% {
        transform: translate(0%, 0%);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 224, 255, 0.4);
    }

    to {
        text-shadow: 0 0 25px rgba(0, 224, 255, 0.9);
    }
}

@keyframes underlineMove {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== BREADCRUMB SECTION ===== */

/* ================ABOUT COMPANY – NEW LOOK ================ */

.about_compaany_page {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* animated diagonal lines bg */
/* .about_compaany_page::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 12px
      );
    animation:bgMove 12s linear infinite;
}

@keyframes bgMove{
    from{background-position:0 0;}
    to{background-position:200px 200px;}
} */

/* ================================
   FLEX LAYOUT
================================ */
.about_compaany_page .flex_item {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* ================================
   IMAGE BLOCK – CARD STYLE
================================ */
.about_compaany_page .img-section {
    width: 38%;
    background: var(--red-bg);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.9);
    opacity: 0;
    animation: imageReveal 1.2s ease forwards;
}

@keyframes imageReveal {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.about_compaany_page .img-section img {
    width: 100%;
    border-radius: 10px;
    filter: contrast(1.05);
}

/* ================================
   CONTENT SECTION
================================ */
.about_compaany_page .about_content {
    width: 62%;
    color: #cfd3ff;
    animation: contentSlide 1.2s ease forwards;
    opacity: 0;
}

@keyframes contentSlide {
    from {
        transform: translateX(60px);
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ================================
   HEADING – CORPORATE STYLE
================================ */
.about_compaany_page .about_content h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3d3a3a;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}

.about_compaany_page .about_content h3::before {
    content: "";
    width: 50px;
    height: 4px;
    background: var(--red-bg);
    display: block;
    margin-bottom: 12px;
    animation: barGrow .8s ease;
}

@keyframes barGrow {
    from {
        width: 0;
    }

    to {
        width: 50px;
    }
}

/* ================================
   PARAGRAPH – FADE STACK
================================ */
.about_compaany_page .about_content p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
    opacity: 0;
    animation: paraFade .8s ease forwards;
    color: #2a2c2e;
}

.about_compaany_page .about_content p:nth-child(2) {
    animation-delay: .2s
}

.about_compaany_page .about_content p:nth-child(3) {
    animation-delay: .4s
}

.about_compaany_page .about_content p:nth-child(4) {
    animation-delay: .6s
}

.about_compaany_page .about_content p:nth-child(5) {
    animation-delay: .8s
}

@keyframes paraFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about_compaany_page .about_content b {
    color: #A41D2C;
    font-weight: 600;
}

/* ================================
   UL LIST – LEFT BORDER STYLE
================================ */
.about_compaany_page .ul_list {
    margin-top: 30px;
    padding-left: 25px;
    border-left: 3px solid #A41D2C;
}

.about_compaany_page .ul_list ul {
    list-style: none;
    padding: 0;
}

.about_compaany_page .ul_list ul li {
    margin-bottom: 14px;
    padding-left: 15px;
    position: relative;
    font-size: 15px;
    color: #2a2c2e;
    opacity: 0;
    animation: listSlide .6s ease forwards;
}

.about_compaany_page .ul_list ul li:nth-child(1) {
    animation-delay: .2s
}

.about_compaany_page .ul_list ul li:nth-child(2) {
    animation-delay: .35s
}

.about_compaany_page .ul_list ul li:nth-child(3) {
    animation-delay: .5s
}

.about_compaany_page .ul_list ul li:nth-child(4) {
    animation-delay: .65s
}

.about_compaany_page .ul_list ul li:nth-child(5) {
    animation-delay: .8s
}

.about_compaany_page .ul_list ul li::before {
    content: "▸";
    position: absolute;
    left: -15px;
    color: #A41D2C;
}

@keyframes listSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================ABOUT COMPANY – NEW LOOK ================ */
/* ================ABOUT SECTION 1 – MAIN WRAPPER================ */

.about_section1 {
    background: var(--red-bg);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Container animation */
.about_section1 .container {
    animation: aboutSectionFade 1.2s ease forwards;
}

/* ================================
   FLEX LAYOUT
================================ */
.about_section1 .flex-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ================================
   IMAGE SECTION
================================ */
.about_section1 .img-section {
    width: 45%;
    position: relative;
    animation: imageSlideLeft 1.3s ease forwards;
}

.about_section1 .img-section img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: scale(0.95);
    transition: 0.6s ease;
}

.about_section1 .img-section:hover img {
    transform: scale(1);
}

/* Glow effect */
.about_section1 .img-section::after {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 22px;
    background: linear-gradient(120deg, #00c6ff, #0072ff);
    opacity: 0.15;
    z-index: -1;
    filter: blur(30px);
}

/* ================================
   CONTENT SECTION
================================ */
.about_section1 .about_section1_contente {
    width: 55%;
    color: #fff;
    animation: contentSlideRight 1.3s ease forwards;
}

.about_section1 .about_section1_contente p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #dbefff;
    animation: textFadeUp 1s ease forwards;
}

/* ================================
   LIST DESIGN
================================ */
.about_section1 .ul_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about_section1 .ul_list li {
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    font-size: 15.5px;
    line-height: 1.6;
    backdrop-filter: blur(8px);
    animation: listFadeUp 0.8s ease forwards;
    transition: 0.4s ease;
}

.about_section1 .ul_list li:hover {
    transform: translateX(10px);
    background: rgba(0, 198, 255, 0.15);
}

/* Custom icon */
.about_section1 .ul_list li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes aboutSectionFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contentSlideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes listFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================ABOUT SECTION 1 – MAIN WRAPPER================ */

/* ===============================
   ABOUT SECTION – MAIN WRAPPER
================================ */
.as-section.about2 {
    background: #fff;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* ===============================
   CONTAINER
================================ */
.as-section.about2 .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ===============================
   MAIN TITLE
================================ */
.as-section.about2 .main-title {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeDown 1.2s ease forwards;
    color: #3d3a3a;
}

.as-section.about2 .main-title span {
    color: #A41D2C;
    position: relative;
}

.as-section.about2 .main-title span::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #A41D2C;
    position: absolute;
    bottom: -6px;
    left: 0;
    animation: underlineGlow 2s infinite;
}

/* ===============================
   SUB TEXT
================================ */
.as-section.about2 .sub-text {
    margin-top: 15px;
    font-size: 18px;
    color: #d0d0d0;
    animation: fadeUp 1.2s ease forwards;
    text-align: center;
    color: #3d3a3a;
}

/* ===============================
   SECTION TITLE
================================ */
.as-section.about2 .section-title {
    margin-top: 30px;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3d3a3a;
    animation: zoomIn 1s ease forwards;
    font-weight: 600;
}

/* ===============================
   CARDS WRAPPER
================================ */
.as-section.about2 .cards {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* ===============================
   SINGLE CARD
================================ */
.as-section.about2 .card {
    width: 330px;
    background: var(--red-bg);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    transition: all 0.5s ease;
    animation: floatCard 4s ease-in-out infinite;
}

/* Hover Glow Effect */
.as-section.about2 .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #00e5ff, transparent);
    opacity: 0;
    transition: 0.5s;
}

.as-section.about2 .card:hover::before {
    opacity: 0.2;
}

.as-section.about2 .card:hover {
    transform: translateY(-15px) scale(1.04);
}

/* ===============================
   ICON
================================ */
.as-section.about2 .card .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    animation: pulseIcon 2s infinite;
}

/* ===============================
   CARD TITLE
================================ */
.as-section.about2 .card h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #ffffff;
}

/* ===============================
   CARD TEXT
================================ */
.as-section.about2 .card p,
.as-section.about2 .card li {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
}

.as-section.about2 .card ul {
    padding-left: 18px;
    text-align: left;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underlineGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulseIcon {
    0% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.9);
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ++++++++++++++++++++++++ WHY US+++++++++++++++++++++++++++++++++++ */

/* MAIN SECTION */
.whyus_section {
    background: radial-gradient(circle at top, #000000, #091016);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* CONTAINER */
.whyus_container {
    width: 1200px;
    margin: auto;
}

/* HEADER */
.whyus_header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeDown 1s ease-in-out;
}

.whyus_title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #A41D2C;
}

.whyus_subtitle {
    font-size: 28px;
    margin-top: 10px;
}

.whyus_intro {
    width: 850px;
    margin: 20px auto 0;
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.8;
    text-align: center;
}

/* CARDS GRID */
.whyus_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD DESIGN */
.whyus_card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255);
    transition: all 0.5s ease;
    animation: fadeUp 1s ease-in-out;
}

.whyus_card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, #a41d2c, transparent);
    transition: 0.6s;
}

.whyus_card:hover::before {
    top: 0;
    left: 0;
}

.whyus_card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* CARD TEXT */
.whyus_card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    z-index: 9999999;
    position: relative;
}

.whyus_card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* SECTION-SPECIFIC CLASSES (for clarity) */
.cost_advantage {}

.ontime_delivery {}

.global_quality {}

.security_section {}

.communication_section {}

.free_pilot {}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.as-contact-section {
    background: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.as-contact-container {
    width: 900px;
    margin: auto;
    background: var(--red-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: asFadeUp 1.2s ease;
}

/* Heading */
.as-contact-heading h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 10px;
    position: relative;
}

.as-contact-heading h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #ffffff;
    display: block;
    margin-top: 8px;
    animation: lineGrow 1.5s infinite alternate;
}

.as-contact-heading p {
    color: #ffffff;
    font-size: 15px;
    margin-top: 15px;
}

/* Info Text */
.as-contact-info {
    margin: 25px 0;
}

.as-contact-info p {
    color: #ffffff;
    font-size: 14px;
}

.as-contact-info span {
    color: #ffffff;
    font-size: 13px;
}

/* Form */
.as-contact-form {
    margin-top: 30px;
}

/* Form Group */
.as-form-group {
    margin-bottom: 22px;
    animation: inputSlide 0.8s ease forwards;
}

.as-form-group label {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 14px;
}

.as-form-group label span {
    color: #ff4d4d;
}

/* Inputs */
.as-form-group input,
.as-form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 15px;
    color: #fff;
    border-radius: 10px;
    outline: none;
    transition: 0.4s;
}

.as-form-group input:focus,
.as-form-group textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Textarea */
.as-textarea textarea {
    height: 120px;
    resize: none;
}

/* Button */
.as-form-button {
    margin-top: 30px;
}

.as-form-button button {
    background: #fff;
    border: none;
    color: var(--red-text-color);
    padding: 15px 40px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
}

.as-form-button button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes asFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes inputSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lineGrow {
    from {
        width: 40px;
    }

    to {
        width: 80px;
    }
}

/* Container */
.program_container {
    width: 1200px;
    margin: auto;
}

/* Heading */
.program_heading {
    text-align: center;
    margin-bottom: 60px;
}

.program_heading span {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #dcdcdc;
    border-radius: 30px;
    font-weight: 600;
    color: #1d3557;
    letter-spacing: 1px;
    background: #fff;
}

/* Cards Layout */
.program_cards {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

/* Card */
.program_card {
    width: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient Overlay */
.program_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red-bg);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

/* Hover Effect */
.program_card:hover::before {
    opacity: 1;
}

.program_card:hover {
    transform: translateY(-15px) scale(1.03);
}

/* Icon */
.icon_box {
    width: 70px;
    height: 70px;
    background: #f1f4f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.program_card:hover .icon_box {
    background: #ffffff;
    transform: rotate(360deg);
}

/* Text */
.program_card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d3557;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.program_card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 22px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

/* Hover Text Color */
.program_card:hover h3,
.program_card:hover p {
    color: #ffffff;
}


/* Container */
.edu_vm_container {
    width: 1100px;
    margin: auto;
}

/* Heading */
.edu_vm_heading {
    text-align: center;
    margin-bottom: 60px;
}

.edu_vm_heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--red-text-color);
}

.edu_vm_heading p {
    font-size: 16px;
    color: #2a2c2e;
    margin-top: 10px;
    text-align: center;
}

/* Cards Wrapper */
.edu_vm_cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* Card */
.edu_vm_card {
    width: 450px;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
}

/* Animated Border */
.edu_vm_card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--red-bg);
    opacity: 0;
    transition: 0.4s;
}

/* Hover */
.edu_vm_card:hover::before {
    opacity: 1;
}

.edu_vm_card:hover {
    transform: translateY(-18px);
}

/* Inner Content */
.edu_vm_card * {
    position: relative;
    z-index: 1;
}

/* Icon */
.vm_icon {
    width: 80px;
    height: 80px;
    background: #eef5fb;
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.edu_vm_card:hover .vm_icon {
    background: #ffffff;
    transform: rotate(360deg) scale(1.1);
}

/* Text */
.edu_vm_card h3 {
    font-size: 24px;
    color: #1d3557;
    margin-bottom: 15px;
    transition: 0.4s;
}

.edu_vm_card p {
    font-size: 15px;
    line-height: 26px;
    color: #555;
    transition: 0.4s;
}

/* Hover Text Color */
.edu_vm_card:hover h3,
.edu_vm_card:hover p {
    color: #ffffff;
}

/* Different Accent */
.vision_card {
    border-top: 5px solid #A41D2C;
}

.mission_card {
    border-top: 5px solid #A41D2C;
}

.edu_vm_section {
    background: #f1f1f1;
}

.edu_footer {
    background: #1f2a30;
    color: #cfd8dc;
    position: relative;
}

/* Container */
.footer_container {
    width: 1200px;
    margin: auto;
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
}

/* Boxes */
/* .footer_box {
    width: 22%;
} */

.footer_about {
    width: 28%;
}

/* Headings */
.footer_box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.footer_box h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--red-bg);
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* About */
.footer_about p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 25px;
}

/* Social Icons */
.social_icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2b3a42;
    color: #fff;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.4s;
}

.social_icons a:hover {
    background: var(--red-bg);
    transform: translateY(-6px);
}

/* Links */
.footer_box ul {
    list-style: none;
    padding-left: 0;
}

.footer_box ul li {
    margin-bottom: 14px;
}

.footer_box ul li a {
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s;
    position: relative;
}


.footer_box ul li a:hover {
    color: var(--red-text-color);
    padding-left: 10px;
}

.footer_box ul li a:hover::before {
    opacity: 1;
}

/* Contact */
.contact_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.contact_item span {
    width: 42px;
    height: 42px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 18px;
    color: var(--red-text-color);
}

.contact_item:hover span {
    background: #ebebeb;
    transform: rotate(360deg);
}

.contact_item strong {
    color: #ffffff;
    font-size: 14px;
}

.contact_item div {
    font-size: 14px;
}

/* Bottom */
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: auto;
    font-size: 13px;
}

.footer_bottom p {
    margin-bottom: 0;
}

.footer_links a {
    color: #cfd8dc;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.footer_links a:hover {
    color: var(--red-text-color);
}

.services_v3 {
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.services_intro {
    text-align: center;
    max-width: 950px;
    margin: auto;
    margin-bottom: 10px;
}

.services_intro h2 {
    font-size: 46px;
    margin-bottom: 15px;
    background: var(--red-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services_intro p {
    color: #cfd8dc;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.service_flow {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 45px 20px;
    position: relative;
    animation: slideInLeft 0.8s ease both;
}

.service_flow.alt {
    flex-direction: row-reverse;
    animation: slideInRight 0.8s ease both;
}

.service_flow span {
    font-size: 64px;
    font-weight: 800;
    color: rgb(255 255 255 / 36%);
    min-width: 90px;
}

.service_flow h3 {
    font-size: 26px;
    color: var(--red-text-color);
    margin-bottom: 10px;
}

.service_flow p {
    font-size: 14px !important;
    color: #e0f7fa;
    line-height: 1.8;
}

.service_flow ul li {
    font-size: 14px;
    color: #e0f7fa;
    line-height: 1.8;
}

.service_flow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #00e5ff, transparent);
    opacity: 0.3;
}

.service_flow:hover h3 {
    letter-spacing: 1px;
    transition: 0.3s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.course-section-new {
    background: #fff;
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container-new {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.title-new {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--red-text-color);
}

.subtitle-new {
    font-size: 16px;
    color: #555;
    margin-bottom: 60px;
    text-align: center;
}

.course-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
}

.course-card-new.show {
    transform: translateY(0);
    opacity: 1;
}

.course-card-new:hover {
    transform: scale(1.05);
}

.card-top {
    font-size: 50px;
    background: var(--red-bg);
    color: #fff;
    padding: 30px 0;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}

.card-content {
    padding: 25px 20px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
    margin-bottom: 25px;
}

.btn-enroll {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: var(--red-bg);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-enroll::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.btn-enroll:hover::after {
    left: 0;
}

.btn-enroll:hover {
    background: var(--red-bg);
}

/* Mobile Sidebar */
/* Close button */
#close_menu {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}

.mobile_navbar .logo_area {
    width: 190px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.mobile_navbar .my_form label {
    display: block;
    color: #2a2c2e;
    margin-bottom: 4px;
    font-size: 14px;
}

.mobile_navbar .my_form input {
    width: 100%;
    padding: 6px 8px;
    font-size: 14px;
}

.mobile_navbar .my_form .form-group {
    margin-bottom: 15px;
}

.mobile_navbar .my_form .forget-password {
    margin-bottom: 14px;
}

.mobile_navbar .my_form .forget-password a {
    color: var(--red-text-color);
}

.mobile_navbar .my_form .login_btn button {
    background: var(--red-bg);
    display: block;
    width: 100%;
    color: white;
    border: none;
    padding: 6px 0;
    border-radius: 5px;
}

.mobile_navbar .my_form .sign_up {
    margin-top: 14px;
}

.close_btn_popup {
    background: var(--red-bg);
    height: 26px;
    width: 25px;
    text-align: center;
    border-radius: 4px;
    font-size: 33px;
    line-height: 27px;
    color: white;
}

.mobile_navbar .my_form .sign_up span {
    color: #2a2c2e;
    width: 100%;
    text-align: center;
    display: block;
    font-size: 14px;
}

#reset_password.active {
    display: block;
    right: 0;
}

.mobile_navigation_open.active {
    right: 0;
}

.mobile_navigation_open {
    position: fixed;
    top: 0;
    right: -130%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 1001;
    padding: 20px;
}

.mobile_navigation_open .custom_nav nav ul {
    padding-left: 0;
}

.my-navbbar {
    width: 100%;
}

.my-navbbar .logo {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.my-navbbar .menu {
    list-style: none;
    padding-left: 0;
}


.my-navbbar .menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f1e1e;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.my-navbbar .menu a:hover {
    background: var(--red-bg);
    color: white;
}

.my-navbbar .menu .has-submenu.active .submenu-toggle {
    margin-bottom: 10px;
}

.my-navbbar .arrow {
    transition: 0.3s;
}

/* Submenu */
.my-navbbar .submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
    border-radius: 6px;
    padding-left: 0;
}

.my-navbbar .menu li .active {
    background: var(--red-bg);
    color: white;
}

.my-navbbar .submenu li a {
    padding: 10px 30px;
    font-size: 14px;
    background: var(--red-bg);
    color: #ffffff;
    margin-bottom: 10px;
}

/* Active */
.my-navbbar .has-submenu.active .submenu {
    max-height: 300px;
    padding-left: 0;
}

.my-navbbar .has-submenu.active .arrow {
    transform: rotate(90deg);
}

.mobile_navigation_open .custom_nav nav ul li {
    margin-bottom: 15px;
    color: var(--heading-text);
    font-weight: 500;
    transition: 0.5s;
    padding: 8px 15px;
    border-radius: 5px;
    list-style: none;
}

.mobile_navigation_open .mobile_head_in .fa-angle-down {
    float: right;
}

.mobile_navigation_open .custom_nav nav ul li a:hover {
    background: var(--red-bg);
    color: white;
}

.mobile_navigation_open .custom_nav nav ul li a .fa {
    float: right;
}

.mobile_navigation_open .custom_nav nav ul li .active {
    background: var(--red-bg);
    color: white;
}

#closeBtn {
    background: var(--red-bg);
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 27px;
    margin-bottom: 25px;
    border-radius: 4px;
    float: right;
}

.get_in_touch {
    padding-left: 15px;
}

.get_in_touch h6 {
    color: var(--heading-text);
    font-size: 18px;
    margin-bottom: 15px;
}

.get_in_touch .box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.get_in_touch .box .fa {
    color: #2a2c2e;
    width: 30px;
}

.get_in_touch .box span {
    color: #2a2c2e;
    font-size: 14px;
}

.mobile_head .mobile-view {
    display: none;
}

/*======================================= Login Popup */
/* Mobile Menu */
.mobile_navbar {
    position: fixed;
    top: 0;
    right: -130%;
    width: 350px;
    max-width: 90%;
    height: 100vh;
    background: #ffffff;
    transition: right 0.4s ease;
    z-index: 1002;
    padding: 20px;
    overflow-x: auto;
}

.mobile_navbar.active {
    right: 0;
}

/* Overlay */
.login_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.login_overlay.active {
    opacity: 1;
    visibility: visible;
}

/*======================================= Login Popup */

/* Forget Password */
/* Reset Password Panel */
#reset_password {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease-in-out;
    z-index: 999999;
    padding: 30px;
}

/* Active State */
#reset_password.active {
    right: 0;
}

/* Overlay */
.login_overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

/* Overlay Active */
.login_overlay2.active {
    opacity: 1;
    visibility: visible;
}

#overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 1000;
}

#overlay2.active {
    opacity: 1;
    visibility: visible;
}

.personal_details {
    display: flex;
    align-items: normal;
    gap: 13px;
    border-bottom: 1px solid #bbbbbb;
}

.my_form {
    margin-top: 20px;
}

#Registration_open {
    width: 500px;
}

.my_form .main_div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 12px;
}

.my_form .main_div2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.my_form .main_div3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
}

.my_form .main_div select,
.my_form .main_div input {
    width: 100%;
    height: 35px;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    font-size: 14px;
}

.my_form .submit_btn button {
    background: var(--red-bg);
    color: white;
    display: block;
    width: 100%;
    border: none;
    padding: 4px 0;
    border-radius: 4px;
    font-size: 16px;
}

.project-section {
    padding: 60px 20px;
}

.project-section .container {
    max-width: 1200px;
    margin: auto;
    animation: fadeUp 1s ease;
}

.project-section .main-title {
    text-align: center;
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 10px;
}

.project-section .subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 100%;
    margin: 0 auto 30px;
}

.project-section .download-btn {
    display: block;
    margin: 0 auto 40px;
    padding: 14px 30px;
    background: var(--red-bg);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.project-section .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.project-section .table-wrapper {
    overflow-x: auto;
}

.project-section table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    animation: slideUp 1.2s ease;
}

.project-section thead {
    background: var(--red-bg);
    color: #fff;
}

.project-section th,
td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

.project-section tbody tr {
    transition: 0.3s;
}

.project-section tbody tr:hover {
    background: #f1f5ff;
    transform: scale(1.01);
}

.project-section .buy-btn {
    padding: 8px 16px;
    background: #16a34a;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
}

.project-section .buy-btn:hover {
    background: #15803d;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}