/* ==============================================

   FASHIONBOX - CLEAN STYLESHEET

   ============================================== */



/* ===== FONT FACE ===== */

@font-face {

    font-family: "Manrope";

    src: url("../font/Manrope-Regular.ttf") format("truetype");

    font-weight: 400;

}



@font-face {
    font-family: "Manrope";
    src: url("../font/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Manrope";
    src: url("../font/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Manrope";
    src: url("../font/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #e31e24;
    --secondary-color: #2b2a29;
    --bg-light: #f1f1f1;
    --text-color: #212121;
    --light-grey: #4a4948;
    --bg-dark: #1e1e1e;
    --text-dark: #4a4a4a;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 100px;

    /* Font Sizes */
    --h1-size: 48px;
    --h2-size: 36px;
    --h3-size: 26px;
    --body-size: 16px;
    --small-size: 14px;

    /* Font Weight */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadow */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transition */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
}

.sec-padd {
    padding: 100px 0;
}

/* .container {
    width: 100%;
    max-width: 1140px;
    padding: 0 24px;
    margin: auto;
}

@media (min-width: 1380px) {
    .container {
        max-width: 1420px;
    }
} */

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 24px;
  margin: auto;
}

/* Tablet */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Screen */
@media (min-width: 1480px) {
  .container {
    max-width: 1420px;
  }
}



.section-title {
    font-size: var(--h1-size);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn-custom {
    padding: 10px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

/* a.btn-custom {
    text-decoration: none;
} */

.btn-custom {
    text-decoration: none;
}

.btn-enroll {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 5px rgba(227, 30, 36, 0.6);
}

.btn-enroll:hover {
    background-color: #c41a1f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 6px rgba(227, 30, 36, 0.6);
}

.btn-enroll .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 20px;
}

.btn-enroll:hover .arrow {
    transform: translateX(8px);
}

.btn-outline {
    background-color: white;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: white;
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-group-custom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgb(255 255 255 / 48%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;

    background: rgba(255, 255, 255, 0.98);

}



.navbar-brand img {

    height: 60px;

    transition: all 0.3s ease;

}



.navbar.scrolled .navbar-brand img {

    height: 40px;

}



.nav-link {

    color: var(--text-color) !important;

    font-weight: 700;

    font-size: 18px;

    margin: 0 15px;

    position: relative;

    transition: color 0.3s ease;

}



.nav-link::after {

    content: "";

    position: absolute;

    bottom: -5px;

    left: 50%;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: all 0.3s ease;

    transform: translateX(-50%);

}



.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}



.nav-link:hover {

    color: var(--primary-color) !important;

}



.btn-enroll-nav {

    background: var(--primary-color);

    color: white;

    padding: 10px 30px;

    border-radius: 50px;

    border: none;

    font-weight: 600;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);

}



.btn-enroll-nav:hover {

    background: #c41a1f;

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);

}



/* ===== HERO SECTION ===== */

.hero-section video {

    width: 100%;

    height: 100%;

    object-fit: fill;

}



/* ===== WHO WE ARE SECTION ===== */

.ai-course-section {

    position: relative;

    overflow: hidden;

}



.vertical-image-wrapper {

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    z-index: 1;

}



.who-section-title {

    font-size: 40px;

    font-weight: 800;

    color: var(--secondary-color);

    line-height: 2;

}





.content-wrapper {

    padding-left: 20px;

}



.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}



.bg-shape {

    position: absolute;

    border-radius: 50%;

    opacity: 0.04;

    z-index: 1;

}



.about-shape-1 {

    width: 500px;

    height: 250px;

    background: var(--primary-color);

    top: 0px;

    left: -100px;

    border-radius: 0px 0px 500px 500px;

}



.about-shape-2 {

    width: 375px;

    height: 200px;

    background: var(--secondary-color);

    bottom: 0px;

    right: 0%;

    border-radius: 500px 500px 0 0;

}



.about-shape-3 {

    width: 250px;

    height: 250px;

    background: var(--primary-color);

    top: 30%;

    right: 6%;

    animation: pulse 8s infinite ease-in-out;

}



/* ===== COURSE OVERVIEW SECTION ===== */

.course-overview-section {

    position: relative;

    overflow: hidden;

    background-image: url(../image/fashion-overview.webp);

    background-repeat: no-repeat;

    background-attachment: fixed;

    background-size: 100% 100%;

}



.course-overview-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(5px);

    z-index: 1;

}



/* .course-overview-sec {

  position: relative;

  padding: 80px 0;

  background: linear-gradient(180deg, #0e0e0e, #141414);

}



.course-overview-text h2 {

  font-size: 40px;

  font-weight: 800;

  color: #ffffff;

  line-height: 1.2;

  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);

} */



.data-block {

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(10px);

    border-left: 5px solid var(--primary-color);

    padding: 32px 36px;

    position: relative;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;

    margin-bottom: 31px;

    z-index: 3;

}



.data-block:hover {

    transform: translateX(12px);

    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.4);

    background: rgba(255, 255, 255, 1);

}



.data-block h3 {

    font-size: 24px;

    font-weight: 700;

    color: var(--secondary-color);

    letter-spacing: -0.5px;

    line-height: 1.3;

    margin-bottom: 0;

}



.content-column {

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    padding: 30px 40px;

    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);

    border-top: 4px solid var(--primary-color);

    position: relative;

    z-index: 3;

}



.content-column::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(180deg, var(--primary-color), transparent);

}



.overview-text {

    font-size: 17px;

    color: var(--text-color);

    line-height: 1.9;

    margin-bottom: 18px;

    position: relative;

    padding-left: 20px;

}



.overview-text::before {

    content: "";

    position: absolute;

    left: 0;

    top: 10px;

    width: 6px;

    height: 6px;

    background: var(--primary-color);

    border-radius: 50%;

}



.overview-text:last-child {

    margin-bottom: 0;

}



/* ===== COURSES SECTION ===== */

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.courses-section-ptext{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 23px;
}



.section-header h2 span {

    color: var(--primary-color);

}



.module-card {

    background: #fff;

    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

    height: 100%;

    display: flex;

    flex-direction: column;

}



.module-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);

}



.module-header {

    padding: 25px 25px 20px;

    background: #fff;

    border-bottom: 1px solid #f0f0f0;

    text-align: center;

}



.module-title {

    font-size: 28px;

    font-weight: 600;

    color: var(--secondary-color);

    margin: 0;

}



.module-image-container {

    position: relative;

    /* height: 420px; */

    height: auto;

    overflow: hidden;

    background: #f5f5f5;

}

.btn-text{   
    font-size: 15px;
}


/* .module-image-container img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}



.module-card:hover .module-image-container img {

    transform: scale(1.05);

} */



.module-image-container video {

    width: 100%;

    /* height: 100%; */

    height: 72vh;

    object-fit: cover;

    transition: transform 0.4s ease;
    transform: scale(1.05);
}

.module-card:hover .module-image-container video {

    transform: scale(1.05);

}

@media (max-width: 768px) {
    .module-image-container {
        aspect-ratio: 4 / 5;
    }
}

/* Center Video Card for Cut video issue*/

@media (max-width: 768px) {
    .module-video-con {
        /* aspect-ratio: 4 / 5; */
    }
}

.module-video-con {
    position: relative;
    width: 100%;
    /* aspect-ratio: 3 / 4;    */
    overflow: hidden;
    /* background: #000; */
}

.module-video-con video {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}


.module-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}



.module-description {

  font-size: 16px;
    font-weight: 500;
    color: #6c757d;

    line-height: 1.6;

    margin-bottom: 20px;

    flex-grow: 1;

    text-align: justify;

}


.enroll-btn {

    border-radius: 12px;

    position: relative;

    overflow: hidden;

    transition: all 0.3s ease;

}



.enroll-btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

    transition: left 0.5s ease;

}



.enroll-btn:hover::before {

    left: 100%;

}



.enroll-btn:hover {

    background: var(--secondary-color) !important;

    border-color: var(--secondary-color) !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);

}



.enroll-btn:hover i {

    transform: translateX(5px);

}



.enroll-btn i {

    transition: transform 0.3s ease;

}



/* :root {

    --bs-secondary: #6c757d;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background: #f8f9fa;

    padding: 20px;

} */



.text-overview {

    margin-top: 50px;

    margin-bottom: 30px;

    font-size: 18px;

    font-weight: 500;

    color: #6c757d;

    line-height: 1.6;

    text-align: center;

    /* max-width: 1200px; */

    margin-left: auto;

    margin-right: auto;

}



.cards-container {

    display: flex;

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;

    justify-content: center;

    flex-wrap: wrap;

    padding: 20px 0;

}



.flip-card {

    width: 350px;      

    height: 60px;

    perspective: 1000px;

    transition: transform 0.35s ease;

}





.flip-card-inner {

    position: relative;

    width: 100%;

    height: 100%;

    /* transition: transform 0.8s; */

    transform-style: preserve-3d;

    /* transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1); */
    transition: transform 1.5s;

}



/* .flip-card:hover {

    transform: scale(1.1);

    z-index: 10;

} */

.flip-card:hover {

    /* transform: scale(1.1); */

    z-index: 10;

    width: 350px;

    height: 180px;

}



.flip-card:hover .flip-card-inner {

    transform: rotateY(180deg) scale(1.08);

}





.flip-card-front,

.flip-card-back {

    position: absolute;

    width: 100%;

    height: 100%;

    backface-visibility: hidden;

    border-radius: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.flip-card-front {

    background: white;

    border: 2.5px dotted #b0b0b0;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);

    transition: all 0.4s ease;

}



.flip-card:hover .flip-card-front {

    border-color: var(--primary-color);

    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.15);

}



.flip-card-front h3 {

    font-size: 22px;

    font-weight: 600;

    letter-spacing: 0.5px;

    color: var(--secondary-color);

    transition: color 0.3s ease;

    padding: 20px;

    text-align: center;

}



.flip-card:hover .flip-card-front h3 {

    color: var(--primary-color);

}



.flip-card-back {

    /* background: linear-gradient(135deg, var(--primary-color) 0%, #c41017 100%); */

    transform: rotateY(180deg);

    padding: 25px;

    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.25);

    border: 1px solid var(--primary-color);

}



.flip-card-back p {

    color: var(--bg-dark);

    font-size: 15px;

    line-height: 1.6;

    text-align: center;

    font-weight: 400;

    visibility: hidden;

}



/* On hover show text */

.flip-card:hover .flip-card-back p {

    visibility: visible;

}



@media (max-width: 768px) {

    .cards-container {

        flex-direction: column;

        align-items: center;

    }



    .flip-card {

        width: 100%;

        max-width: 280px;

    }

}



/* Founder Section */

.founder-section-wrapper {

    background: var(--secondary-color);

    position: relative;

    padding: 0;

}



.top-separator,

.bottom-separator {

    width: 100%;

    height: 4px;

    background: var(--primary-color);

    box-shadow: 0 0 15px rgba(227, 30, 36, 0.5);

}



.founder-section {

    padding: 80px 0;

}





/* Text Styling */

.founder-text {

    color: #ffffff;

}



.founder-tag {

    background-color: var(--primary-color);

    color: white;

    font-size: 12px;

    font-weight: 500;

    padding: 10px 20px;

    border-radius: 20px;

    display: inline-block;

}



.founder-name {

    color: #ffffff;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: 1.5px;

}



.founder-title {

    color: var(--bg-light);

    font-size: 20px;

    letter-spacing: 1px;

}



.founder-description {

color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;

}



/* Social Links */

.social-link {

    width: 45px;

    height: 45px;

    background: #ffffff;

    transition: all 0.3s ease;

    text-decoration: none;

}



.social-link:hover {

    background: var(--primary-color);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);

}



.social-link svg {

    fill: var(--primary-color);

    transition: fill 0.3s ease;

    width: 22px;

    height: 22px;

}



.social-link:hover svg {

    fill: #ffffff;

}





.founder-image-box img {

    width: 60%;

    height: auto;

    display: block;

    border: 3px solid var(--primary-color);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

    border-radius: 8px;

    overflow: hidden;

    margin: auto;

}



.founder-stats {

    width: 62%;

    margin: auto;

}





/* Stats */

.stat-item-founder {

    background: var(--bg-light);

    transition: all 0.3s ease;

    border-radius: 8px;

}



.stat-item-founder:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}



.stat-number-founder {

    color: var(--primary-color);

    font-size: 32px;

    font-weight: 700;

}



.stat-label-founder {

    color: var(--primary-color);

    letter-spacing: 2px;

    font-size: 12px;

    font-weight: 600;

}



/* ===== HOW IT WORKS SECTION ===== */

.fd-join-section {

    padding: 120px 0 80px 0;

    background-color: var(--bg-light);

}



.fd-join-header {

    text-align: center;

    margin-bottom: 45px;

}



.fd-join-subtitle {

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 5px;

}



.fd-join-title {

    font-size: 40px;

    font-weight: 700;

    color: var(--secondary-color);

    line-height: 1.3;

}



.fd-join-steps {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    margin: 0 auto;

    padding: 0 20px;

    gap: 15px;

}



.fd-join-steps-line {

    position: absolute;

    top: 60px;

    left: 15%;

    right: 15%;

    height: 3px;

    background: repeating-linear-gradient(to right,

            var(--primary-color) 0,

            var(--primary-color) 6px,

            transparent 6px,

            transparent 12px);

    z-index: 0;

}



.fd-join-step {

    position: relative;

    flex: 1;

    text-align: center;

    z-index: 1;

}



.fd-join-icon-wrap {

    position: relative;

    margin: 0 auto 22px;

    width: 120px;

    height: 120px;

}



.fd-join-icon-circle {

    width: 120px;

    height: 120px;

    background: linear-gradient(135deg, #d91d22 0%, #e31e24 50%, #d91d22 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 8px 20px rgba(217, 29, 34, 0.25);

}



.fd-join-icon-circle i {

    font-size: 45px;

    color: #fff;

}



.fd-join-icon-circle img {

    width: 60px;

    height: 60px;

    object-fit: contain;

}



.fd-join-step-count {

    position: absolute;

    top: -8px;

    left: -8px;

    width: 45px;

    height: 45px;

    background: var(--secondary-color);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 700;

    border: 3px solid #fff;

    z-index: 2;

}



.fd-join-content h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--secondary-color);

    margin-bottom: 10px;

}



.fd-join-content p {

    font-size: 16px;

    line-height: 1.6;

    color: var(--text-dark);

}



/* ===== CERTIFICATE SECTION ===== */

.certificates-section {

    overflow: hidden;

    position: relative;

}



.cartificate-section-title {

    font-size: 40px;

    font-weight: 700;

}



.certificate-vector {

    position: absolute;

    height: 100%;

    width: 100%;

    background-image: url(../img/certificate-vector1.jfif);

    background-repeat: no-repeat;

    background-position: right center;

    background-size: contain;

    opacity: 0.1;

    z-index: 0;

    right: -8%;

    top: 0%;

}



.certificate-content p {

    color: var(--text-dark);
    font-size: 17px;

}



/* ===== GALLERY SECTION ===== */

.fashion-gallery-section {

    position: relative;

    border-top: 3px solid;

    border-image: linear-gradient(90deg, #dc2626, #ef4444) 1;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

    overflow: hidden;

}





.gallery-section-title {

    font-size: 40px;

    font-weight: 700;

}



.fashion-gallery-wrapper {

    width: 90%;

    margin: 0 auto;

    max-width: 1400px;

}



.fashion-gallery-viewport {

    position: relative;

    width: 100%;

    height: 700px;

    overflow: hidden;

    margin-top: 2rem;

}



.fashion-gallery-grid {

    display: flex;

    gap: 16px;

    height: 100%;

    align-items: flex-start;

}



.fashion-gallery-column {

    flex: 1;

    position: relative;

    overflow: hidden;

    height: 100%;

    min-width: 0;

}



.gallery-content-track {

    display: flex;

    flex-direction: column;

    gap: 16px;

    will-change: transform;

}



.gallery-content-track img,

.gallery-content-track video {

    width: 100%;

    height: auto;

    border-radius: 12px;

    display: block;

    flex-shrink: 0;

}



/* Pause animation when hovered */

.fashion-gallery-section.pause-animation .gallery-content-track {

    animation-play-state: paused;

}





.scroll-direction-down .gallery-content-track {

    animation: fashionGalleryScrollDown 50s linear infinite;

}



.scroll-direction-up .gallery-content-track {

    animation: fashionGalleryScrollUp 45s linear infinite;

}



@keyframes fashionGalleryScrollDown {

    0% {

        transform: translateY(0);

    }



    100% {

        transform: translateY(-50%);

    }

}



@keyframes fashionGalleryScrollUp {

    0% {

        transform: translateY(-50%);

    }



    100% {

        transform: translateY(0);

    }

}



@media (min-width: 769px) {

    .desktop-view-only {

        display: block;

    }

}



/* ===== TESTIMONIALS SECTION ===== */

.testimonial-section {

    position: relative;

    border-top: 3px solid;

    border-image: linear-gradient(90deg, #dc2626, #ef4444) 1;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

}



.testimonials-row {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

}



.left-content {

    flex: 1;

    min-width: 280px;

}



.testimonial-section-title {

    font-size: 42px;

    font-weight: 700;
color: #2b2a29;
    margin: 10px 0px;

}



.left-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-right: 70px;
    font-weight: 500;
}


.trust-badges {

    display: flex;

    gap: 20px;

    margin-top: 25px;

    flex-wrap: wrap;

}



.badge-item {

    display: flex;

    align-items: center;

    gap: 8px;

    background: white;

    padding: 12px 20px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

    border: 2px solid transparent;

}



.badge-item:hover {

    border-color: rgba(227, 30, 36, 0.2);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}



.badge-icon {

    font-size: 1.5rem;

}



.badge-text {

    font-size: 0.95rem;

    font-weight: 600;

    color: #2c3e50;

}



.testimonial-wrapper {

    flex: 1.2;

    min-width: 300px;

}



.testimonial-card {

    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);

    border-radius: 25px;

    padding: 35px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;

    position: relative;

    min-height: 450px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.testimonial-card::before {

    content: "";

    position: absolute;

    top: -50%;

    right: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(227, 30, 36, 0.03) 0%, transparent 70%);

    pointer-events: none;

}



.quote-icon {

    position: absolute;

    top: 20px;

    right: 30px;

    font-size: 6rem;

    color: #e31e24;

    opacity: 0.06;

    font-family: Georgia, serif;

    line-height: 1;

}



.student-image {

    width: 110px;

    height: 110px;

    border-radius: 50%;

    object-fit: cover;

    border: 5px solid #e31e24;

    margin-bottom: 20px;

    transition: all 0.4s ease;

    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);

}



.student-name {

    font-size: 1.5rem;

    font-weight: 700;

    color: #2c3e50;

    margin-bottom: 5px;

    transition: opacity 0.3s ease;

}



.student-course {

    font-size: 1rem;

    color: #95a5a6;

    margin-bottom: 10px;

    font-weight: 500;

    transition: opacity 0.3s ease;

    background: rgba(227, 30, 36, 0.05);

    padding: 5px 15px;

    border-radius: 20px;

}



.stars {

    color: #ffd700;

    font-size: 1.4rem;

    margin-bottom: 15px;

    letter-spacing: 4px;

    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);

}



.review-text {

    font-size: 1.05rem;

    color: #555;

    line-height: 1.8;

    text-align: center;

    font-style: italic;

    transition: opacity 0.3s ease;

    max-width: 500px;

    position: relative;

    padding: 0 10px;

}



.review-text::before,

.review-text::after {

    content: '"';

    font-size: 1.5rem;

    color: #e31e24;

    opacity: 0.3;

}



.progress-dots {

    display: flex;

    gap: 8px;

    margin-top: 25px;

    justify-content: center;

}



.dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #d1d5db;

    transition: all 0.3s ease;

    cursor: pointer;

}



.dot.active {

    background: #e31e24;

    width: 30px;

    border-radius: 5px;

}



/* ===== CTA SECTION ===== */

.cta-section {

    position: relative;

    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);

    overflow: hidden;

    padding: 120px 0 165px 0;

}



.cta-section-title {

    font-size: 40px;

    font-weight: 700;

    margin: 10px 0px;

}



.cta-section::before {

    content: "";

    position: absolute;

    top: -100px;

    right: -100px;

    width: 400px;

    height: 400px;

    background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, rgba(227, 30, 36, 0.03) 100%);

    border-radius: 50%;

    z-index: 1;

}



.cta-section::after {

    content: "";

    position: absolute;

    bottom: -80px;

    left: -80px;

    width: 350px;

    height: 350px;

    background: linear-gradient(135deg, rgba(227, 30, 36, 0.06) 0%, rgba(227, 30, 36, 0.02) 100%);

    border-radius: 50%;

    z-index: 1;

}



.shape-1 {

    position: absolute;

    top: 20%;

    left: 5%;

    width: 60px;

    height: 60px;

    background: rgba(227, 30, 36, 0.1);

    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;

    animation: float 6s ease-in-out infinite;

    z-index: 1;

}



.shape-3 {

    position: absolute;

    bottom: 15%;

    left: 15%;

    width: 50px;

    height: 50px;

    background: linear-gradient(45deg, rgba(227, 30, 36, 0.12), transparent);

    transform: rotate(45deg);

    animation: rotate 10s linear infinite;

    z-index: 1;

}



.shape-4 {

    position: absolute;

    top: 30%;

    right: 15%;

    width: 40px;

    height: 40px;

    background: rgba(227, 30, 36, 0.08);

    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

    animation: float 7s ease-in-out infinite;

    z-index: 1;

}



.cta-section .container {

    position: relative;

    z-index: 2;

}



.cta-description {

    font-size: 18px;

    color: var(--text-dark);

    margin-bottom: 40px;

    line-height: 1.8;

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

}



@keyframes float {



    0%,

    100% {

        transform: translateY(0);

    }



    50% {

        transform: translateY(-20px);

    }

}



@keyframes rotate {

    0% {

        transform: rotate(0deg);

    }



    100% {

        transform: rotate(360deg);

    }

}



/* ===== FOOTER ===== */

.footer-wrapper {

    background: var(--bg-dark);

}



.floating-logo {

    z-index: 10;

    top: -60px;

}



.floating-logo .bg-white {

    transition: all 0.3s ease;

}



.floating-logo .bg-white:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;

}



.footer-logo-box img {

    width: 130px;

    margin-bottom: 31px;

}



.text-white-fd {

    color: rgb(255 255 255 / 77%) !important;

}



.hover-link {

    transition: all 0.3s ease;

}



.hover-link:hover {

    color: #e31e24 !important;

    transform: translateX(5px);

}



.btn-outline-light:hover {

    background-color: #e31e24 !important;

    border-color: #e31e24 !important;

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);

    color: #fff;

}



.btn-outline-light {

    transition: all 0.3s ease;

    display: inline-flex;

    align-items: center;

    justify-content: center;

}



.foooter-p{

    max-width: 475px;

    font-size: 16px;

}







@media (prefers-reduced-motion: reduce) {

    .gallery-content-track {

        animation: none !important;

    }

}



/* Added By Zarana Chauhan */

    /* Professional Services Section - Matching Page Design */

    .professional-services-section {

        padding: 80px 0 0 0;

        /* background: #f5f5f5; */

    }



    .services-header {

        text-align: center;

        margin-bottom: 60px;

    }



    .services-header .tagline {

        color: #e50914;

        font-size: 13px;

        font-weight: 600;

        letter-spacing: 2px;

        text-transform: uppercase;

        margin-bottom: 15px;

    }



    .services-header h2 {

        font-size: 42px;

        font-weight: 700;

        color: #2c2c2c;

        margin-bottom: 15px;

    }



    .services-header h2 span {

        color: #e50914;

    }



    .services-header p {

        color: #666;

        font-size: 18px;

        max-width: 90%;

        margin: 0 auto;

    }



    /* Service Card Design */

    .service-card-wrapper {

        margin-bottom: 30px;

    }



    .service-card {

        background: #ffffff;

        border-radius: 16px;

        padding: 30px 30px;

        height: 100%;

        transition: all 0.4s ease;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

        border: 2px solid transparent;

        position: relative;

        overflow: hidden;

    }



    .service-card::before {

        content: '';

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 4px;

        background: linear-gradient(90deg, #e50914, #ff3842);

        transform: scaleX(0);

        transform-origin: left;

        transition: transform 0.4s ease;

    }



    .service-card:hover::before {

        transform: scaleX(1);

    }



    .service-card:hover {

        transform: translateY(-8px);

        /* box-shadow: 0 12px 40px rgba(229, 9, 20, 0.15); */

        border-color: rgba(229, 9, 20, 0.2);

    }



    /* Service Icon Circle */

    .service-icon-circle {

        width: 90px;

        height: 90px;

        background: linear-gradient(135deg, #e50914, #ff3842);

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        margin: 0 auto 25px;

        transition: all 0.4s ease;

        box-shadow: 0 8px 20px rgba(229, 9, 20, 0.25);

    }



    .service-card:hover .service-icon-circle {

        transform: scale(1.1) rotate(5deg);

        box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);

    }



    .service-icon-circle i {

        font-size: 40px;

        color: #ffffff;

    }



    .service-icon-circle .emoji-icon {

        font-size: 45px;

    }



    /* Service Content */

    .service-content {

        text-align: center;

    }



    .service-content h3 {

        font-size: 24px;

        font-weight: 700;

        color: #2c2c2c;

        margin-bottom: 15px;

    }



    .service-content p {

        color: #666;

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 25px;

    }



    /* Call Button - Matching "Secure Your Seat" Style */

    .service-call-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        padding: 12px 28px;

        background: #e50914;

        color: #ffffff;

        border-radius: 30px;

        font-size: 15px;

        font-weight: 600;

        text-decoration: none;

        transition: all 0.3s ease;

        box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);

    }



    .service-call-btn:hover {

        /* background: #c50812; */

        transform: translateY(-2px);

        box-shadow: 0 6px 25px rgba(229, 9, 20, 0.5);

        color: #ffffff;

    }



    .service-call-btn i {

        font-size: 14px;

    }



    /* Number Badge (like the step numbers) */

    .service-number {

        position: absolute;

        top: 20px;

        right: 20px;

        width: 35px;

        height: 35px;

        background: #e50914;

        color: #fff;

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 16px;

        font-weight: 700;

        box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);

    }



    /* Responsive */

    @media (max-width: 991px) {

        .services-header h2 {

            font-size: 36px;

        }

        

        .service-card {

            padding: 35px 25px;

        }

    }



    @media (max-width: 576px) {

        .professional-services-section {

            padding: 60px 0;

        }

        

        .services-header h2 {

            font-size: 32px;

        }

        

        .service-icon-circle {

            width: 80px;

            height: 80px;

        }

        

        .service-icon-circle i {

            font-size: 35px;

        }

    }

