* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

#main-container {
    padding: 0;
    margin: 0;
}

.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    /* You can change the background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pre-loader .content video {
    width: 100%;
    /* Adjust as needed */
    max-width: 500px;
    /* Optional: limit video size */
    height: auto;
    font-size: 200px;
}

.heading {
    text-align: center;
}

.heading h1 {
    font-size: 35px;
    font-weight: 500;
    font-family: "Libre Baskerville", serif;
    color: transparent;
    background: linear-gradient(45deg, #890c25 60%, rgb(177, 176, 176), #890c25 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.btns button {
    border: none;
    border-radius: 40px;
    padding: 10px 15px;
    width: 200px;
    background: linear-gradient(90deg, #890c25, #d90445);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(137, 12, 37, 0.4);
}

.btns button:hover {
    background: linear-gradient(90deg, #d90445, #890c25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(137, 12, 37, 0.6);
}

.btns button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

/* Chatbot container */
.chat-bot {
    position: fixed;
    bottom: 20px;
    right: 15px;
    padding: 15px;
    text-align: end;
    z-index: 999;
}

.chat-bot .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Chat header */
.chat-header {
    background: rgb(237, 237, 237);
    color: black;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    justify-content: space-between;
}

.chat-header img {
    width: 30px;
    height: 30px;
}

/* Close button */
.chat-bot .content .box1 .cross {
    cursor: pointer;
    font-size: 20px;
    color: black;
}

/* Chat box */
.chat-box {
    width: 350px;
    height: 450px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box .messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-box .message {
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 75%;
}

.chat-box .user-message {
    background: #0078ff;
    color: white;
    align-self: flex-end;
    font-size: 14px;
}

.chat-box .bot-message {
    background: #f1f1f1;
    align-self: flex-start;
    text-align: start;
    font-weight: 500;
    font-size: 14px;
}

/* Input box */
#chatBox .input-box {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
    background: white;
}

#chatBox .input-box input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
}

#chatBox .input-box button {
    padding: 8px 15px;
    border: none;
    background: rgb(7, 65, 146);
    color: white;
    cursor: pointer;
}

/* Box1 - Chat button */
.chat-bot .content .box1 {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 15px;
    width: 320px;
    height: 70px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
    margin-bottom: 3%;
    padding-top: 15px;
    box-shadow: rgba(199, 199, 199, 0.24) 0px 3px 8px;
}

.chat-bot .content .box1 .text {
    width: 95%;
    margin: auto;
    text-align: start;
    padding-left: 10px;
}

.chat-bot .content .box1 .cross-chatbot {
    position: absolute;
    top: 0px;
    right: -5px;
    background: rgb(7, 65, 146);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    opacity: 0;
    /* Initially hidden */
    display: none;
}

.chat-bot .content .box1 .cross-chatbot img {
    width: 2.2vh;
}

.chat-bot .content .box1 .view-more {
    position: absolute;
    top: -8%;
    /* Vertically center the element */
    left: 40%;
    /* Horizontally center the element */
    transform: translate(-50%, -50%);
    /* Adjust positioning to be exactly at the center */
    background: rgb(7, 65, 146);
    border-radius: 20px;
    padding: 0px 5px;
    width: 110px;
    height: 30px;
    display: flex;
    opacity: 0;
    display: none;
}

.chat-bot .content .box1 .view-more p {
    font-size: 12px;
    color: white;
    position: relative;
    text-align: center;
    top: 6px;
}

.chat-bot .content .box1 .text h5 {
    font-size: 15.5px;
}

.chat-bot .content .box1 .text p {
    text-align: start;
    font-size: 14px;
    color: rgb(174, 174, 174);
}

.chat-bot .content .box1 .text p.tracking {
    font-size: 14px;
    color: rgb(174, 174, 174);
}

.chat-bot .content .box1 .text .details {
    margin-top: -5px;
}

.chat-bot span.cross {
    cursor: pointer;
}


/* Predefined message options inside chatbox */
.chat-bot .content .box2,
.chat-bot .content .box3 {
    display: flex;
    justify-content: end;
    text-align: end;
    cursor: pointer;
    background: transparent;
}

.chat-bot .content .box2 .text,
.chat-bot .content .box3 .text {
    background: #f1f1f1;
    padding: 5px;
    width: 250px;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: rgba(199, 199, 199, 0.24) 0px 3px 8px;
}

.chat-bot .content .box2 h5,
.chat-bot .content .box3 h5 {
    padding-top: 8px;
    font-size: 14px;
    color: rgb(7, 65, 146);
}

.chat-bot .content .box2 .text:hover,
.chat-bot .content .box3 .text:hover {
    background: rgb(7, 65, 146);
    color: white;
}

.chat-bot .content .box2 .text:hover h5,
.chat-bot .content .box3 .text:hover h5 {
    color: white;
}

.chat-bot .content:hover .cross-chatbot,
.chat-bot .content:hover .view-more {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
    /* Add animation */
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
        /* Start from below */
    }

    100% {
        opacity: 1;
        transform: translateY(-14px);
        /* End at normal position */
    }
}

#top-nav {
    background: rgb(239, 239, 239);
    width: 100%;
    height: 45px;
}

#top-nav .content {
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 80%;
    margin: auto;
}

#top-nav .content p {
    font-weight: 600;
    font-size: 16px;
    padding-top: 14px;
}

#top-nav .content p .top-nav-btn {
    border: 1px solid #890c25;
    background: #890c25;
    padding: 5px 30px;
    border-radius: 30px;
    position: relative;
    left: 10px;
    top: 0px;
    box-shadow: rgba(204, 204, 204, 0.2) 0px 7px 29px 0px;
}

#top-nav .content p .top-nav-btn a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* main-navbar */
.navbar {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    background: #890C25;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.navbar-brand {
    background: rgb(239, 239, 239);
    position: absolute;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 0px 2px 5px #890c25f0;
    top: 0px;
    left: 10%;
}

.navbar-brand img {
    width: 16vh;
}

.navbar-nav {
    gap: 1rem;
    margin-right: 120px;
    background: rgb(239, 239, 239);
    border-radius: 30px;
    padding: 10px 50px;
    position: relative;
}

.nav-item .nav-link {
    font-size: 16px;
    color: #890c25;
    font-weight: 500;
    font-family: "Noto Kufi Arabic", serif;
}


/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 33.5px;
    left: 0;
    background: rgb(239, 239, 239);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: none;
    z-index: 0;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.dropdown .short-dropdown {
    display: flex;
    justify-content: space-between;
}

.dropdown .short-dropdown .between-line {
    border-right: 1px solid rgba(172, 170, 170, 0.616);
    height: 120px;
    position: relative;
    top: 40px;
}

.dropdown ul {
    list-style: none;
    padding: 15px;
    padding-top: 30px;
    padding-left: 40px;
    padding-bottom: 40px;
    width: 90%;
}

.dropdown ul h6 {
    width: 90%;
    margin-top: 5%;
    padding-bottom: 10px;
    color: rgb(110, 110, 110);
    border-bottom: 1px solid rgba(160, 158, 158, 0.729);
    margin-bottom: 8%;
    font-size: 13px;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: flex;
    align-items: center;
    padding: 5px;
}

.dropdown li p {
    font-weight: 500;
    font-size: 12px;
}

.dropdown li p span {
    font-size: 8px;
    padding: 3px;
    border-radius: 10px;
    width: 100px;
    display: flex;
    margin-left: 0px;
    justify-content: start;
    align-items: center;
    border: none;
    position: relative;
    top: 2px;
}

.dropdown li span {
    margin-right: 10px;
    padding: 5px;
    border: 1px solid rgba(128, 128, 128, 0.782);
    border-radius: 5px;
}

.dropdown li span img {
    width: 4.5vh;
    border-radius: 5px;
    border: 1px solid rgb(240, 234, 234);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown ul .image a {
    width: 280px;
    height: 150px;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 10px;
    margin-top: 30px;
    margin-left: 20px;
}

.dropdown ul .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.dropdown-social-icons {
    display: flex;
    justify-content: start;
    column-gap: 20px;
    /* padding-left: 10px; */
    margin-top: 5px;
    margin-left: 30px;
}

.dropdown-social-icons p {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 5px;
    background: #890c252f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    padding-left: 0px;
}

.dropdown-social-icons p img {
    width: 3vh;
    padding-left: 6px;
}

.dropdown a:hover {
    color: #890c25;
}

.dropdown a:hover p span {
    color: rgb(61, 61, 61);
}

/* Hover Effect */
.nav-item:hover .dropdown {
    display: block;
    transform: translateY(5px);
}

.nav-item .nav-link span img {
    width: 1.8vh;
}

.nav-btn {
    border: 3px solid #aa102f;
    background: #890c25;
    padding: 7px 15px;
    border-radius: 30px;
    position: relative;
    left: 30px;
    top: 1px;
    box-shadow: rgba(204, 204, 204, 0.2) 0px 7px 29px 0px;
}

.nav-btn a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.nav-btn:hover {
    background: white;
}

.nav-btn:hover a {
    color: #890c25;
    display: flex;
}

.nav-btn a span {
    margin-right: 5px;
}

.nav-btn a span img {
    width: 2.2vh;
}

.nav-btn a span img#red-call-icon {
    display: none;
    padding-top: 5px;
}

.nav-btn:hover img#white-call-icon {
    display: none;
}

.nav-btn:hover img#red-call-icon {
    display: block;
}

.burger-menu {
    display: none;
    color: white;
}

#navbarNav {
    display: none;
}

#navbarNav.active {
    display: block;
}

/* .resources-banner{
    position: relative;
    right: 50px;
} */

/* Keyframes for sliding in and out */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Styles for main mobile menu and dropdown */
#mobile-menu {
    position: fixed;
    top: 45px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    display: none;
    transform: translateX(100%);
    padding-top: 100px;
}

.mobile-dropdown {
    position: fixed;
    top: 10px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    display: none;
    padding-top: 100px;
    transform: translateX(100%);
}

/* .more-dropdown {
    height: 100vh;
} */

#mobile-menu .content .points ul,
.mobile-dropdown ul {
    padding: 0;
    list-style: none;
}

#mobile-menu .content .points ul li,
.mobile-dropdown ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #efeded94;
}

#mobile-menu .content .points ul li a,
.mobile-dropdown ul li a {
    text-decoration: none;
    color: #333;
    flex-grow: 1;
}

.mobile-dropdown .back-to-menu {
    display: block;
    padding: 10px;
    background-color: #f0f0f0;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

#mobile-menu .content .points .mobile-nav-btn {
    text-align: center;
}

#mobile-menu .content .points .mobile-nav-btn button {
    border: 1px solid #890c25;
    background: #890c25;
    padding: 8px 25px;
    border-radius: 30px;
    color: white;
    margin-top: 10px;
    box-shadow: rgba(204, 204, 204, 0.2) 0px 7px 29px 0px;
}

#mobile-menu .content .points .dropdown-social-icons {
    justify-content: start;
    margin-top: 20px;
    margin-left: 13%;
}

#mobile-menu .content .points .dropdown-social-icons p {
    padding-left: 5px;
}

#mobile-menu .content .points .dropdown-social-icons p img {
    margin-left: -5px;
}

#front-section {
    background: #890c25;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    min-height: 90vh;
}

#front-section .content {
    text-align: center;
    padding: 20px;
    width: 80%;
    margin-top: -30px;
    color: white;
}

#front-section .content h1 {
    font-size: 60px;
    font-weight: 700;
}

#front-section .content .image {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    margin-top: 30px;
}

#front-section .content .image .box {
    background: white;
    width: 15%;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#front-section .content .image .box img {
    width: 70%;
    object-fit: cover;
}

#front-section .content .description {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#front-section .content .description span {
    font-size: 50px;
    font-weight: 200;
    margin-top: -10px;
}

#front-section .content .description .box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #c6b08f;
}

#front-section .content .btns-cta {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 30px;
}

#front-section .content .btns-cta .cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#front-section .content .btns-cta .cta-btn a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

#front-section .content .btns-cta .cta-btn:hover {
    transform: scale(1.06);
}


#main-tag-line {
    margin-top: 5%;
}

#main-tag-line .content {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

#main-tag-line .content .box {
    width: 50%;
    padding: 0px;
}

#main-tag-line .content .box h1 {
    font-weight: 700;
    font-size: 38px;
    color: rgb(104, 101, 101);
}

#main-tag-line .content .box h1 span {
    color: #890c25;
}

#main-tag-line .content .box p {
    font-size: 18px;
}

#main-tag-line .content .box p a {
    color: black;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

#main-tag-line .content .box p a:hover {
    text-decoration: underline #890c25;
    color: #890c25;
}

#partners .image-slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 40px;
}

#partners .images1 {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
}

#partners .images1 img {
    width: 90px;
    height: 30px;
    margin-right: 55px;
}

#description {
    margin-top: 5%;
}

#description .content {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

#description .content .box {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
}

#description .content .box2 {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 30px;
    position: relative;
    /* Added to allow absolute positioning inside */
    padding: 0px;
}

#description .content .box .image {
    width: 80%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: rgba(86, 86, 86, 0.15) 0px 5px 15px 0px;
}

#description .content .box .image img {
    width: 100%;
    display: block;
}

/* Play Icon Circle */
#description .content .box .image .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
}

/* Play Button */
#description .content .box .image .play-icon img {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 2;
}

/* Circular Text */
#description .content .box .image .play-icon svg {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: rotate(0deg);
    padding: 10px;
    animation: rotate-text 5s linear infinite;
}

/* Circular Text */
#description .content .box .image .play-icon svg text {
    fill: #890c25;
    /* Makes text white */
    font-size: 12px;
    /* Adjust size as needed */
    font-weight: bold;
    letter-spacing: 1.4px;
    /* Space out letters */
    text-transform: uppercase;
}


/* Rotating Animation */
@keyframes rotate-text {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Overlay Effect */
#description .content .box .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(89, 89, 89, 0.3);
    border-radius: 30px;
    transition: background 0.3s ease-in-out;
}


#description .content .box .points {
    width: 50%;
    padding: 20px;
    text-align: center;
    border-bottom-left-radius: 30px;
}

#description .content .box .points .text {
    margin-top: 70px;
}

#description .content .box .points .text0 {
    margin-bottom: 70px;
}

#description .content .box .brd {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0;
}

#description .content .box .points span {
    font-size: 40px;
    font-weight: 700;
    color: #890c25;
}

#description .content .box .points p {
    font-weight: 400;
}

#description .content .box .points-grey {
    background: rgba(241, 241, 241, 1);
}

#description .content .box .middle-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 45%;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#index-cta {
    margin: 60px auto;
    width: 90%;
    padding: 30px;
    background: rgb(239, 239, 239);
    color: #890c25;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
}

#index-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

#index-cta .cta-text {
    width: 70%;
    padding-right: 20px;
}

#index-cta .cta-text p {
    font-size: 32px;
    font-weight: 600;
    color: black;
}

#index-cta .cta-text p span {
    color: #890c25;
    font-weight: 700;
}

#index-cta .cta-action {
    width: 25%;
    text-align: right;
    margin-right: 50px;
}

#index-cta .cta-action button {
    padding: 10px 30px;
}

#index-cta .cta-action button a {
    font-size: 18px;
}



/* first-index-section */
#first-index-section {
    width: 100%;
    height: 100%;
}

#first-index-section .content {
    display: flex;
    justify-content: center;
}

#first-index-section .content .box {
    width: 50%;
    padding: 10px;
}

#first-index-section .content .box .text {
    margin: 15% 0 0 10%;
}

#first-index-section .content .box .text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    background: linear-gradient(45deg, #890c25, #cc2239);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#first-index-section .content .box .text p {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#first-index-section .content .box .text p span {
    color: #890c25;
}

#first-index-section .content .box .text .benefits {
    margin-top: 40px;
}

#first-index-section .content .box .text .benefits ul {
    padding-left: 0px;
}

#first-index-section .content .box .text .benefits ul li {
    list-style-type: none;
    display: flex;
}

#first-index-section .content .box .text .benefits ul li i {
    color: rgb(107, 107, 107);
}

#first-index-section .content .box .text .benefits ul li p {
    font-size: 16px;
    margin-left: 10px;
    margin-top: -5px;
}

#first-index-section .content .box .text .btns {
    margin-top: 30px;
    display: flex;
    column-gap: 15px;
}

#first-index-section .content .box .images-change {
    position: relative;
    width: 70%;
    height: 500px;
    margin: auto;
    margin-top: 12%;
    border-radius: 20px;
    overflow: hidden;
}

#first-index-section .content .box .images-change img {
    width: 100%;
    height: 100%;
}

/* Featured Section */
/* #featured {
    margin-top: 5%;
    position: relative;
    overflow: hidden;
}

#featured .image-slider {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

#featured .image-slider .images {
    display: flex;
    animation: slide 20s linear infinite;
}

#featured .image-slider .images .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    flex-shrink: 0;
    margin: 0 10px;
    background: #fff;
}

#featured .image-slider .images .box .photo {
    width: 30%;
    text-align: end;
}

#featured .image-slider .images .box .photo img {
    width: 100%;
}

#featured .image-slider .images .box .photo img.featured-image {
    width: 60%;
}

#featured .image-slider .images .box .text {
    width: 70%;
    padding: 0 5px;
}

#featured .image-slider .images .box .text p {
    font-size: 14px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
} */

#award {
    margin-top: 5%;
}


/* cta */
#cta {
    margin-top: 5%;
}

#cta .content {
    display: flex;
    justify-content: center;
}

#cta .content .box {
    width: 50%;
}

#cta .content .box .text {
    margin: 10% 0 0 10%;
}

#cta .content .box .text p {
    font-size: 18px;
    font-weight: 500;
}

#cta .content .box .text .heading-cta h1 {
    font-size: 35px;
    font-weight: 500;
    font-family: "Libre Baskerville", serif;
    color: transparent;
    background: linear-gradient(45deg, #890c25 60%, rgb(177, 176, 176), #890c25 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#cta .content .box .text h6 {
    font-size: 20px;
    font-weight: 700;
}

#cta .content .box .text .btns {
    margin-top: 30px;
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
    justify-content: start;
}

#cta .content .box .text .btns button{
    width: 40%;
}

#cta .content .box2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

#cta .content .box2 .image {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

#cta .content .box .image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    box-shadow: 12px 4px 6px rgba(33, 31, 31, 0.701);
}

#cta .content .box2 .image img:hover {
    transform: scale(1.2);
}

#area-of-interst {
    margin-top: 5%;
    background: url('../images/index/area-of-interst-bg-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#area-of-interst .content {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

#area-of-interst .content .box1 {
    width: 45%;
}

#area-of-interst .content .box1 .text {
    width: 80%;
    margin: auto;
}

#area-of-interst .content .box1 .text h1 {
    color: white;
    font-weight: 700;
    font-size: 60px;
}

#area-of-interst .content .box1 .text p {
    font-size: 16px;
    color: white;
}

#area-of-interst .content .box2 {
    width: 55%;
}

#area-of-interst .content .box2 .intersts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

#area-of-interst .content .box2 .intersts .points {
    width: 45%;
    padding: 15px;
    background: #890c25;
    border-radius: 5px;
}

#area-of-interst .content .box2 .intersts .points a {
    display: flex;
    justify-content: start;
    column-gap: 10px;
    align-items: center;
    text-decoration: none;
    color: white;
}

#area-of-interst .content .box2 .intersts .points a .image {
    border: 1px solid white;
    border-radius: 5px;
    padding: 8px;
}

#area-of-interst .content .box2 .intersts .points a .image img {
    width: 8vh;
    border-radius: 5px;
}

#area-of-interst .content .box2 .intersts .points a .name {
    padding: 5px;
}

#area-of-interst .content .box2 .intersts .points a .name h5 {
    font-size: 27px;
    color: white;
}

#course-index-section {
    margin-top: 5%;
}

#course-index-section .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#course-index-section .content .arrow-btn-course {
    width: 10%;
    text-align: center;
}

#course-index-section .content .arrow-btn-course button {
    border: none;
    background: transparent;
}

#course-index-section .content .arrow-btn-course button img {
    width: 3.5vh;
}

#course-index-section .content .course-section {
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
}

#course-index-section .content .course-section .wrapper-course {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    width: fit-content;
    overflow-x: scroll;
    /* Ensure horizontal scrolling */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;
}

.wrapper-course::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Chrome, Safari, and Edge */
}

#course-index-section .content .course-section .box {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 10px;
    box-sizing: border-box;
}

#course-index-section .content .box .image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-top-left-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#course-index-section .content .box .image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(0.77);
    transition: transform 0.3s ease, filter 0.3s ease;
}

#course-index-section .content .box:hover .image img {
    transform: scale(1.1);
    filter: brightness(0.87);
}

#course-index-section .content .box .text {
    padding: 20px;
    background: linear-gradient(to right, #f9f6f6, #fef9fd, #f2eaef, #f9f2f6, #efefeffa);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#course-index-section .content .box .text h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18.5px;
    color: #333;
    margin-bottom: 10px;
}

.box .duration,
.box .features {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
}

.box .features ul {
    list-style-type: none;
    padding-left: 0;
}

.box .features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.box .features ul li::before {
    content: "✔";
    margin-right: 8px;
    color: #4CAF50;
}

#course-index-section .content .box .text .btns {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;

}

#course-index-section .content .box .text .btns button {
    width: 48%;
    margin: auto;
    padding: 10px 5px;
}

#course-index-section .content .box .text .btns button a {
    font-size: 14px;
}

#course-index-section .content .box .text .btns button a span {
    margin-right: 5px;
}

#course-index-section .content .box .text .btns button a span img {
    width: 3vh;
    margin-top: -5px;
}

#steps-to-success {
    margin-top: 5%;
    padding: 30px;
    position: relative;
    z-index: 10;
}

#steps-to-success::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #890c25;
    opacity: 1;
    /* Adjust opacity as needed */
    z-index: 1;
}

#steps-to-success * {
    position: relative;
    z-index: 2;
}


#steps-to-success .content {
    text-align: center;
    color: white;
    margin-top: 3%;
}

#steps-to-success .content h1 {
    font-weight: 700;
}

#steps-to-success .content p {
    font-size: 20px;
    font-weight: 500;
}

#steps-to-success .steps {
    display: flex;
    width: 85%;
    margin: auto;
    justify-content: space-between;
    color: white;
    margin-top: 40px;
    column-gap: 30px;
    position: relative;
}

#steps-to-success .steps .box {
    text-align: center;
    padding: 20px;
    width: 30%;
    position: relative;
}

#steps-to-success .steps .num {
    background-color: #c6b08f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Line between .num elements */
#steps-to-success .steps .box::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 37%;
    width: 70%;
    height: 1.6px;
    /* Thickness of the line */
    background: white;
    /* Line color */
    z-index: 1;
    transform: translateX(50%);
}

/* Remove line from the last box */
#steps-to-success .steps .box:last-child::after {
    display: none;
}

#steps-to-success .steps .box .num h5 {
    color: #890c25;
    text-align: center;
    font-size: 30px;
    padding-top: 9px;
    font-weight: 700;
}

#steps-to-success .btns {
    text-align: center;
    margin-top: 2%;
}

#steps-to-success .btns button {
    background: white;
    padding: 15px 30px;
    width: 300px;
}

#steps-to-success .btns button a {
    color: #890c25;
    font-size: 18px;
}

.written-testi,
.written-testi-reverse {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    position: relative;
}

.testi-slider1,
.testi-slider1-reverse {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.images-testi,
.images-testi-reverse {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: normal;
    /* Ensures horizontal scrolling */
    position: relative;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    min-width: max-content;
    /* Ensures full content scrolls */
}

.images-testi-reverse {
    flex-direction: row-reverse;
    /* Reverse direction */
}

.images-testi .box,
.images-testi-reverse .box {
    background: #500e1b;
    padding: 20px;
    color: white;
    width: 350px;
    /* Set width for consistency */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
}

.images-testi .box .text,
.images-testi-reverse .box .text {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    text-align: start;
    margin-bottom: 30px;
}

.images-testi .box .text h5,
.images-testi-reverse .box .text h5 {
    font-size: 15px;
}

.images-testi .box .person-details,
.images-testi-reverse .box .person-details {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: auto;
}

.images-testi .box .person-details .image img,
.images-testi-reverse .box .person-details .image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.images-testi .box .person-details .name h6,
.images-testi-reverse .box .person-details .name h6 {
    margin: 2px 0;
    font-size: 14px;
    font-weight: normal;
}





#reviews {
    margin-top: 5%;
}

#reviews .content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#reviews .content .button-left {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviews .content .button-left #bt-left {
    border: none;
    background: transparent;
}

#reviews .content .button-left #bt-left img {
    width: 4vh;
}

#reviews .content .reviews-content {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.reviews-content .review-box {
    display: none;
    width: 100%;
    flex-shrink: 0;
}

.reviews-content .review-box.active {
    display: flex;
}

#reviews .content .reviews-content .review-box .three-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 30px;
    padding: 20px;
}

#reviews .content .reviews-content .review-box .three-boxes .box1 {
    width: 25%;
    text-align: center;
}

#reviews .content .reviews-content .review-box .three-boxes .box1 .image-boxy {
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid black;
    background: linear-gradient(to right, white, rgba(214, 213, 213, 0.999));
}

#reviews .content .reviews-content .review-box .three-boxes .box1 .image-boxy img {
    width: 15vh;
}

#reviews .content .reviews-content .review-box .three-boxes .box1 .image-boxy h4 {
    font-size: 18px;
    margin-top: 10px;
    color: grey;
    padding-bottom: 20px;
}

#reviews .content .reviews-content .review-box .three-boxes .box1 .sal {
    background: rgb(193, 17, 193);
    width: 150px;
    padding: 4px 10px;
    border-radius: 5px;
    margin: auto;
    margin-top: -20px;
}

#reviews .content .reviews-content .review-box .three-boxes .box1 .sal h6 {
    color: white;
    font-size: 17px;
    padding-top: 4px;
}

#reviews .content .reviews-content .review-box .three-boxes .box2 {
    width: 50%;
    text-align: center;
}

#reviews .content .reviews-content .review-box .three-boxes .box2 img {
    width: 180px;
}

#reviews .content .reviews-content .review-box .three-boxes .box2 .behind-r {
    position: absolute;
    z-index: -1;
}

#reviews .content .reviews-content .review-box .three-boxes .box2 .behind-r img {
    width: 40vh;
    margin-left: -50px;
    margin-top: -40px;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 {
    width: 25%;
    text-align: center;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .text h6 {
    color: #890C25;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .image-boxy {
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #890C25;
    background: linear-gradient(to right, #ffffffee, #fff9fbf2, #ffeef2ea, #FFF3F6, #ffdae2ea);
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .image-boxy img {
    width: 15vh;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .image-boxy h4 {
    font-size: 18px;
    margin-top: 10px;
    color: grey;
    padding-bottom: 20px;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .sal {
    background: purple;
    width: 150px;
    padding: 4px 10px;
    border-radius: 5px;
    margin: auto;
    margin-top: -20px;
}

#reviews .content .reviews-content .review-box .three-boxes .box3 .sal h6 {
    color: white;
    font-size: 17px;
    padding-top: 4px;
}

#reviews .content .button-right {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviews .content .button-right #bt-right {
    border: none;
    background: transparent;
}

#reviews .content .button-right #bt-right img {
    width: 4vh;
}



/* video testimonials */
#video-testimonials {
    margin-top: 5%;
}

#video-testimonials .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#video-testimonials .content .arrow-btn {
    width: 10%;
    text-align: center;
}

#video-testimonials .content .arrow-btn button {
    border: none;
    background: transparent;
}

#video-testimonials .content .arrow-btn button img {
    width: 3.5vh;
}

#video-testimonials .content .course-review-section,
#video-testimonials .content .review-section {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}

#video-testimonials .content .course-review-section .course-wrapper,
#video-testimonials .content .review-section .wrapper {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    width: fit-content;
}

#video-testimonials .content .course-review-section .box,
#video-testimonials .content .review-section .box {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 10px;
}

#video-testimonials .content .course-review-section .box .image,
#video-testimonials .content .review-section .box .image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


#video-testimonials .content .course-review-section .box .image img,
#video-testimonials .content .review-section .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video-testimonials .content .course-review-section .box .image .overlay-image,
#video-testimonials .content .review-section .box .image .overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.388);
    z-index: 1;
    pointer-events: none;
}

#video-testimonials .content .course-review-section .box .image .video-play-icon,
#video-testimonials .content .review-section .box .image .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

#video-testimonials .content .course-review-section .box .image .video-play-icon img,
#video-testimonials .content .review-section .box .image .video-play-icon img {
    width: 5vh;
    cursor: pointer;
}

#video-testimonials .content .course-review-section .box .image .video-play-icon h6,
#video-testimonials .content .review-section .box .image .video-play-icon h6 {
    color: white;
    font-size: 20px;
    margin-left: -10px;
}

#video-testimonials .content .course-review-section .box .text,
#video-testimonials .content .review-section .box .text {
    padding: 20px;
    background: linear-gradient(to right, #f9f6f6, #fef9fd, #f2eaef, #f9f2f6, #efefeffa);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#video-testimonials .content .course-review-section .box .text h5,
#video-testimonials .content .review-section .box .text h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

#video-testimonials .content .course-review-section .box .text .student-name,
#video-testimonials .content .review-section .box .text .student-name {
    margin-top: 20px;
}

#video-testimonials .content .course-review-section .box .text .student-name h6,
#video-testimonials .content .review-section .box .text .student-name h6 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

#video-testimonials .content .review-section .box .text .student-name p {
    font-size: 16px;
    color: rgb(107, 106, 106);
    margin-top: -5px;
}

#ryma-learner-support {
    width: 90%;
    margin: auto;
    margin-top: 5%;
}

#ryma-learner-support .title h2 {
    font-size: 35px;
    font-weight: 500;
    font-family: "Libre Baskerville", serif;
    color: transparent;
    background: linear-gradient(45deg, #890c25 60%, rgb(177, 176, 176), #890c25 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#ryma-learner-support .title p {
    font-size: 18px;
    color: rgb(97, 97, 97);
}

#ryma-learner-support .support-btns {
    display: flex;
    justify-content: start;
    column-gap: 50px;
    margin-top: 40px;
}

#ryma-learner-support .support-btns .box {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

#ryma-learner-support .support-btns .box h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#ryma-learner-support .support-btns .box button {
    padding: 10px 20px;
    border: 1.5px solid #890c25;
    border-radius: 5px;
}

#ryma-learner-support .support-btns .box button span {
    margin-right: 5px;
}

#ryma-learner-support .support-btns .box button span img {
    width: 2.5vh;
}

#ryma-learner-support .support-btns .box button a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 20px;
}

#ryma-learner-support .disclaimer {
    margin-top: 10%;
}

#ryma-learner-support .disclaimer .points {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

#ryma-learner-support .disclaimer .points ol li {
    margin-bottom: 15px;
    color: grey;
}

#ryma-learner-support .disclaimer .points.expanded {
    max-height: 1000px;
    /* Expand dynamically */
}

#ryma-learner-support .disclaimer .read-more {
    color: #890c25;
    cursor: pointer;
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

#cta-big {
    margin-top: 5%;
    background: #890c25;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#cta-big .content {
    text-align: center;
    padding: 30px;
    width: 80%;
    color: white;
}

#cta-big .content h1 {
    font-size: 50px;
    font-weight: 700;
}

#cta-big .content .btns-cta {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 30px;
}

#cta-big .content .btns-cta .cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#cta-big .content .btns-cta .cta-btn a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

#cta-big .content .btns-cta .cta-btn:hover {
    transform: scale(1.06);
}


/* footer */
#footer {
    margin-top: 5%;
}

#footer .first-footer {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}

#footer .first-footer .box {
    width: 50%;
    text-align: start;
}

#footer .first-footer .box2 {
    text-align: end;
    margin-right: 50px;
}

#footer .first-footer .social-icons {
    display: flex;
    justify-content: start;
    column-gap: 10px;
    margin-top: 10px;
}

#footer .first-footer .social-icons .social-box a {
    background: #890c252f;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
}

#footer .first-footer .social-icons .social-box a img {
    width: 2.5vh;
}

#footer .first-footer .box2 .pay-payment button {
    width: 250px;
    border: 2px solid #890c25;
    border-radius: 50px;
    padding: 10px;
}

#footer .first-footer .box2 .pay-payment button a {
    color: #890c25;
    text-align: center;
    padding: 2px;
    text-decoration: none;
}

#footer .first-footer .box2 .pay-payment button:hover {
    background: #890c25;
    border: 2px solid #5e0214;
}

#footer .first-footer .box2 .pay-payment a button:hover {
    color: white;
}

#footer .first-footer .box2 .verify-certi {
    position: relative;
    top: 15px;
}

#footer .content {
    display: flex;
    justify-content: start;
    padding: 20px;
    gap: 30px;
    width: 95%;
    margin: auto;
    margin-top: 40px;
}

#footer .content .box {
    width: 25%;
}

#footer .content .box .text h5 {
    font-weight: 600;
}

#footer .content .box .text ul {
    padding-left: 0;
    margin-top: 20px;
}

#footer .content .box .text ul li {
    list-style-type: none;
    margin-bottom: 6px;
}

#footer .content .box .text ul li a {
    text-decoration: none;
    color: rgb(49, 49, 49);
    font-size: 14px;
    font-weight: 500;
}

#footer .content .box .text .links ul li {
    display: flex;
    font-weight: 500;
}

#footer .content .box .text .links ul li span {
    margin-right: 5px;
}

#footer .content .box .text .links ul li span img {
    width: 3vh;
}

#footer .content .box .text .links ul li a {
    font-size: 16px;
}


#footer .hr-line {
    width: 90%;
    margin: auto;
}

#footer .copyright {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

/* privacy-policy */
.policy-container {
    background: #f4f4f4;
    /* Light gray background for a softer look */
    padding: 40px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    /* Light shadow for depth */
}

.policy-container h1,
.policy-container h2 {
    color: #222222;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}

.policy-container p {
    color: #555555;
    /* Medium gray text for paragraphs */
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0px;
    text-align: left;
    /* Aligned to the left */
}

.policy-container ul {
    padding-left: 20px;
    margin: 20px 0;
}

.policy-container ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    /* Darker gray for list items */
}

.policy-container ul li::marker {
    color: #000000;
    /* Black color for list markers */
    font-size: 18px;
}

.policy-container a {
    color: #0066cc;
    /* Blue color for links to stand out */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: #003366;
    /* Darker blue on hover */
}

.policy-container .btn {
    background-color: #0066cc;
    /* Blue button */
    color: #ffffff;
    /* White text */
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    /* Rounded corners for a modern look */
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.policy-container .btn:hover {
    background-color: #003366;
    /* Darker blue on hover */
}


/* course-page */

#coursepage-second {
    padding: 0;
}

.coursepage-icon-2 {
    position: absolute;
}

#coursepage-second .content {
    background: #890c25;
}

#coursepage-second .content .content-flex {
    display: flex;
    justify-content: center;
    padding: 20px;
}

#coursepage-second .content .content-flex .box1 {
    width: 50%;
}

#coursepage-second .content .content-flex .box1 .textbox {
    border: 2px solid white;
    border-radius: 10px;
    width: 70%;
    padding: 20px;
    margin: auto;
    margin-top: 20px;
    background-color: rgba(228, 228, 228, 0.179);
}

#coursepage-second .content .content-flex .box1 .textbox h4 {
    color: white;
    font-size: 30px;
}

#coursepage-second .content .content-flex .box1 .textbox .list {
    margin-top: 20px;
}

#coursepage-second .content .content-flex .box1 .textbox .list ul li {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

#coursepage-second .content .content-flex .box2 {
    width: 50%;
}

#coursepage-second .content .content-flex .box2 .textbox2 {
    position: relative;
    border-radius: 30px;
    width: 65%;
    padding: 30px;
    margin: auto;
    background: linear-gradient(60deg, #f1d0a1, #f7f7f7fb);
    margin-top: -150px;
}

#coursepage-second .content .content-flex .box2 .textbox2 .content-box {
    display: flex;
    justify-content: center;
}

#coursepage-second .content .content-flex .box2 .textbox2 .content-box p {
    font-weight: 500;
    color: #890C25;
}

#coursepage-second .content .content-flex .box2 .textbox2 .content-box h5 {
    margin-top: -10px;
    font-size: 16px;
}

#coursepage-second .content .box2 .textbox2 .content-text {
    margin-top: 30px;
}

#coursepage-second .content .box2 .textbox2 .content-text h4 {
    color: #890C25;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

#coursepage-second .content .box2 .textbox2 .content-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

#coursepage-second .content .box2 .textbox2 .content-text .list {
    margin-top: 30px;
}

#coursepage-second .content .box2 .textbox2 .content-text .list ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

#coursepage-second .content .box2 .textbox2 .content-text .list ul li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    position: relative;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

#coursepage-second .content .box2 .textbox2 .content-text .list ul li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #890C25;
    font-size: 20px;
    top: 0;
    transition: all 0.3s ease;
}

#coursepage-second .content .box2 .textbox2 .content-text .list ul li:hover {
    color: #890C25;
    font-weight: 600;
    transform: translateX(10px);
}

#course-cta {
    margin-top: 3%;
    padding-bottom: 50px;
}

#course-cta .content-cta {
    display: flex;
    justify-content: center;
    background: linear-gradient(60deg, #f1d0a1, #f7f7f7fb);
    border-radius: 5px;
    width: 90%;
    margin: auto;
    padding: 0;
    border: 1px solid white;
}

#course-cta .content-cta .box1 {
    width: 70%;
    padding: 20px;
    padding-left: 80px;
}

#course-cta .content-cta .box1 h1 {
    color: #890c25;
    font-size: 35px;
    padding-top: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

#course-cta .content-cta .box1 p {
    font-size: 18px;
}

#course-cta .content-cta .box1 button {
    margin-top: 20px;
    width: 350px;
}

#course-cta .content-cta .box2 {
    width: 30%;
    text-align: end;
    display: flex;
    align-items: flex-end;
}

#course-cta .content-cta .box2 .image {
    width: 80%;
}

#course-cta .content-cta .box2 .image img {
    width: 100%;
}

#course-listing {
    margin-top: 5%;
}

#course-listing .content {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: auto;
    margin-top: 80px;
    padding: 10px;
}

#course-listing .content .box1 {
    width: 35%;
    padding: 10px;
}

#course-listing .content .box1 .lists1 {
    margin-top: 20px;
}

#course-listing .content .box1 .lists1 ul li {
    list-style-type: none;
    color: #890C25;
    background: rgb(247, 247, 247);
    box-shadow: 1px 1px 5px #890C25;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 0px;
    height: 40px;
    display: flex;
    width: 100%;
}

#course-listing .content .box1 .lists1 ul li p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 4px;
}

#course-listing .content .box1 .lists1 ul li div {
    background: #890C25;
    border-radius: 50%;
    display: flex;
    padding: 2px;
    height: 45px;
    width: 45px;
    position: relative;
    left: -15px;
    top: -3px;
    justify-content: center;
    align-items: center;
}

#course-listing .content .box1 .lists1 ul li img {
    width: 4vh;
}

#course-listing .content .box2 {
    width: 20%;
}

#course-listing .content .box2 .lists2 {
    position: absolute;
    background: linear-gradient(to right, white, rgba(214, 213, 213, 0.999));
    border-radius: 10px;
    padding: 30px;
    margin-left: -30px;
    text-align: start;
    margin-top: -50px;
    width: 20%;
}

#course-listing .content .box2 .lists2 .points {
    margin-top: 30px;
}

#course-listing .content .box2 .lists2 h4 {
    color: rgb(88, 88, 88);
}

#course-listing .content .box2 .lists2 .points ul {
    padding: 0;
}

#course-listing .content .box2 .lists2 .points ul li {
    list-style-type: none;
    margin-bottom: 32px;
    font-size: 16px;
    color: grey;
    font-weight: 500;
}

#course-listing .content .box3 {
    width: 20%;
}

#course-listing .content .box3 .lists3 {
    position: absolute;
    background: linear-gradient(to right, #FFFFFF, #FFE8ED, #FFFEFE, #EACCD2);
    border-radius: 10px;
    border: 1px solid #890C25;
    padding: 30px;
    margin-left: -50px;
    text-align: start;
    margin-top: -50px;
    width: 20%;
}

#course-listing .content .box3 .lists3 h4 {
    color: #890C25;
}

#course-listing .content .box3 .lists3 .points {
    margin-top: 30px;
}

#course-listing .content .box3 .lists3 .points ul {
    padding: 0;
}

#course-listing .content .box3 .lists3 .points ul li {
    list-style-type: none;
    margin-bottom: 32px;
    font-size: 16px;
    color: #890C25;
    font-weight: 500;
}

#course-listing .content2 {
    display: none;
    margin-top: 20px;
}

#course-listing .content2 table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#course-listing .content2 th,
#course-listing .content2 td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: start;
    font-size: 18px;
}

#course-listing .content2 table th {
    background: #890c25;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

#course-listing .content2 table tr:nth-child(even) {
    background: #f9f9f9;
}

#course-listing .content2 table tr:hover {
    background: rgba(137, 12, 37, 0.1);
    transition: 0.3s;
}

#course-listing .content2 table td:first-child {
    font-weight: bold;
    color: #890c25;
}

#course-listing .content2 table .other-courses {
    color: #777;
}

#course-listing .content2 table .ryma-academy {
    color: #890c25;
    font-weight: bold;
}

#course-listing .content2 table .icon img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}


/* General Section Styling */
#overview-features {
    margin-top: 5%;
    padding: 50px 20px;
    background-color: #eeeeeedb;
}

#overview-features .content {
    margin-top: 50px;
}

/* Course Overview */
#overview-features .content .course-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 20px;
    margin: auto;
    margin-bottom: 40px;
}

#overview-features .content .course-overview .overview-text {
    width: 50%;
}

#overview-features .content .course-overview .overview-image {
    width: 50%;
}

#overview-features .content .course-overview .overview-text h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

#overview-features .content .course-overview .overview-text p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: start;
}

#overview-features .content .course-overview .overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Course Features */
#overview-features .content .course-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    gap: 20px;
    margin-top: 100px;
}

#overview-features .content .feature-card {
    width: 30%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#overview-features .content .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#overview-features .content .feature-card .icon img {
    width: 60px;
    margin-bottom: 15px;
}

#overview-features .content .feature-card h4 {
    color: #890c25;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

#overview-features .content .feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}

#upcoming-tutorials {
    margin-top: 5%;
}

#upcoming-tutorials .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#upcoming-tutorials .content .arrow-btn-tutorial {
    width: 10%;
    text-align: center;
}

#upcoming-tutorials .content .arrow-btn-tutorial button {
    border: none;
    background: transparent;
}

#upcoming-tutorials .content .arrow-btn-tutorial button img {
    width: 3.5vh;
}

#upcoming-tutorials .content .tutorial-section {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}

#upcoming-tutorials .content .tutorial-section .wrapper-tutorial {
    display: flex;
    justify-content: space-between;
    transition: transform 0.5s ease;
    position: relative;
    width: fit-content;
    width: 100%;
}

#upcoming-tutorials .content .tutorial-section .wrapper-tutorial .box {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 10px;
}

#upcoming-tutorials .content .tutorial-section .box .image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

#upcoming-tutorials .content .tutorial-section .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#upcoming-tutorials .content .tutorial-section .box .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

#upcoming-tutorials .content .tutorial-section .box .image .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

#upcoming-tutorials .content .tutorial-section .box .image .video-play-icon img {
    width: 5vh;
    cursor: pointer;
}

#upcoming-tutorials .content .tutorial-section .box .image .video-play-icon h6 {
    color: white;
    font-size: 20px;
    margin-left: -10px;
}

#upcoming-tutorials .content .tutorial-section .box .text {
    padding: 20px;
    background: linear-gradient(to right, #f9f6f6, #fef9fd, #f2eaef, #f9f2f6, #efefeffa);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#upcoming-tutorials .content .tutorial-section .box .text h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

#upcoming-tutorials .content .tutorial-section .box .text .student-name {
    margin-top: 20px;
}

#upcoming-tutorials .content .tutorial-section .box .text .student-name p {
    font-size: 16px;
    color: rgb(107, 106, 106);
    margin-top: -5px;
}

#valuable-certificate {
    margin-top: 5%;
}

#valuable-certificate .content {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: auto;
    margin-top: 50px;
}

#valuable-certificate .content .box1 {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

#valuable-certificate .content .box1 .text {
    text-align: start;
    padding: 10px;
}

#valuable-certificate .content .box1 h1 {
    font-weight: 700;
}

#valuable-certificate .content .box1 h1 span {
    color: #890C25;
}

#valuable-certificate .content .box1 p {
    font-weight: 500;
    margin-top: 10px;
}

#valuable-certificate .content .box1 .text .btns {
    display: flex;
    column-gap: 15px;
    margin-top: 30px;
}

#valuable-certificate .content .box2 {
    text-align: end;
    width: 40%;
}

#valuable-certificate .content .box2 .image {
    width: 80%;
    margin: auto;
}

#valuable-certificate .content .box2 .image img {
    width: 80%;
}

#faq-section {
    margin-top: 5%;
    background-color: #ffffff;
}

#faq-section #faqAccordion {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    background-color: #f9f9f9;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px;
    transition: background-color 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #890c25;
    /* Main theme color */
}

.accordion-button:hover {
    background-color: #890c25;
    color: #ffffff;
}

.accordion-body {
    background-color: #fdfdfd;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    padding: 20px;
}


/* aboutus */

#about-front {
    margin-top: 5%;
    background: #890C25;
    position: relative;
    overflow: hidden;
}

#about-front .about-gradient {
    position: absolute;
    z-index: 0;
    width: 100%;
    text-align: end;
}

#about-front .content {
    display: flex;
    justify-content: center;
    color: white;
}

#about-front .content .box1 {
    width: 50%;
    padding: 10px;
}

#about-front .content .box1 .text {
    padding: 20px;
    margin-top: 50px;
    margin-left: 50px;
}

#about-front .content .box1 .text h2 {
    font-size: 40px;
}

#about-front .content .box1 .text p {
    font-size: 18px;
    margin-top: 20px;
    font-style: italic;
}


#about-front .content .box2 {
    width: 50%;
    text-align: center;
    z-index: 1;
}

#about-front .content .box2 .aboutus-icon-2 {
    position: absolute;
    z-index: 1;
    top: 200px;
    margin-left: 400px;
}

#mission-vision {
    margin-top: 5%;
}

#mission-vision .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 70%;
    margin: auto;
    margin-top: 50px;
    position: relative;
}

#mission-vision .content .box {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

#mission-vision .content .box h4 {
    text-decoration: underline #890C25;
    color: #890C25;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

#mission-vision .content .box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
    z-index: 2;
    position: relative;
}

#mission-vision .content .box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #890C25;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

#mission-vision .content .box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

#mission-vision .content .box:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

#mission-vision .content .box2 {
    background: #f9f9f9;
    border: 1px solid #ccc;
}

#sets-us-apart {
    margin-top: 5%;
}

#sets-us-apart .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

#sets-us-apart .content .box {
    width: 30%;
    padding: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

#sets-us-apart .content .box h5 {
    color: #890c25;
    transition: color 0.3s ease-in-out;
}

#sets-us-apart .content .box:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 4px 8px 0px, rgba(60, 64, 67, 0.15) 0px 8px 16px 4px;
    transform: translateY(-5px);
    background-color: #f7f7f7;
}

#sets-us-apart .content .box:hover h5 {
    color: #be0f32;
}

#journey {
    padding: 50px 0;
    background-color: #f4f4f4;
    margin-top: 5%;
}

#journey .heading p {
    width: 70%;
    margin: auto;
}

#journey .content {
    display: flex;
    justify-content: space-around;
    column-gap: 20px;
    width: 90%;
    margin: auto;
    margin-top: 50px;
}

#journey .content .box {
    width: 25%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px, rgba(0, 0, 0, 0.07) 0px 6px 12px;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#journey .content .box:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px, rgba(0, 0, 0, 0.1) 0px 10px 15px;
}

#journey .content .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 35%;
    height: 35%;
    background: #f1f1f1;
    transform: rotate(-45deg) translate(0%, 0%);
    transform-origin: top left;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* #journey .content .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    background: #fff;
    border-radius: 10px;
    z-index: 0; 
} */

#journey .content .box span {
    font-size: 50px;
    font-weight: 700;
}

#journey .content .box p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    color: #890c25;
}

#founder {
    width: 90%;
    margin: auto;
    margin-top: 5%;
}

#founder .heading {
    text-align: start;
    padding-left: 70px;
}

#founder .content {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#founder .content .box {
    width: 50%;
}

#founder .content .box .image {
    width: 80%;
    margin: auto;
}

#founder .content .box .image img {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
}

#founder .content .box p {
    font-size: 17px;
    margin-top: 25px;
    font-style: italic;
}

#founder .content .box .btns {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

/* Placements */

#placements-front {
    margin-top: 5%;
}

#placements-front .content {
    display: flex;
    justify-content: center;
    width: 85%;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    border: 2px solid #890C25;
    border-radius: 10px;
    background: linear-gradient(to right, #FFFFFF, #FFE8ED, #FFFEFE, #EACCD2);
}

#placements-front .content .box1 {
    width: 50%;
    padding: 20px;
    padding-left: 50px;
}

#placements-front .content .box1 h2 {
    color: #890C25;
    font-weight: 700;
    font-size: 40px;
}

#placements-front .content .box1 .list {
    margin-top: 30px;
}

#placements-front .content .box1 .list ul li {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}

#placements-front .content .box2 {
    width: 50%;
    text-align: end;
    margin-right: 20px;
}

#placements-front .content .box2 img {
    width: 40vh;
}

#placements-front .placements-icon-1 {
    margin-top: 0px;
    padding: 0;
    position: absolute;
    left: 0;
    z-index: -1;
}

#placements-front .placements-icon-1 img {
    width: 70vh;
}

#short-des {
    width: 70%;
    margin: auto;
    margin-top: -50px;
    z-index: 1;
}

#short-des .icons-content {
    width: 100%;
    box-shadow: 2px 2px 4px grey;
    border-radius: 10px;
    background: linear-gradient(-45deg, #FBDCDC, #fffce1, #ffdde4);
}

#short-des .icons-content ul {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    padding: 10px;
}

#short-des .icons-content ul li span {
    font-size: 30px;
    color: #890c25;
    font-weight: 700;
}

#short-des .icons-content ul li {
    list-style-type: none;
    color: grey;
    font-weight: 500;
    height: 100%;
    text-align: center;
    width: 900px;
    padding-left: 10px;
    font-size: 18px;
    margin-top: 20px;
    padding-right: 5px;
    border-right: 2px solid #890c25;
}

#short-des .icons-content ul .last {
    border-right: none;
}

/* #placements-services {
    margin-top: 10%;
    padding: 0;
    height: auto;
    overflow: hidden;
} */

#placement-second-section {
    margin-top: 5%;
}

#placement-second-section .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 80px;
    padding: 20px;
    background-color: #f9f9f9;
}

#placement-second-section .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#placement-second-section .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

#placement-second-section .box .image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #bfbfbf;
    object-fit: cover;
    margin-bottom: 15px;
}

#placement-second-section .box .name {
    text-align: center;
    margin-bottom: 15px;
}

#placement-second-section .box .name h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin: 5px 0;
}

#placement-second-section .box .name h6 {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin: 5px 0;
}

#placement-second-section .box .name p {
    font-size: 14px;
    color: #999999;
}

#placement-second-section .box .company-logo img {
    width: 80px;
    height: auto;
    margin-top: 10px;
}


#placement-cta {
    margin-top: 5%;
    padding: 30px 0;
    background: #890c25;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#placement-cta .content {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #333;
}

#placement-cta .content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

#placement-cta .content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: whitesmoke;
    margin-bottom: 30px;
}

#placement-cta .content .btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

#placement-cta .content .btns button {
    background: #f6f6f6;
    color: #890c25;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    width: 250px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#placement-cta .content .btns button:hover {
    /* background: #b31f36; */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#placement-cta .content .btns button a {
    color: #890c25;
    text-decoration: none;
}

#placement-cta .content .btns button a:hover {
    text-decoration: none;
}

/* contact-us page */
#contact-us {
    position: relative;
    background-image: url('../images/contact-us/contact-front.webp');
    background-position: 10% 40%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#contact-us h1 {
    position: relative;
    color: white;
    font-size: 2.5rem;
    z-index: 2;
}

#general-contact-information {
    margin-top: 5%;
    background-color: #f4f7fc;
    padding: 50px 0;
}

#general-contact-information .content {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

#general-contact-information .content .box {
    width: 28%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    border: 1px solid #dde2eb;
}

#general-contact-information .content .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    border-color: #890c25;
}

#general-contact-information .content .box .image {
    margin-bottom: 20px;
}

#general-contact-information .content .box .image img {
    width: 7vh;
    transition: transform 0.3s ease;
}

#general-contact-information .content .box:hover .image img {
    transform: scale(1.1);
}

#general-contact-information .content .box .text h4 {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

#general-contact-information .content .box .text h4 a {
    color: black;
    text-decoration: none;
}

#general-contact-information .content .box .text h4 sup {
    font-size: 14px;
}

/* 
#branch-contact-information {
    margin-top: 5%;
    padding: 50px 0;
}

#branch-contact-information .content {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    flex-wrap: wrap; 
    margin-top: 50px;
}

#branch-contact-information .content .box {
    width: 28%;
    background-color: #ffffff; 
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    border: 1px solid #dde2eb;
}

#branch-contact-information .content .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    border-color: #890c25; 
} */

#contact-form {
    margin-top: 5%;
    background: linear-gradient(135deg, #f5f5f5, #fffdfd);
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

#contact-form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(137, 12, 37, 0.2);
    border-radius: 50%;
    z-index: 0;
}

#contact-form::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(137, 12, 37, 0.15);
    border-radius: 50%;
    z-index: 0;
}

#contact-form .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

#contact-form .content .form {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

#contact-form .content .form input,
#contact-form .content .form select,
#contact-form .content .form button {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact-form .content .form input:hover,
#contact-form .content .form select:hover {
    border-color: #890c25;
    box-shadow: 0 0 8px rgba(137, 12, 37, 0.3);
}

#contact-form .content .form input:focus,
#contact-form .content .form select:focus {
    border-color: #890c25;
    outline: none;
    box-shadow: 0 0 8px rgba(137, 12, 37, 0.5);
}

#contact-form .content .form button {
    background-color: #890c25;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

#contact-form .content .form button:hover {
    background-color: #730a20;
    transform: scale(1.05);
}

#contact-form .content .form .label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
    position: relative;
}

#contact-form .content .form .label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2.5px;
    background: #890c25;
    margin-top: 3px;
    border-radius: 5px;
}

#map-location {
    margin-top: 5%;
}

#map-location .content {
    width: 80%;
    margin: auto;
}

#work-with-us {
    position: relative;
    /* margin-top: %; */
    background-image: url('../images/placements/work-with-us-front.webp');
    background-position: 10% 40%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#work-with-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#work-with-us h1 {
    position: relative;
    color: white;
    font-size: 2.5rem;
    z-index: 2;
}


#job-openings {
    margin: 5% auto;
    text-align: center;
}

#job-openings .heading h1 {
    font-size: 2.8rem;
    color: #212529;
    margin-bottom: 10px;
}

/* Content Box */
#job-openings .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

#job-openings .content .box {
    background-color: #fff;
    border: 2px solid #890c25;
    border-radius: 15px;
    width: 350px;
    margin: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

#job-openings .content .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Box Header */
#job-openings .content .box .box-header h3 {
    font-size: 1.8rem;
    color: #890c25;
    margin-bottom: 10px;
}

#job-openings .content .box .box-header .location {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* Job Details */
#job-openings .content .box .details {
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
}

#job-openings .content .box .details p {
    margin: 5px 0;
}

/* Buttons */
#job-openings .btns {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 30px;
}

#job-openings .btns button {
    padding: 5px 10px;
}

/* refer and earn */
#front-referandearn {
    margin-top: 5%;
}

#front-referandearn .content {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#front-referandearn .content .box1 {
    width: 25%;
    text-align: end;
    margin-top: 20%;
}

#front-referandearn .content .box1 #refer-icon-one {
    width: 15vh;
    position: absolute;
    left: 18%;
    top: 53%;
}

#front-referandearn .content .box1 #refer-icon-two {
    width: 30vh;
    position: absolute;
    top: 28%;
    left: 20%;
}

#front-referandearn .content .box2 {
    text-align: center;
    width: 60%;
    padding: 20px;
}

#front-referandearn .content .box2 h1 {
    color: #890C25;
    font-size: 50px;
    font-weight: 700;
}

#front-referandearn .content .box2 p {
    color: #890C25;
    font-size: 20px;
    font-weight: 700;
    text-align: end;
    margin-right: 150px;
}

#front-referandearn .content .box2 .text p {
    color: black;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 5px;
}

#front-referandearn .content .box2 .text button {
    margin-top: 50px;
}

#front-referandearn .content .box3 {
    width: 25%;
    text-align: start;
}

#front-referandearn .content .box3 #refer-icon-three {
    width: 35vh;
    position: absolute;
    left: 63%;
    top: 32%;
}

#front-referandearn .content .box3 #refer-icon-four {
    width: 15vh;
    position: absolute;
    left: 74%;
    top: 20%;
}


#how-it-works {
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 5%;
}

#how-it-works h2 {
    color: #890c25;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

#how-it-works h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #f2b5c8;
    margin: 10px auto;
    border-radius: 5px;
}

#how-it-works .subheading {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#how-it-works .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#how-it-works .step {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px 15px;
    width: 23%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

#how-it-works .step:hover {
    transform: translateY(-10px);
}

#how-it-works .step .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #890c25;
    color: white;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
}

#how-it-works .step .circle::after {
    content: "";
    width: 15px;
    height: 15px;
    background: #f2b5c8;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

#how-it-works .step h3 {
    color: #890c25;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

#how-it-works .step p {
    color: #666;
    font-size: 0.9rem;
}

#how-it-works .arrow {
    width: 40px;
    height: 2px;
    background: #890c25;
    position: relative;
    margin: 0 10px;
}

#how-it-works .arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #890c25;
    border-bottom: 2px solid #890c25;
    position: absolute;
    right: -6px;
    top: -4px;
    transform: rotate(-45deg);
}

#course-wise-benefit {
    margin-top: 5%;
}

#course-wise-benefit .content table {
    width: 80%;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #333;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#course-wise-benefit .content thead tr {
    background-color: #890c25;
    /* Primary color */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
}

#course-wise-benefit .content th,
.content td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

#course-wise-benefit .content tbody tr {
    transition: all 0.3s ease-in-out;
}

#course-wise-benefit .content tbody tr:nth-of-type(odd) {
    background-color: #fdf5f7;
}

#course-wise-benefit .content tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

#course-wise-benefit .content tbody tr:hover {
    background-color: #ffe3e8;
    transform: scale(1.02);
    cursor: pointer;
}

#course-wise-benefit .content td a {
    color: #890c25;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffe3e8;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

#course-wise-benefit .content td a:hover {
    background-color: #890c25;
    color: #fff;
    text-decoration: none;
}

#flex-refer-cta {
    margin: 60px auto;
    width: 90%;
    padding: 30px;
    background: #890c25;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
}

#flex-refer-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

#flex-refer-cta .cta-text {
    width: 65%;
    padding-right: 20px;
}

#flex-refer-cta .cta-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

#flex-refer-cta .cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

#flex-refer-cta .cta-action {
    width: 30%;
    text-align: right;
}

#flex-refer-cta .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #890c25;
    border: 2px solid #890c25;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 
body.no-scroll {
    overflow: hidden;
}

#refer-earn-pop-up,
.overlay {
 display: none; 
}

#refer-earn-pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 80%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.689);
    z-index: 1000;
}

#refer-earn-pop-up .cross {
    text-align: end;
}

#refer-earn-pop-up .cross img {
    width: 4vh;
    cursor: pointer;
}

#refer-earn-pop-up .form {
    background: rgb(253, 253, 253);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    height: 450px;
}

#refer-earn-pop-up .form .image {
    width: 50%;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    padding-left: 20px;
    background: #890c25;
}

#refer-earn-pop-up .form .image h1 {
    font-size: 60px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-shadow: 1px 1px 4px grey;
    
}

#refer-earn-pop-up .form .full-form {
    width: 50%;
    padding: 20px;
}

#refer-earn-pop-up .form .input-field {
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-bottom: 8px;
}

#refer-earn-pop-up .form .input-field h4 {
    font-size: 22px;
    color: rgb(37, 37, 37);
}

#refer-earn-pop-up .form .input-field label {
    font-size: 14px;
}

#refer-earn-pop-up .form .fields {
    margin-top: 20px;
}

#refer-earn-pop-up .form .input-field input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#refer-earn-pop-up .form .input-field select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#refer-earn-pop-up .form .sub-btn {
    margin-top: 20px;
}

#refer-earn-pop-up .form .sub-btn input {
    background: #890C25;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#refer-earn-pop-up .form .sub-btn input:hover {
    background: #640518;
}

#refer-earn-pop-up .form .create-account{
    text-align: end;
    width: 80%;
    margin: auto;
    margin-top: -10px;
}

#refer-earn-pop-up .form .create-account p a{
    text-decoration: none;
    font-size: 12px;
} */




/* insta application form */
#app-form {
    height: 200px;
    background: #890c25;
}

#app-form .content {
    text-align: center;
    margin-top: 140px;
}

#app-form .content h1 {
    font-weight: 700;
    font-size: 90px;
    word-spacing: 20px;
    color: #c6b08f;
    font-family: "Cantora One", sans-serif;
}


#app-contact-form {
    padding-bottom: 50px;
    text-align: center;
    margin-top: 50px;
    background-color: rgb(241, 241, 241);
}

#app-contact-form .form {
    margin-top: 50px;
    color: black;
}

#app-contact-form .form form .form-row {
    display: flex;
    justify-content: center;
    column-gap: 50px;
}

/* 
#contact-form .form form .form-row div{
    display: block;
} */

#app-contact-form .form form .form-row input {
    width: 450px;
    height: 45px;
    padding-left: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0);
}

#app-contact-form .form form .form-row input::placeholder {
    color: black;
}

#app-contact-form .form form .form-row {
    margin-top: 35px;
}

#app-contact-form .form form .form-row select {
    width: 450px;
    height: 45px;
    padding-left: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0);
}

#app-contact-form .form form .form-row #contact-form-submit {
    margin-top: 60px;
    border: none;
    border-radius: 40px;
    padding: 10px 15px;
    width: 200px;
    background: linear-gradient(90deg, #890c25, #d90445);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(137, 12, 37, 0.4);
}

#app-contact-form .form form .form-row #contact-form-submit:hover {
    background: linear-gradient(90deg, #d90445, #890c25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(137, 12, 37, 0.6);
}

/* brochure */

body.no-scroll {
    overflow: hidden;
}

#brochure-pop-up,
.brochure-overlay,
#pop-up,
.overlay {
    display: none;
}

#brochure-pop-up,
#pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 80%;
}

.brochure-overlay,
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.689);
    z-index: 1000;
}

#brochure-pop-up .brochure-cross,
#pop-up .cross {
    text-align: end;
}

#brochure-pop-up .brochure-cross img,
#pop-up .cross img {
    width: 4vh;
    cursor: pointer;
}

#brochure-pop-up .form,
#pop-up .form {
    background: rgb(253, 253, 253);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    display: flex;
}

#brochure-pop-up .form .image,
#pop-up .form .image {
    width: 50%;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#brochure-pop-up .form .image img,
#pop-up .form .image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#brochure-pop-up .form .full-form,
#pop-up .form .full-form {
    width: 50%;
    padding: 20px;
}

#brochure-pop-up .form .input-field,
#pop-up .form .input-field {
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-bottom: 8px;
}

#brochure-pop-up .form .input-field h4,
#pop-up .form .input-field h4 {
    font-size: 22px;
    color: rgb(37, 37, 37);
}

#brochure-pop-up .form .input-field label,
#pop-up .form .input-field label {
    font-size: 14px;
}

#brochure-pop-up .form .fields,
#pop-up .form .fields {
    margin-top: 20px;
}

#brochure-pop-up .form .input-field input,
#pop-up .form .input-field input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#brochure-pop-up .form .input-field select,
#pop-up .form .input-field select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#brochure-pop-up .form .sub-btn,
#pop-up .form .sub-btn {
    margin-top: 20px;
}

#brochure-pop-up .form .sub-btn input,
#pop-up .form .sub-btn input {
    background: #890C25;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#brochure-pop-up .form .sub-btn input:hover #pop-up .form .sub-btn input:hover {
    background: #640518;
}

/* video testi */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-container {
    position: relative;
}

#close-modal {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #890c25;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}

#certification {
    margin-top: 5%;
    padding: 0;
}

#certification .banner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

#certification .banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire div */
}

.certification-section {
    padding: 80px 0;
    text-align: center;
}

.certification-section .lead {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    opacity: 0.9;
}

/* Benefits Section */
.certification-section .benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.certification-section .benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    width: 250px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.certification-section .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.certification-section .benefit-card i {
    font-size: 30px;
    color: #ffcc00;
    margin-bottom: 10px;
}

/* Comparison Table */
.certification-section .comparison-table {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.certification-section .comparison-table h4 {
    color: #890c25;
    font-weight: bold;
    margin-bottom: 15px;
}

.certification-section .comparison-table th {
    background-color: #890c25;
    color: white;
    text-align: center;
}

.certification-section .comparison-table td {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.certification-section .comparison-table tr:hover {
    background: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #890c25, #450611);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-section .btn {
    background: #ffcc00;
    color: #890c25;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.hero-section .btn:hover {
    background: white;
    color: #890c25;
    transform: scale(1.05);
}

/* Certifications Grid */
#certifications {
    padding: 40px 10px;
    margin: auto;
}

.certification-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 5%;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.certification-card i {
    font-size: 40px;
    color: #890c25;
    margin-bottom: 10px;
}

/* Modal Styling */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    background: #890c25;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-footer .btn-primary {
    background: #890c25;
}

#demo-class {
    padding: 0;
}

#demo-class .content {
    display: flex;
    justify-content: center;
}

#demo-class .content .box1 {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    height: 100vh;
}

#demo-class .content .box1 h2 {
    color: white;
}

#demo-class .content .box2 {
    width: 30%;
    height: 100vh;
    overflow: scroll;
    padding-left: 15px;
}

#demo-class .content .box2 .message-box .message-heading {
    text-align: center;
    width: 95%;
    margin: auto;
    border-bottom: 1px solid rgba(208, 207, 207, 0.614);
    margin-top: 5%;
}

#demo-class .content .box2 .message-box .message-heading h3 {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#demo-class .content .box2 .message-box .reply {
    margin-top: 5%;
    padding-left: 10px;
}

#demo-class .content .box2 .message-box .reply .box {
    display: flex;
    justify-content: start;
    column-gap: 10px;
    margin-bottom: 4%;
}

#demo-class .content .box2 .message-box .reply .box .image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;
    border: 1px solid black;
    background: rgb(227, 227, 227);
}

#demo-class .content .box2 .message-box .reply .box .image-name {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    background: rgb(7, 146, 72);
}

#demo-class .content .box2 .message-box .reply .box .image img {
    width: 100%;
    height: 100%;
}

#demo-class .content .box2 .message-box .reply .box .image-name h6 {
    font-weight: 700;
    font-size: 14px;
    padding-top: 8px;
    font-family: sans-serif;
    color: white;
}

#demo-class .content .box2 .message-box .reply .box .text {
    width: 80%;
}

#demo-class .content .box2 .message-box .reply .box .text h5 {
    font-weight: 700;
    font-family: sans-serif;
    font-size: 14px;
    color: rgb(103, 98, 98);
}

#demo-class .content .box2 .message-box .reply .box .text p {
    font-size: 13.5px;
    font-family: sans-serif;
    font-weight: 600;
    color: #393939;
    margin-top: -5px;
}

/* Styling the form */
#demo-class .content .box1 .form {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 500px;
    text-align: center;
}

#demo-class-form {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

#demo-class .content .box1 .form form h2 span {
    font-size: 22px;
    font-weight: 700;
}

#demo-class .content .box1 .form form h2 {
    color: #890c25;
    margin-bottom: 20px;
    font-size: 18px;
}

#demo-class .content .box1 .form form {
    width: 90%;
    margin: auto;
}

#demo-class .content .box1 .form form .input-field {
    margin-bottom: 20px;
}

#demo-class .content .box1 .form form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: start;
    font-family: sans-serif;
}

#demo-class .content .box1 .form form input[type="text"],
#demo-class .content .box1 .form form input[type="tel"],
#demo-class .content .box1 .form form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: sans-serif;
}

#demo-class .content .box1 .form form input:focus {
    border-color: #890c25;
    outline: none;
}

#demo-class .content .box1 .form form button {
    width: 100%;
    padding: 12px;
    background-color: #890c25;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5%;
    transition: background-color 0.3s;
}

#demo-class .content .box1 .form form button:hover {
    background-color: #a11130;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#thank-you-video {
    width: 100%;
    height: 500px;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #890c25;
    /* Main color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#group-photo {
    background: url('../images/index/group-photo2.jpg');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    position: relative;
    background-position: 0% 35%;
}

#group-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #14141454;
    overflow: hidden;
}

#happy-faces {
    margin-top: 5%;
}

#happy-faces .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    width: 90%;
    margin: auto;
    margin-top: 40px;
}

#happy-faces .content .box {
    width: 14%;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;

}

#happy-faces .content .box img {
    width: 100%;
    object-fit: fill;

}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black background with opacity */
}

.modal .modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



#upcoming-batches {
    margin-top: 5%;
}

#upcoming-batches .batch-content {
    width: 80%;
    margin: auto;
}

#upcoming-batches .batch-content .content {
    margin-top: 50px;
}

#upcoming-batches .batch-content .content .branch-details {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid rgba(207, 207, 207, 0.571);
}


#upcoming-batches .batch-content .content .branch-details h6 {
    color: #890c25;
    width: 100%;
    background: rgba(226, 223, 223, 0.915);
    padding: 20px;
}

#upcoming-batches .batch-content .content .branch-details table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

#upcoming-batches .batch-content .content .branch-details thead {
    background-color: #890c25;
    color: #ffffff;
}

#upcoming-batches .batch-content .content .branch-details table th,
#upcoming-batches .batch-content .content .branch-details table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #dddddd;
}

#upcoming-batches .batch-content .content .branch-details table th {
    font-weight: bold;
    text-transform: uppercase;
}

#upcoming-batches .batch-content .content .branch-details table tbody tr:nth-of-type(even) {
    background-color: #f8f8f8;
}

#upcoming-batches .batch-content .content .branch-details table tbody tr:hover {
    background-color: #f1f1f1;
}

#upcoming-batches .batch-content .content .branch-details table td {
    color: #333;
}

#our-founder {
    margin-top: 5%;
}

#our-founder .content {
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: center;
    margin-top: 100px;
    background: rgba(220, 217, 217, 0.563);
    padding: 30px;
    border-radius: 10px;
}

#our-founder .content .box {
    width: 60%;
}

.founder-name h2 {
    color: #890c25;
}

.founder-name h6 {
    margin-top: -5px;
    color: grey;
}

#our-founder .content .box p {
    font-size: 18px;
    margin-top: 20px;
}

#our-founder .content .box1 {
    width: 40%;
    display: flex;
    justify-content: end;
}

#our-founder .content .box1 .image {
    width: 70%;
    height: 350px;
    margin-right: 30px;
}

#our-founder .content .box1 .image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

#other-founders {
    margin-top: 5%;
}

#other-founders .content {
    display: flex;
    justify-content: space-evenly;
}

#other-founders .content .box {
    width: 35%;
    border: 1px solid rgba(209, 207, 207, 0.57);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
}

#other-founders .content .box .image {
    width: 40vh;
    margin: auto;
}

#other-founders .content .box .image img {
    width: 100%;
}

#other-founders .content .box .text {
    margin-top: 20px;
}

/* certification-page */

#gg-certificate {
    margin-top: 50px;
    margin-bottom: 50px;
}

#gg-certificate .certificate marquee {
    white-space: fill;
    gap: 30px;
}

#gg-certificate .certificate marquee .box {
    display: inline-block;
    width: 35vh;
    border: 1px solid grey;
    margin-right: 15px;
}

#gg-certificate .certificate marquee .box img {
    width: 100%;
}

/* trainee */
#our-founder .content2 {
    display: flex;
    width: 90%;
    margin: auto;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 100px;
    background: rgba(220, 217, 217, 0.563);
    padding: 30px;
    border-radius: 10px;
}

#our-founder .content2 .box {
    width: 60%;
}

#our-founder .content2 .box p {
    font-size: 18px;
    margin-top: 25px;
}

#our-founder .content2 .box1 {
    width: 40%;
    display: flex;
    justify-content: start;
}

#our-founder .content2 .box1 .image {
    width: 70%;
    height: 350px;
    margin-right: 0px;
}

#our-founder .content2 .box1 .image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

#tools-calc {
    margin-top: 5%;
}

#tools-calc .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

#tools-calc .content a {
    width: 20%;
    height: 25vh;
    border: 1px solid rgba(193, 191, 191, 0.586);
    border-radius: 5px;
    padding: 20px;
    text-decoration: none;
    color: rgb(97, 96, 96);
    position: relative;
    overflow: hidden;
}

#tools-calc .content a .box {
    width: 90%;
}

#tools-calc .content a .box h4 {
    font-size: 18px;
}

#tools-calc .content a .box p {
    font-size: 14px;
    color: #292828;
}

#tools-calc .content a .image {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 100px;
    width: auto;
    padding: 0px;
}

#tools-calc .content a .image img {
    width: 10vh;
}

#roas-calc {
    margin-top: 5%;
    font-family: 'Poppins', sans-serif;
}


#roas-calc .container-fluid {
    width: 80%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

#roas-calc .heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

#roas-calc .content {
    display: flex;
    gap: 50px;
    width: 80%;
    margin: auto;
}

#roas-calc .box1 {
    /* flex:  */
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
}

#roas-calc .box2 {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    /* max-height: 0px; */
    overflow-y: auto;
    width: 55%;
}

#roas-calc form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

#roas-calc input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#roas-calc input:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.3);
}

#roas-calc button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#roas-calc button:hover {
    background: #0056b3;
}

#roas-calc h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}


/* Overlay effect */
body.overlay-active {
    overflow: hidden;
}

#opening-cta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.689);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

/* CTA container */
#opening-cta {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1000;
}

/* Show CTA */
#opening-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Cross Button */
#opening-cta .cross {
    /* position: absolute; */
    text-align: end;
    padding: 5px;
    cursor: pointer;
    z-index: 1002;
}

#opening-cta .cross img {
    width: 24px;
    height: 24px;
}

/* Main Content */
#opening-cta .main-content {
    background-color: white;
    max-width: 500px;
    margin: auto;
    padding: 30px 5px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Large Image */

#opening-cta .image {
    width: 80%;
    margin: auto;
}

#opening-cta .image img {
    width: 100%;
    /* height: auto; */
    border-radius: 6px;
}

/* Heading */
#opening-cta .heading h3 {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin: 15px 0;
}

/* Description */
#opening-cta .description {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

#opening-cta .description span {
    font-size: 35px;
    margin-top: -15px;
}

#opening-cta .description .box h2 {
    font-size: 18px;
    font-weight: 700;
    color: #c6b08f;
}

#opening-cta .description .box p {
    font-size: 12px;
}

/* Button */
#opening-cta .btns button {
    background-color: #890c25;
    color: #fff;
    font-size: 16px;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#opening-cta .btns button:hover {
    background-color: #67091b;
}

/* verify certifiacte */
#verify-certificate-banner {
    position: relative;
    height: 400px;
    background: url('../images/certificates/verify-certification-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#verify-certificate-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

#verify-certificate-banner .content {
    position: relative;
    z-index: 1; 
    text-align: center;
}

#verify-certificate-banner h1 {
    font-size: 60px;
    font-weight: bold;
    color: white;
}


#select-certificate {
    background: white;
    width: 40%;
    margin: auto;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    position: relative;
}

#select-certificate .content{
    padding: 30px;
}

#select-certificate .content h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 40px;
    transition: 0.3s;
}

.btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btns button {
    width: 350px;
    transition: 0.3s;
}

.btns button:hover {
    background: #a01030;
}

.certificate-form {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    text-align: center;
    position: relative;
}

.certificate-form select,
.certificate-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.certificate-form select {
    background: white;
    cursor: pointer;
}

.certificate-form input {
    border: 1px solid #890c25;
}

.certificate-form label {
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.certificate-form button{
    width: 200px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 2px 4px 6px grey;
}

/* Back Button */
.back-button {
    display: none;
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #890c25;
    background: none;
    border: none;
    outline: none;
}

.back-button img{
    width: 3vh;
}

.back-button:hover {
    color: #a01030;
}

.message-box {
    display: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.verified-image {
    max-width: 100px;
    margin-top: 10px;
}

/* add-certificate */
.certificate-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    margin-bottom: 100px;
    border-radius: 10px;
    box-shadow: rgba(137, 12, 37, 0.2) 0px 7px 29px 0px;
}

.certificate-container h2 {
    color: #890c25;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.certificate-container label {
    font-weight: 500;
    color: #333;
}

.form-control, .form-select {
    border: 1px solid #890c25;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus, .form-select:focus {
    border-color: #a01030;
    box-shadow: 0 0 5px rgba(137, 12, 37, 0.4);
}

.btn-submit {
    background: #890c25;
    color: white;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #a01030;
}