:root {
    --primary-yellow: #fecd29;
    --secondary-yellow: #f9eb6c;
    --mustard: #eea808;
    --heading-red: #d01013;
    --ivory: #f2e3ba;
    --main-bg: #f2e3ba;
    --section-bg: #fdfaf2;
    --card-bg: #ffffff;
    --header-bg: #23252b;
    --footer-bg: #23252b;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #f2e3ba;
    --font-family: 'Poppins', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    background-color: var(--main-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--heading-red);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--mustard), var(--primary-yellow));
    border-radius: 2px
}

h3 {
    color: var(--heading-red);
    font-weight: 600;
    text-transform: uppercase
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1)
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-decoration: none;
    display: flex;
    align-items: center
}

.logo i {
    margin-right: 10px;
    font-size: 2rem
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 20px
}

.call-us-btn {
    background-color: var(--heading-red);
    color: var(--card-bg);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2);
    border: none;
    cursor: pointer;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    animation: vibrate 1.5s infinite
}

.call-us-btn i {
    font-size: 1.2rem;
    animation: ring 1.5s infinite
}

@keyframes vibrate {

    0%,
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateX(-2px)
    }

    20%,
    40%,
    60%,
    80% {
        transform: perspective(1000px) rotateX(-2deg) rotateY(-2deg) translateX(2px)
    }
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg)
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg)
    }
}

.call-us-btn:hover {
    background-color: #a90d10;
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-3px);
    box-shadow: 0 8px 16px rgb(0 0 0 / .3);
    animation-play-state: paused
}

.call-us-btn:hover i {
    animation-play-state: paused
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.4s
}

.nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: rgb(35 37 43 / .98);
    z-index: 9996665;
    flex-direction: column;
    padding: 40px 20px;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgb(0 0 0 / .2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.nav-links.active {
    right: 0
}

.nav-links .close-btn {
    align-self: flex-end;
    background: none;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease
}

.nav-links .close-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--header-bg)
}

.nav-links ul {
    list-style: none;
    width: 100%
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease, padding-left 0.3s ease;
    text-transform: uppercase
}

.nav-links a:hover {
    color: var(--primary-yellow);
    padding-left: 10px
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px)
}

#banner-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
    overflow: hidden
}

#banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden
}

#banner-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .4);
    z-index: -1
}

#banner-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1
}

.banner-content,
.banner-form-container {
    position: relative;
    z-index: 2
}

.banner-content {
    padding: 60px
}

.banner-content h1 {
    font-family: 'Monoton', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--card-bg);
    text-shadow: 2px 2px 8px rgb(0 0 0 / .7);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out
}

.banner-content h1 span {
    display: block
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

a.submit-btn {
    position: relative;
    overflow: hidden;
    display: block;
    width: fit-content;
    text-decoration: none;
    margin: 0 auto
}

.cta-button {
    display: block;
    padding: 15px 35px;
    text-decoration: none;
    background: linear-gradient(to right, var(--mustard), var(--primary-yellow));
    color: var(--header-bg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .2);
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 20px;
    margin: 0 auto;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .3)
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgb(255 255 255 / .3), transparent);
    transition: left 0.5s ease
}

.banner-form-container {
    background-color: rgb(208 16 19 / 28%);
    padding: 40px;
    margin: 40px 40px 40px auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .3);
    border: 2px solid rgb(255 255 255 / .2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    animation: fadeInRight 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden
}

.banner-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / .1) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 20s linear infinite
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.banner-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--card-bg);
    text-align: center;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgb(0 0 0 / .3);
    text-transform: uppercase
}

.banner-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px
}

.form-group {
    margin-bottom: 20px;
    position: relative
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 20px;
    background-color: rgb(255 255 255 / .9);
    border: 2px solid rgb(255 255 255 / .3);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
    background-color: rgb(255 255 255);
    box-shadow: 0 0 15px rgb(254 205 41 / .4);
    outline: none;
    transform: translateY(-2px)
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary)
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, var(--mustard), var(--primary-yellow));
    border: none;
    border-radius: 50px;
    color: var(--header-bg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgb(255 255 255 / .3), transparent);
    transition: left 0.5s ease
}

.submit-btn:hover::before {
    left: 100%
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .3)
}

#stats {
    background-color: #f7caca;
    position: relative;
    overflow: hidden
}

#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .7
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 40px 10px;
    background: linear-gradient(135deg, rgb(35 37 43 / .9), rgb(35 37 43 / .7));
    border-radius: 15px;
    box-shadow: 0 15px 30px rgb(0 0 0 / .2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(238 168 8 / .3)
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(238 168 8 / .1), transparent);
    z-index: -1
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(238 168 8 / .2) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 15s linear infinite
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    border-color: var(--mustard)
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F9EB6C;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgb(238 168 8 / .5);
    position: relative;
    z-index: 2
}

.stat-item p {
    color: #fefefe;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2
}

.stat-item i {
    font-size: 2.5rem;
    color: #fefefe;
    margin-bottom: 15px;
    display: block
}

#about {
    padding: 100px 0;
    position: relative;
    background: #f9c11e
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.about-text h3 {
    font-size: 40PX;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--heading-red)
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgb(0 0 0 / .15);
    transition: transform 0.3s ease
}

.about-image:hover img {
    transform: scale(1.03)
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--mustard), var(--primary-yellow));
    border-radius: 50%;
    z-index: -1;
    opacity: .7
}

#why-frameboxx {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden
}

#why-frameboxx::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: .3;
    z-index: 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1
}

.feature-item {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--mustard), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease
}

.feature-item:hover::before {
    transform: scaleX(1)
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(0 0 0 / .1)
}

.feature-item i {
    font-size: 3rem;
    color: #f9eb6c;
    margin-bottom: 15px;
    transition: all 0.3s ease
}

.feature-item:hover i {
    transform: scale(1.1);
    color: var(--primary-yellow)
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff5f5
}

.feature-item h5 {
    color: #fff5f5
}

.feature-item p {
    color: #6f6f6f;
    font-size: .95rem
}

.course-card {
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
    position: relative
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease
}

.course-card:hover img {
    transform: scale(1.1)
}

.course-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(35 37 43 / .7);
    color: #fecd29;
    text-align: center;
    padding: 10px 5px;
    z-index: 2;
    transition: transform 0.4s ease
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(35 37 43 / .9);
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    padding: 20px
}

.course-card:hover .course-overlay {
    opacity: 1;
    transform: translateY(0)
}

.course-overlay p,
.course-overlay ul {
    margin-top: 10px;
    color: #fff;
    text-align: center
}

.course-overlay ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left
}

#student-work {
    padding: 100px 0;
    background-color: #f7caca;
    position: relative
}

#student-work h2 {
    color: var(--heading-red)
}

#student-life {
    padding: 100px 0;
    background-color: #f1e2b9;
    position: relative
}

#student-life h2 {
    color: var(--heading-red)
}

.life-carousel .item {
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    transition: all 0.3s ease
}

.life-carousel .item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.life-carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease
}

.life-carousel .item:hover img {
    transform: scale(1.1)
}

#testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--section-bg), #f5f5f5);
    position: relative
}

#testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: .3;
    z-index: 0
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgb(254 205 41 / .2);
    font-family: serif;
    line-height: 1
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(0 0 0 / .1)
}

.testimonial-card img {
    width: 80px !important;
    margin: 0 auto;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-yellow);
    transition: all 0.3s ease
}

.testimonial-card:hover img {
    border-color: var(--mustard);
    transform: scale(1.05)
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.testimonial-card h4 {
    color: var(--text-primary);
    font-weight: 600
}

.testimonial-card h4 span {
    color: var(--mustard);
    font-weight: 400;
    font-size: .9rem;
    display: block
}

#placements-recruiters {
    padding: 100px 0
}

#placements-recruiters {
    padding: 100px 0;
    text-align: center;
    background-color: #fff
}

.recruiter-carousel .item {
    margin: 15px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    transition: all 0.3s ease
}

.recruiter-carousel .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(0 0 0 / .1)
}

.recruiter-carousel img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease
}

.recruiter-carousel img:hover {
    filter: grayscale(0%);
    transform: scale(1.1)
}

#faqs {
    padding: 100px 0;
    background-color: #f2e3ba;
    position: relative
}

#faqs h2 {
    color: var(--heading-red)
}

.faq-container {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
    z-index: 1
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    transition: all 0.3s ease
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgb(0 0 0 / .1)
}

.faq-question {
    width: 100%;
    padding: 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: #f9eb6c;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease
}

.faq-question:hover {
    background-color: #f9f9f9
}

.faq-question.active {
    color: var(--primary-yellow);
    background-color: rgb(254 205 41 / .1)
}

.faq-question i {
    transition: transform 0.3s ease
}

.faq-question.active i {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary)
}

.faq-answer.show {
    padding: 15px 20px 20px 20px;
    max-height: 500px;
    background-color: #f2e3ba
}

#get-in-touch {
    padding: 120px 0;
    background: #23252b;
    background-size: cover;
    background-attachment: fixed;
    position: relative
}

#get-in-touch h2 {
    color: var(--card-bg);
    text-shadow: 2px 2px 8px rgb(0 0 0 / .5)
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start
}

.contact-info {
    background-color: rgb(255 255 255 / .95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .2);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--heading-red)
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff0004
}

.location-header i {
    font-size: 2.5rem;
    color: var(--heading-red);
    margin-right: 15px
}

.location-header h3 {
    font-size: 2rem;
    color: var(--heading-red);
    margin: 0;
    text-transform: uppercase
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0
}

.location-item .border {
    border-bottom: 1px solid rgb(0 0 0 / .1)
}

.location-item i {
    color: var(--heading-red);
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(208 16 19 / .1);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    transition: all 0.3s ease;
    flex-shrink: 0
}

.location-item:hover i {
    background-color: var(--heading-red);
    color: #fff;
    transform: scale(1.1)
}

.location-item-content {
    flex: 1
}

.location-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-red);
    margin-bottom: 5px;
    text-transform: uppercase
}

.location-item-content p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.5;
    margin: 0
}

.contact-form {
    background-color: rgb(255 255 255 / .9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgb(0 0 0 / .1);
    border-top: 5px solid var(--heading-red)
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-red);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    display: block;
    text-align: center
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    margin: 0 auto;
    right: 0;
    height: 3px;
    background: var(--heading-red)
}

#map {
    height: 450px;
    border: 0;
    transition: filter 0.3s ease
}

footer {
    background-color: #23252b;
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

footer .footer-left {
    flex: 1;
    text-align: left
}

footer .footer-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 20px
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease
}

footer a:hover {
    color: var(--primary-yellow)
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mustard), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(0 0 0 / .3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999
}

#back-to-top i {
    color: var(--header-bg);
    font-size: 1.2rem
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .4)
}

#back-to-top.show {
    opacity: 1;
    visibility: visible
}

#whatsapp-float {
    position: fixed;
    bottom: 91px;
    right: 23px;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(37 211 102 / .4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgb(37 211 102 / .4)
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 25px rgb(37 211 102 / .6)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgb(37 211 102 / .4)
    }
}

#whatsapp-float i {
    color: #fff;
    font-size: 1.8rem
}

#whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgb(37 211 102 / .6)
}

.owl-nav {
    text-align: center;
    margin-top: 20px
}

.owl-nav button {
    background: var(--heading-red) !important;
    color: var(--card-bg) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 20px !important;
    transition: all 0.3s ease
}

.owl-nav button:hover {
    background: var(--mustard) !important
}

.owl-dots {
    text-align: center;
    margin-top: 20px
}

.owl-dot span {
    background: var(--text-secondary) !important;
    transition: all 0.3s ease
}

.owl-dot.active span {
    background: var(--primary-yellow) !important;
    transform: scale(1.3)
}

@media (max-width:992px) {

    .about-content,
    .contact-container,
    #banner-form {
        grid-template-columns: 1fr
    }

    .banner-content {
        order: 2;
        padding: 40px
    }

    .banner-form-container {
        order: 1;
        margin: 20px auto;
        max-width: 400px
    }

    footer {
        flex-direction: column;
        gap: 20px
    }

    footer .footer-left,
    footer .footer-right {
        text-align: center
    }

    footer .footer-right {
        justify-content: center
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

@media (max-width:768px) {
    .nav-links a {
        font-size: 1em
    }

    .filter-tabs:hover {
        background-color: #f9c11e
    }

    #stats {
        background-color: #f7caca
    }

    #about {
        background: #f9c11e
    }

    .downloadbr {
        font-size: 12px !important
    }

    .contactus {
        max-width: 138px !important
    }

    .right-controls {
        gap: 10px
    }

    .stat-item h3 {
        font-size: 1.5rem
    }

    .stat-item p {
        color: #fefefe;
        font-size: 1rem
    }

    .placement-studios ul li img {
        max-width: 120px !important;
        max-height: auto !important;
        height: auto !important;
        margin: 14px 5px !important;
        display: block;
        object-fit: contain
    }

    .hamburger {
        margin-left: auto
    }

    .header-main {
        display: grid;
        justify-content: center;
        align-items: center;
        gap: 10px
    }

    .logo img {
        max-width: 100% !important
    }

    .about-text h3,
    h2 {
        font-size: 1.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .nav-links {
        width: 280px;
        right: -280px
    }

    #get-in-touch {
        background-attachment: scroll
    }

    .banner-content h1 {
        font-size: 2.5rem
    }

    .banner-form-container {
        margin: 20px;
        max-width: 100%
    }

    #whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 67px;
        right: 19px
    }
}

#whatsapp-float i {
    font-size: 1.5rem
}

#back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px
}

#back-to-top i {
    font-size: 1rem
}

.location-header {
    flex-direction: column;
    text-align: center;
    gap: 10px
}

.location-header i {
    margin-right: 0;
    margin-bottom: 10px
}
}

#student-life {
    padding: 100px 0;
    background-color: #f9eb6c;
    position: relative
}

#student-life h2 {
    color: var(--heading-red)
}

.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px
}

.filter-tab {
    padding: 12px 25px;
    background-color: #fff0;
    border: 2px solid var(--heading-red);
    color: var(--heading-red);
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.filter-tab:hover {
    background-color: #f9c11e
}

.filter-tab.active {
    background-color: var(--heading-red);
    color: #fff
}

.life-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    transition: all 0.3s ease;
    height: 250px;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .15)
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(.8);
    height: 0;
    margin: 0;
    padding: 0
}

@media (max-width:768px) {
    .logo {
        width: fit-content;
        display: block;
        margin: 0 auto
    }

    .life-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px
    }

    .filter-tabs {
        gap: 10px
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: .9rem
    }
}

.placement-studios {
    overflow: hidden
}

.placement-studios ul {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0 0px !important;
    padding: 0;
    list-style: none
}

.placement-studios ul li {
    border: 1px solid #fff;
    display: flex;
    justify-content: center
}

.placement-studios ul li:nth-child(5n+1) {
    border-top: 1px solid #ddd
}

.placement-studios ul li:nth-child(5n+1):last-child {
    border-bottom-color: #fff
}

.placement-studios ul li.middle {
    border: 1px solid #ddd;
    border-bottom-color: #fff
}

.placement-studios ul li.middle+li {
    border-top: 1px solid #ddd
}

.placement-studios ul li img {
    max-width: 140px !important;
    max-height: auto !important;
    height: auto !important;
    margin: 25px 10px;
    display: block
}

.placement-studios ul li img {
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.placement-studios ul li img:hover {
    opacity: 1;
    transform: scale(1.2)
}

@media(min-width:768px) {
    .placement-studios ul {
        margin: auto;
        margin-top: -2px
    }

    .placement-studios ul li {
        width: 20%
    }
}

.list-category div {
    margin: 5px 0
}

.list-category a {
    padding: 15px 25px;
    border-radius: 5px;
    display: block;
    transition: all .3s;
    height: 100%;
    justify-content: center;
    border: 1px solid #fff
}

.list-category a i {
    margin-left: 0;
    transition: all .7s;
    opacity: 0;
    color: #eea808;
    font-size: 20px
}

.list-category a h3 {
    margin-left: 65px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    color: #252525;
    font-weight: 500
}

.list-category a svg {
    width: 55px;
    height: 45px;
    float: left;
    margin-top: -3px
}

.list-category a img {
    display: block;
    width: 100%;
    object-fit: contain;
    width: 161px
}

.list-category a:hover {
    border: 1px solid #eea808
}

.list-category a:hover svg {
    fill: #fff;
    text-fill-color: #fff
}

.list-category a:hover p {
    color: #fff
}

.list-category a:hover img {
    fill: #fff
}

.list-category a:hover i {
    margin-left: 10px;
    opacity: 1;
    color: #fff
}

@media(max-width:767px) {
    .list-category a {
        padding: 15px 0
    }
}

.line-heading {
    margin-bottom: 30px
}

.line-heading span {
    border-bottom: 2px solid #eea808;
    display: inline-block;
    width: 50px
}

.line-heading b {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0 10px 5px;
    font-size: 12px;
    letter-spacing: 1px;
    display: block
}

.line-heading h2 {
    font-size: 45px;
    line-height: 1.43em;
    font-weight: 500;
    font-family: "Gordita", sans-serif;
    padding: 0 0 15px 0;
    margin: 0;
    color: #252525;
    display: inline;
    background: #fff0 url(/img/separator-yellow.png) scroll no-repeat right 60px;
    background-size: auto 12px
}

.line-heading h3 {
    font-size: 20px;
    line-height: 1.43em;
    font-weight: 500;
    font-family: "Gordita", sans-serif;
    padding: 0 0 0 0;
    margin: 0;
    color: #252525
}

.line-heading p {
    margin: 15px 0 0 0
}

.line-heading.align-center,
.line-heading.center {
    text-align: center
}

.line-heading.align-center span,
.line-heading.align-center b,
.line-heading.align-center h2,
.line-heading.align-center h3,
.line-heading.align-center p,
.line-heading.center span,
.line-heading.center b,
.line-heading.center h2,
.line-heading.center h3,
.line-heading.center p {
    text-align: center
}

.line-heading.light {
    color: #fff
}

.line-heading.light h2 {
    background-image: url(/img/separator-white.png);
    color: #fff
}

.line-heading.small h2 {
    font-size: 35px;
    background-position: right 50px
}

@media(max-width:767px) {
    .line-heading h2 {
        font-size: 35px;
        background-position: right 45px
    }
}

#OurCollaborations {
    text-align: center;
    background-color: #fff
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
}

.work-card img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease
}

.work-card img:hover {
    transform: scale(1.05)
}

.thankyou {
    padding: 100px 0;
    background-color: #23252b;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff
}

.pagesec {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    color: 23252b
}

.white {
    color: #fff
}

.CounsellingSession {
    background: #d01013;
    color: #fefefe
}

.footerbg {
    background: #23252b
}

.footerbg a:hover {
    color: #fecd29 !important
}

.about-img-shadow {
    box-shadow: 10px 13px 10px 0 rgb(0 0 0 / .45)
}

.banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0
}

.banner-wave .shape-fill {
    fill: #fecd29
}

.banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none
}

.form-submit-btn:hover {
    background-color: #0056b3
}

h3 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.8rem
}

@media (max-width:991px) {
    .banner-content h1 {
        font-size: 2.5rem
    }
}

@media (max-width:768px) {
    .banner-content {
        text-align: center;
        margin-bottom: 30px
    }

    .banner-content h1 {
        font-size: 2rem
    }

    .form-container {
        margin: 0 15px;
        max-width: 100%
    }
}

.creative-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden
}

.hero-video-background iframe {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translateX(-50%);
    pointer-events: none
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / .3) 0%, rgb(0 0 0 / .5) 100%);
    z-index: 1
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 180px 0
}

.hero-content-column {
    color: #fff;
    padding: 40px
}

.hero-content-column h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .5);
    font-family: "Playfair Display", serif
}

.hero-content-column h1 span {
    display: block
}

.hero-content-column p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: .95;
    text-shadow: 1px 1px 2px rgb(0 0 0 / .5)
}

.hero-action-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgb(255 107 107 / .3)
}

.hero-action-btn:hover {
    background: linear-gradient(45deg, #ff5252, #ff3838);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .3);
    color: #fff
}

.hero-form-container {
    background-color: rgb(208 16 19 / 7%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    border: 1px solid rgb(255 255 255 / .2)
}

.hero-form-container h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem
}

.hero-form-field {
    margin-bottom: 10px
}

.hero-form-field input,
.hero-form-field select {
    width: 100%;
    padding: 8px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgb(255 255 255 / .9)
}

.hero-form-field input:focus,
.hero-form-field select:focus {
    border-color: #ff6b6b;
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 107 107 / .2);
    background: #fff
}

.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px
}

.hero-wave-fill {
    fill: #f2e3ba;
}

.mobile-hero-section {
    display: none
}

.mobile-text-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: #fff
}

.mobile-text-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3
}

.mobile-text-content h1 span {
    display: block
}

.mobile-text-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: .95
}

.mobile-video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden
}

.mobile-video-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mobile-form-section {
    background-color: #f8f9fa;
    padding: 60px 0
}

.mobile-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

.mobile-form-container h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4rem
}

.mobile-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg)
}

.mobile-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px
}

.mobile-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.mobile-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px
}

.creative-main-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 4;
    margin-top: -1px
}

@media (max-width:991px) {
    .hero-content-column h1 {
        font-size: 2.8rem
    }

    .hero-form-container {
        margin-top: 0
    }
}

@media (max-width:768px) {
    .mobile-hero-section {
        display: block
    }

    .hero-form-container {
        margin: 30px
    }
}

@media (max-width:576px) {
    .mobile-text-content h1 {
        font-size: 1.8rem
    }

    .mobile-text-content p {
        font-size: 1rem
    }

    .hero-action-btn {
        padding: 12px 25px;
        font-size: 1rem
    }

    .mobile-form-container {
        padding: 20px
    }
}

@media (max-width:768px) {
    .hero-content-column {
        width: fit-content;
        margin: 0 auto
    }

    .hero-content-column .submit-btn {
        font-size: 10px;
        font-weight: 700
    }

    .hero-video-background iframe {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: static;
        transform: none
    }

    .hero-content-wrapper {
        padding: 0
    }

    .creative-hero-wrapper {
        padding: 20px 0 120px 0
    }

    .mobile-video-section iframe {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-content-column h1 {
        font-size: 1.5rem;
        text-align: center
    }

    #stats,
    #alumni-work,
    #OurCollaborations,
    #about,
    #why-frameboxx,
    #courses,
    #student-work,
    #student-life,
    #testimonials,
    #placements-recruiters,
    #faqs,
    #get-in-touch {
        padding: 20px 0px !important
    }
}

#stats,
#alumni-work,
#OurCollaborations,
#about,
#why-frameboxx,
#courses,
#student-work,
#student-life,
#testimonials,
#placements-recruiters,
#faqs,
#get-in-touch {
    padding: 30px 0px !important
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    background: #e9001d;
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px
}

#recruitersCarousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px
}

#recruitersCarousel .item img {
    width: 140px;
    height: auto;
    object-fit: contain
}

@media (max-width:768px) {
    #recruitersCarousel .item img {
        width: 110px
    }
}

.work-card {
    display: flex;
    align-items: center;
    justify-content: center
}

.work-card a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.work-card img {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease
}

.work-card:hover img {
    transform: scale(1.08)
}

#OurCollaborations .content {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 14px rgb(0 0 0 / .08)
}

#OurCollaborations .list-category .col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px
}

#OurCollaborations .list-category img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease
}

#OurCollaborations .list-category img:hover {
    transform: scale(1.05)
}

@media (max-width:991px) {
    #OurCollaborations .list-category .col {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:575px) {
    #OurCollaborations .list-category .col {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.colordrk {
    color: #423b3b !important
}

.callfrom em {
    font-size: 11px;
    font-weight: lighter;
    line-height: 16px;
    letter-spacing: .5px;
    color: #fff;
    font-style: normal
}

.hero-content-column {
    position: relative;
    width: fit-content
}

.hero-content-column .submit-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px
}

.callfrom {
    line-height: 19px;
    margin-bottom: 8px !important;
}

.otpSection {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px
}

.otpError {
    color: red
}

#Callusbtn.show {
    opacity: 1;
    visibility: visible
}

.sticky-call-container {
    position: fixed;
    right: 20px;
    bottom: 140px;
    transform: translateY(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, var(--mustard), var(--primary-yellow));
    border-radius: 50%;
    width: 42px;
    height: 42px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.175, .885, .32, 1.275);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999
}

.sticky-call-container[open] {
    width: 240px;
    border-radius: 50px;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 20px
}

.call-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.call-summary::-webkit-details-marker {
    display: none
}

.call-icon {
    width: 28px;
    height: 28px;
    fill: #23252b;
    flex-shrink: 0;
    animation: ring-vibrate 2s infinite ease-in-out
}

.call-number-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none
}

.sticky-call-container[open] .call-number-link {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0.1s
}

@keyframes ring-vibrate {

    0%,
    100% {
        transform: rotate(0deg)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg)
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg)
    }
}

@media (max-width:768px) {
    .sticky-call-container {
        top: auto;
        bottom: 121px;
        right: 22px;
        transform: none;
        width: 45px;
        height: 45px
    }
}
#customerForm .form-check{
    font-size: 14px;
    font-weight: lighter;
    line-height: 16px;
    letter-spacing: .5px;
}
#customerForm em.small{
    font-style: normal;
}

#recruitersCarousel{
    margin-bottom:-20px;
}