@font-face {
    font-family: "Inter_18pt-Regular";
    src: url("../Fonts/static/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter_18pt-ExtraLight";
    src: url("../Fonts/static/Inter_18pt-ExtraLight.ttf") format("truetype");
    font-weight: normal;
    font-style: thin;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter_18pt-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    margin-bottom: 0 !important;
}

/* custom container */
.container {
    padding: 0 6.13vw !important;
    max-width: 100%;
}

@media (min-width: 48rem) {
    .container {
        padding: 0 calc(1rem + 2vw) !important;
    }
}

/* navigation css started here */
.top-bar {
    background-color: #b31c1c;
    height: 41px;
}

header {
    background-color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease, top 0.3s ease;
    will-change: transform;
}

.navbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 30px 0px 0px;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.logo img {
    max-width: 295px;
    height: auto;
    width: 100%;
    display: block;
}

.nav-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 40px;
    /* margin-top: 121px; */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 20.7px);
    line-height: 100%;
    color: #000000;
    transition: color 0.2s ease;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #b31c1c;
    outline: none;
}

.bottom-border {
    border-bottom: 4px solid #a6a6a6;
    margin-top: 22px;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    z-index: 1100;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    padding: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Sidebar styles */
.sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.sidebar-logo img {
    max-width: 120px;
    height: auto;
    width: 100%;
}

.close-btn {
    font-size: 28px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.close-btn:hover,
.close-btn:focus {
    transform: scale(1.1);
    outline: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
    color: #b31c1c;
}

/* Responsive Sidebar for Mobile */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px !important;
    }

    .nav-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px !important;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        /* height: 100vh; */
        width: 85%;
        max-width: 320px;
        background-color: #fff;
        z-index: 1000;
        transform: translateX(-100%);
        flex-direction: column;
        padding: 80px 25px 30px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        margin: 0;
        will-change: transform;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .sidebar-header {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }

    .nav-links a {
        font-size: 18px;
        padding: 8px 0;
    }

    .bottom-border {
        display: none;
    }

    .hamburger {
        display: flex;
        position: relative;
    }

    .hamburger.active {
        transform: translateX(85%);
    }

    /* .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    } */

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .logo img {
        max-width: 140px;
    }

    .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        /* box-shadow: none; */
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 10px 18px;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 10px 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-container {
        width: 90%;
        padding: 70px 20px 25px;
    }

    .hamburger.active {
        transform: translateX(90%);
    }

    .nav-links a {
        font-size: 16px;
    }
}
/* navigation css Ended here */

/* Banner section css started here  */
.expo-wrapper {
    display: flex;
}

.expo-text-content {
    position: relative;
    width: 50%;
    background: transparent;
    z-index: 2;
    display: flex;
    align-items: center;
}

.expo-text-inner {
    position: relative;
    z-index: 3;
    color: #111;
    padding-left: 2rem;
}

.expo-image-slider {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.expo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blur Overlay on left side of image */
/* .expo-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    z-index: 1;
} */

/* Typography */
.expo-title {
    font-weight: 400;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.expo-date {
    font-size: clamp(20px, 3vw, 32px);
    font-size: 35.4px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #bb221c;
}

.expo-date span {
    display: inline-block;
}

@media (min-width: 992px) {
    .expo-text-content {
        padding-left: 70px;
    }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .expo-wrapper {
        flex-direction: column;
        height: auto;
    }

    .expo-text-content,
    .expo-image-slider {
        width: 100%;
        margin-top: 50px;
    }

    .expo-text-inner {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }

    .expo-blur-overlay {
        width: 100%;
        height: 100%;
        backdrop-filter: blur(20px);
    }

    .expo-title {
        font-size: 1.6rem;
    }

    .expo-date {
        font-size: 1rem;
    }
}

/* Banner section css Ended here  */

/* opportunities css started here */
.opportunities-section {
    padding: 60px 0;
    background-color: #fff;
}

.opportunity-card {
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.opportunity-card:hover {
    transform: scale(1.03);
}

.opportunity-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.opportunity-label {
    position: absolute;
    height: 50px;
    max-width: 180px;
    width: 100%;
    bottom: 15px;
    right: -10px;
    background-color: #d92332;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

/* Mobile font & label adjustment */
@media (max-width: 767.98px) {
    .opportunity-label {
        height: 40px;
        font-size: 16px;
        max-width: 140px;
        bottom: 10px;
    }

    .opportunity-card {
        margin-bottom: 0;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    animation: fadeUp 0.6s ease-out forwards;
}

/* about us section css started here  */
.about-mram {
    background: #fff;
}

/* .container-fluid.pe-0.ps-lg-5 {
    padding-right: 15px !important; 
} */

.about-title {
    writing-mode: vertical-rl;
    transform: rotate(360deg);
    font-weight: 400;
    font-size: 60px;
    color: rgba(0, 0, 0, 0.14);
    margin-right: 22px;
    line-height: 60px;
    letter-spacing: 1px;
    margin-top: 22px;
}

.mram-heading {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 124px;
    line-height: 142px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.mram-heading .red {
    color: #bb221c;
}

.mram-heading .blue {
    color: #152c7a;
    margin-top: -5px;
}

.subtitle {
    font-weight: 200;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    margin-top: 30px;
    max-width: 445px;
    font-family: "Inter_18pt-ExtraLight" !important;
}

/* Right Column Styles */
.text-box {
    background-color: #f4f4f4;
    border-radius: 37px 0 0 37px;
    padding: 29px 0 29px 29px;
    height: 100%;
}

.text-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    /* text-transform: capitalize; */
    color: #000000;
    margin-bottom: 20px;
    max-width: 600px;
}

.highlight-red {
    color: #bb221c;
    font-weight: 600;
}

.highlight-blue {
    color: #152c7a;
    font-weight: 600;
}

.text-box h5 {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin: 0px 0 15px 0;
    color: #000000;
}

/* Technology Grid */
.tech-grid-container {
    display: flex;
    margin-top: 70px;
    /* flex-wrap: wrap; */
    gap: 30px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.tech-item {
    padding: 8px 10px;
    border-left: 1px solid #bb221c;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-top: 20px;
    font-family: "Inter_18pt-ExtraLight";
}

.bottom-note {
    font-weight: 300;
    font-size: 14px;
    /* text-transform: capitalize; */
    margin-top: 30px;
    font-family: "Inter_18pt-ExtraLight";
    border-left: 1px solid #bb221c;
    padding: 0px 10px;
    max-width: 345px;
    /* margin-left: auto; */
}

/* Image adjustments */
.text-box img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Responsive Styles */
@media (max-width: 1399.98px) {
    .mram-heading {
        font-size: 100px;
        line-height: 110px;
    }
}

@media (max-width: 1199.98px) {
    .mram-heading {
        font-size: 80px;
        line-height: 90px;
    }
    .text-box {
        padding: 30px;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .mram-heading {
        font-size: 60px;
        line-height: 70px;
    }
    .about-title {
        font-size: 50px;
        line-height: 50px;
    }
    .subtitle {
        font-size: 18px;
        max-width: 100%;
    }
    .text-box {
        border-radius: 37px;
        margin-top: 40px;
    }
    .tech-grid-container {
        margin-top: 50px;
        flex-wrap: wrap;
    }
    /* .container-fluid.pe-0.ps-lg-5 {
        padding-left: 15px !important;
    } */
}

@media (max-width: 767.98px) {
    .about-title {
        /* writing-mode: horizontal-tb; */
        /* transform: none; */
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 40px;
    }
    .mram-heading {
        font-size: 50px;
        line-height: 55px;
        /* flex-direction: row;
        align-items: baseline; */
        gap: 10px;
    }
    .mram-heading .blue {
        margin-top: 0;
    }
    .subtitle {
        font-size: 16px;
        margin-top: 15px;
    }
    .text-box {
        padding: 25px;
    }
    .text-box p {
        font-size: 16px;
        line-height: 26px;
    }
    .text-box h5 {
        font-size: 28px;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid-container {
        margin-top: 30px;
        gap: 20px;
    }
    .bottom-note {
        margin-top: 20px;
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .mram-heading {
        font-size: 36px;
        line-height: 40px;
    }
    .about-title {
        font-size: 30px;
    }
    .text-box {
        padding: 20px;
        border-radius: 25px;
    }
    .text-box h5 {
        font-size: 24px;
    }
    .tech-item {
        font-size: 14px;
        margin-top: 15px;
    }
    .subtitle {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .mram-heading {
        font-size: 30px;
        line-height: 34px;
    }
    .about-title {
        font-size: 26px;
    }
    .text-box p {
        font-size: 15px;
        line-height: 24px;
    }
}
/* industry section css started here */
.industry-overview-section {
    width: 100%;
    overflow-x: hidden;
}

.industry-overview-row {
    background-color: #d9d9d959;
    margin-left: 0;
    margin-right: 0;
}

.industry-subtitle {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #000000;
}

.industry-title {
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #152c7a;
    margin-bottom: 32px;
}

.blue-box {
    background-color: #152c7acc;
}

.red-box {
    background-color: #bb221cc7;
}

.industry-box {
    transition: all 0.3s ease;
}

.industry-box.blue-box .industry-heading,
.industry-box.red-box .industry-heading {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    /* text-transform: uppercase; */
    margin-bottom: 15px;
    color: #ffffff;
}

.industry-box.blue-box .industry-paragraph,
.industry-box.red-box .industry-paragraph {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0%;
    /* text-transform: lowercase; */
    color: #ffffff;
    /* text-transform: uppercase; */
    margin-bottom: 15px;
    font-family: "Inter_18pt-ExtraLight";
}

.industry-box.blue-box .list-white,
.industry-box.red-box .list-white {
    background-color: #ffffff1a;
    margin-left: 0;
    padding-left: 0;
    list-style: none !important;
    padding: 18px 29px;
}

.industry-box .subheading {
    margin-top: 27px;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Inter_18pt-ExtraLight";
}

.mt-top{
    margin-top: 82px !important;
}

.industry-box.blue-box .list-white li,
.industry-box.red-box .list-white li {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-family: "Inter_18pt-ExtraLight";
    color: #ffffff;
    position: relative;
    padding-left: 5px;
}

.industry-box.blue-box .small,
.industry-box.red-box .small {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    /* text-transform: capitalize; */
    color: #ffffff;
    font-family: "Inter_18pt-ExtraLight";
}

.industry-paragraph {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0%;
    /* text-transform: lowercase; */
    color: #000000;
}

.industry-box ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.list-white li {
    color: #fff;
}
.Decorative-bars {
    width: 35%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 575.98px) {
    .Decorative-bars {
        display: none;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1399.98px) {
    .industry-title {
        font-size: 56px;
    }
}

@media (max-width: 1199.98px) {
    .industry-title {
        font-size: 48px;
    }

    .industry-box.blue-box .industry-heading,
    .industry-box.red-box .industry-heading {
        font-size: 18px;
    }

    .industry-box .subheading {
        font-size: 20px;
    }

    .industry-box.blue-box .list-white li,
    .industry-box.red-box .list-white li {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .industry-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .industry-subtitle {
        font-size: 18px;
    }

    .industry-overview-row {
        padding: 2rem 0rem !important;
    }

    .industry-box {
        padding: 1.5rem !important;
        margin-bottom: 20px;
    }

    .industry-box:last-child {
        margin-bottom: 0;
    }

    .industry-box.blue-box .industry-heading,
    .industry-box.red-box .industry-heading {
        font-size: 16px;
    }

    .industry-box .subheading {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .industry-box.blue-box .list-white li,
    .industry-box.red-box .list-white li {
        font-size: 15px;
    }

    .industry-paragraph {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .industry-title {
        font-size: 32px;
    }

    .industry-subtitle {
        font-size: 16px;
    }

    .industry-box {
        padding: 1.25rem !important;
    }

    .industry-box.blue-box .industry-heading,
    .industry-box.red-box .industry-heading {
        font-size: 15px;
    }

    .industry-box .subheading {
        font-size: 16px;
    }

    .industry-box.blue-box .list-white,
    .industry-box.red-box .list-white {
        padding: 12px 20px;
    }

    .industry-box.blue-box .list-white li,
    .industry-box.red-box .list-white li {
        font-size: 14px;
    }

    .industry-box.blue-box .small,
    .industry-box.red-box .small {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .industry-title {
        font-size: 26px;
        line-height: 120%;
    }

    .industry-subtitle {
        font-size: 14px;
    }

    .industry-box {
        padding: 1rem !important;
    }

    .industry-box.blue-box .industry-heading,
    .industry-box.red-box .industry-heading {
        font-size: 14px;
    }

    .industry-box .subheading {
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 12px;
    }

    .industry-box.blue-box .list-white,
    .industry-box.red-box .list-white {
        padding: 10px 15px;
    }

    .industry-box.blue-box .list-white li,
    .industry-box.red-box .list-white li {
        font-size: 13px;
        padding-left: 15px;
    }

    .industry-box.blue-box .small,
    .industry-box.red-box .small {
        font-size: 12px;
    }

    .industry-paragraph {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .industry-title {
        font-size: 22px;
    }

    .industry-box.blue-box .industry-heading,
    .industry-box.red-box .industry-heading {
        font-size: 13px;
    }

    .industry-box .subheading {
        font-size: 14px;
    }
}

/* why mrm section css started here */
.why-mram-section {
    padding: 60px 0;
}

.why-mram-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.why-text {
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #152c7a6e;
}

.why-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.why-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #b3b3b3;
}

.why-title .mram-text {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #bb221c;
    font-family: "Inter_18pt-Regular";
}

.why-title .subtitle {
    font-weight: 300;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #a6a6a6;
}

.why-content-box {
    margin-top: 40px;
}

.img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #bb221c;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.why-card {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 20px;
    border-left: 2px solid hsl(2, 74%, 42%);
    border-bottom: 2px solid #bb221c;
    padding-left: 38px;
    align-items: center;
    background-color: #fff;
}

.why-card .content-title {
    font-weight: 300;
    font-size: 36px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #152c7a;
    margin-bottom: 8px;
    font-family: "Inter_18pt-ExtraLight";
}

.why-card .content-desc {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0%;
    /* text-transform: capitalize; */
    color: #000000;
}

.why-card .img-box img {
    width: 100%;
    height: 284px;
    display: block;
    object-fit: cover;
}

/* Responsive Breakpoints */
@media (max-width: 1399.98px) {
    .why-card {
        grid-template-columns: 1fr 400px;
    }

    .why-card .content-title {
        font-size: 32px;
    }

    .why-card .content-desc {
        font-size: 18px;
    }
}

@media (max-width: 1199.98px) {
    .why-text {
        font-size: 72px;
    }

    .why-title .mram-text,
    .why-title .subtitle {
        font-size: 36px;
    }

    .why-card {
        grid-template-columns: 1fr 350px;
    }

    .why-card .content-title {
        font-size: 28px;
    }

    .why-card .img-box img {
        height: 220px;
    }
}

@media (max-width: 991.98px) {
    .why-mram-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-text {
        font-size: 60px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-title .mram-text,
    .why-title .subtitle {
        font-size: 32px;
    }

    .why-card {
        grid-template-columns: 1fr;
        padding-left: 25px;
        gap: 15px;
    }

    .why-card .img-box img {
        height: auto;
        max-height: 300px;
    }

    .why-content-box {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .why-mram-section {
        padding: 40px 0;
    }

    .why-text {
        font-size: 48px;
    }

    .why-title .mram-text,
    .why-title .subtitle {
        font-size: 28px;
    }

    .why-card {
        padding-left: 25px;
    }

    .why-card .content-title {
        font-size: 24px;
    }

    .why-card .content-desc {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .why-text {
        font-size: 36px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-title .mram-text,
    .why-title .subtitle {
        font-size: 22px;
    }

    .why-card {
        padding-left: 25px;
        border-left-width: 1px;
        border-bottom-width: 1px;
    }

    .why-card .content-title {
        font-size: 20px;
    }

    .why-card .content-desc {
        font-size: 14px;
    }

    .why-right {
        gap: 30px;
    }
}

@media (max-width: 375px) {
    .why-text {
        font-size: 32px;
    }

    .why-title .mram-text,
    .why-title .subtitle {
        font-size: 18px;
    }

    .why-card .content-title {
        font-size: 18px;
    }
}

/* launchpad section started here */
.launchpad-section {
    padding: 60px 0;
    background-color: #fff;
}

.launchpad-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* Changed from center to stretch for equal height */
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.launchpad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.launchpad-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.launchpad-content h2 {
    font-weight: 400;
    font-size: 49px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000000;
    padding: 40px 54px 20px;
    line-height: 1.2;
}

.launchpad-content .highlight {
    color: #bb221c;
}

.launchpad-box {
    background-color: #152c7ae8;
    padding: 40px 54px;
}

.launchpad-box ul {
    /* list-style: none; */
    margin: 0;
    padding: 0;
}

.launchpad-box ul li {
    font-weight: 400;
    font-size: 21px;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding-left: 21px;
    margin-bottom: 13px;
    position: relative;
    line-height: 1.4;
}

/* Responsive Breakpoints */
@media (max-width: 1399.98px) {
    .launchpad-content h2 {
        font-size: 42px;
        padding: 30px 40px 15px;
    }

    .launchpad-box {
        padding: 30px 40px;
    }

    .launchpad-box ul li {
        font-size: 19px;
    }
}

@media (max-width: 1199.98px) {
    .launchpad-content h2 {
        font-size: 36px;
        padding: 25px 30px 15px;
    }

    .launchpad-box {
        padding: 25px 30px;
    }

    .launchpad-box ul li {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991.98px) {
    .launchpad-container {
        grid-template-columns: 1fr;
    }

    .launchpad-image {
        height: 400px; /* Fixed height for image on tablet */
    }

    .launchpad-content h2 {
        font-size: 32px;
        padding: 30px 25px 15px;
    }

    .launchpad-box {
        padding: 25px;
    }

    .launchpad-box ul li {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .launchpad-section {
        padding: 40px 0;
    }

    .launchpad-image {
        height: 350px;
    }

    .launchpad-content h2 {
        font-size: 28px;
        padding: 25px 20px 15px;
    }

    .launchpad-box {
        padding: 20px;
    }

    .launchpad-box ul li {
        font-size: 15px;
        padding-left: 25px;
    }
}

@media (max-width: 575.98px) {
    .launchpad-image {
        height: 300px;
    }

    .launchpad-content h2 {
        font-size: 24px;
        padding: 20px 15px 10px;
    }

    .launchpad-box {
        padding: 15px;
    }

    .launchpad-box ul li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .launchpad-box ul li::before {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .launchpad-image {
        height: 250px;
    }

    .launchpad-content h2 {
        font-size: 20px;
        padding: 15px 12px 8px;
    }

    .launchpad-box ul li {
        font-size: 13px;
        padding-left: 18px;
    }
}

/* Why Exhibit Section - Fully Responsive */
.why-exhibit-section {
    background: #fff;
    padding: 0 20px 60px;
    position: relative;
    /* overflow: hidden; */
}

.why-exhibit-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-exhibit-header {
    /* margin-bottom: 60px; */
    /* max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; */
}

.why-exhibit-title {
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.why-exhibit-title .highlight {
    color: #bb221c;
}

.why-exhibit-subtitle {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    font-family: "Inter_18pt-ExtraLight";
}

.why-exhibit-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.why-exhibit-cards-column {
    display: flex;
    flex-direction: column;
}

.why-exhibit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 16px;
}

.why-exhibit-card {
    background-color: #152c7acc;
    color: #fff;
    padding: 30px;
    min-height: 201px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.why-exhibit-card:hover {
    transform: translateY(-5px);
}

.why-exhibit-card-content h3 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
    color: #ffffff;
}

.why-exhibit-card-content p {
    font-weight: 300;
    font-size: 16px;
    /* text-transform: capitalize; */
    font-family: "Inter_18pt-ExtraLight";
    line-height: 1.5;
}

.why-exhibit-card-icon {
    position: absolute;
    bottom: -18px;
    left: -5px;
    width: 80px;
    height: 86px;
    z-index: 1;
}

.why-exhibit-map-column {
    position: sticky;
    top: 100px;
    height: 100%;
}

.why-exhibit-map {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.why-exhibit-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 800px;
}

.exhibit-devider {
    max-width: 850px;
    width: 100%;
    height: 2px;
    background-color: #b31c1c;
    position: absolute;
    right: 0;
    bottom: 0px;
}

.why-exhibit-polygon {
    position: absolute;
    right: 0;
    /* top: -230px; */
    z-index: 1;
    max-width: 300px;
}

/* Responsive Breakpoints */
@media (max-width: 1399.98px) {
    .why-exhibit-title {
        font-size: 56px;
    }

    .why-exhibit-map-column {
        top: 80px;
    }
}

@media (max-width: 1199.98px) {
    .why-exhibit-title {
        font-size: 48px;
    }

    .why-exhibit-card {
        padding: 25px;
    }

    .why-exhibit-card-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .why-exhibit-card-content p {
        font-size: 15px;
    }

    .why-exhibit-map-column {
        top: 60px;
    }
}

@media (max-width: 991.98px) {
    .why-exhibit-columns {
        grid-template-columns: 1fr;
    }

    .why-exhibit-map-column {
        position: relative;
        top: auto;
        order: -1;
        margin-bottom: 40px;
    }

    .why-exhibit-map img {
        max-height: 500px;
        margin: 0 auto;
    }

    .why-exhibit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-exhibit-title {
        font-size: 42px;
    }

    .why-exhibit-polygon {
        top: 0px;
        max-width: 250px;
    }
}

@media (max-width: 767.98px) {
    .why-exhibit-section {
        padding: 0 15px 40px;
    }

    .why-exhibit-header {
        margin-bottom: 40px;
    }

    .why-exhibit-title {
        font-size: 36px;
    }

    .why-exhibit-subtitle {
        font-size: 18px;
    }

    .why-exhibit-card {
        min-height: 180px;
        padding: 20px;
    }

    .why-exhibit-card-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .why-exhibit-card-icon {
        width: 45px;
        height: 45px;
        bottom: -9px;
        left: -3px;
    }

    .exhibit-devider {
        bottom: 20px;
    }

    .why-exhibit-polygon {
        top: 0px;
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .why-exhibit-title {
        font-size: 32px;
    }

    .why-exhibit-subtitle {
        font-size: 16px;
    }

    .why-exhibit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-exhibit-card {
        min-height: auto;
    }

    .why-exhibit-card-content h3 {
        font-size: 18px;
    }

    .why-exhibit-card-content p {
        font-size: 14px;
    }

    .why-exhibit-polygon {
        top: 0px;
        max-width: 150px;
    }
}

@media (max-width: 375px) {
    .why-exhibit-title {
        font-size: 28px;
    }

    .why-exhibit-subtitle {
        font-size: 15px;
    }

    .why-exhibit-card {
        padding: 15px;
    }

    .why-exhibit-card-icon {
        width: 45px;
        height: 45px;
        bottom: -9px;
        left: -3px;
    }

    .exhibit-devider {
        bottom: 15px;
    }
}

/* Alternate Layout for Exhibitor Profile (Image Reference) */

/* Exhibitor Profile - Responsive with Vertical Stack on Mobile */
.exhibitor-profile-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.exhibitor-container {
    position: relative;
    /* max-width: 1440px; */
    margin: 0 auto;
}

.exhibitor-header {
    position: relative;
}

.exhibitor-header h2 {
    font-size: 64px;
    text-transform: uppercase;
    color: #152c7a;
    margin-bottom: 20px;
    font-family: "Inter_18pt-ExtraLight";
    line-height: 1.2;
}

.exhibitor-header .red {
    color: #d10b2f;
    font-weight: 600;
    font-family: "Inter_18pt-Regular";
}

.exhibitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.exhibitor-content p {
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #898989;
    text-align: left;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}
.exhibitor-feature-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 4px 4px 4px 5px #0000001c;
}

.exhibitor-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.exhibitor-feature-top h3 {
    font-size: 19px;
    color: #152c7a;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    line-height: 26px;
}

.exhibitor-feature-img {
    max-width: 120px;
    flex-shrink: 0;
}

.exhibitor-feature-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.exhibitor-feature-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    color: #000000;
    columns: 2;
    column-gap: 40px;
}

.exhibitor-feature-content ul li {
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
    text-transform: uppercase;
    break-inside: avoid;
    color: #000000;
    /* font-family: "Inter_18pt-ExtraLight"; */
}

.exhibitor-footer-text {
    text-align: center;
    margin-top: 50px;
}

.exhibitor-footer-text p {
    color: #555;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Adjustments - Mobile First Approach */
@media (max-width: 991.98px) {
    .exhibitor-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .full-width-text {
        grid-column: 1;
    }

    .exhibitor-card {
        flex-direction: row; /* Maintain side-by-side layout */
        min-height: auto;
        padding: 10px;
    }

    .exhibitor-sub-container {
        grid-template-columns: 1fr;
    }

    /* .exhibitor-img img {
    max-width: 80px;
  } */
}

@media (max-width: 767.98px) {
    .exhibitor-profile-section {
        padding: 0px 0px;
    }

    .exhibitor-header h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .exhibitor-content h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .full-width-text .exhibitor-content p {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .exhibitor-card {
        flex-direction: column;
        padding: 10px;
        border-radius: 25px;
    }

    .exhibitor-sub-container {
        grid-template-columns: 1fr;
    }

    .exhibitor-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .exhibitor-content p {
        font-size: 14px;
    }

    .exhibitor-img {
        margin-top: 15px;
    }

    .exhibitor-img img {
        max-width: 100px;
    }

    .full-width-text .exhibitor-content p {
        font-size: 16px;
    }

    .exhibitor-feature-img {
        max-width: 88px;
    }

    .exhibitor-feature-top h3 {
        font-size: 15px;
        line-height: 24px;
    }

    .exhibitor-feature-content ul li {
        font-size: 10px;
    }
}

@media (max-width: 375px) {
    .exhibitor-header h2 {
        font-size: 32px;
    }

    .exhibitor-content h3 {
        font-size: 16px;
    }

    .exhibitor-content p {
        font-size: 13px;
    }
}

/* visitor profile section css started here */
.visitor-profile-section {
    /* padding: 0rem 1rem 4rem; */
    background-color: #fff;
}

.visitor-profile-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.visitor-profile-title {
    font-size: 64px;
    text-transform: uppercase;
    color: #152c7a;
    margin-bottom: 20px;
    font-family: "Inter_18pt-ExtraLight";
    line-height: 1.2;
    text-align: left;
}

.visitor-profile-highlight {
    color: #d10b2f;
    font-weight: 600;
    font-family: "Inter_18pt-Regular", sans-serif;
}

.visitor-subtext,
.visitor-profile-description {
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #898989;
    text-align: left;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}

.text-center {
    text-align: center;
}

/* Grid Layout */
.visitor-profile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Cards */
.visitor-card,
.visitor-profile-card {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #152c7acf;
    border-radius: 9px;
    box-shadow: 4px 4px 4px 5px #0000001c;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.visitor-profile-card-red {
    flex: 1 1 100%;
    max-width: 100%;
    background: #bb221cc7;
    color: white;
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: 12px;
    display: block;
}

.visitor-profile-card-red ul {
    padding-left: 25px;
    list-style: disc;
}

.visitor-profile-card-red ul li.visitor-profile-item {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-transform: capitalize;
    color: #ffffff;
    font-family: "Inter_18pt-ExtraLight", sans-serif;
    margin-bottom: 16px;
    font-size: 21px;
}

/* Card Titles */
.visitor-profile-card-title {
    font-weight: 300;
    font-size: 29px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #ffffff;
    margin-bottom: 39px;
    font-family: "Inter_18pt-ExtraLight", sans-serif;
    margin-bottom: 39px;
}

/* Card List */
.visitor-profile-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.visitor-profile-item {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-transform: capitalize;
    color: #ffffff;
    font-family: "Inter_18pt-ExtraLight", sans-serif;
    margin-bottom: 10px;
}

.visitor-profile-card-red .visitor-profile-item {
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .visitor-profile-section {
        padding: 2rem 0rem;
    }

    .visitor-profile-header {
        margin-bottom: 1.5rem;
    }

    .visitor-profile-card {
        padding: 1.5rem;
    }

    .visitor-card-grid,
    .visitor-profile-grid {
        grid-template-columns: 1fr;
    }

    .visitor-profile-card-title {
        font-size: 23px;
        margin-bottom: 39px;
    }

    .visitor-profile-card-red ul li.visitor-profile-item {
        font-size: 17px;
    }

    .visitor-profile-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
}

/* strategic features css started here */
.strategic-features-section {
    padding: 40px 20px;
}

.strategic-title {
    font-weight: 100;
    font-size: 64px;
    line-height: 74px;
    text-transform: uppercase;
    color: #bb221c;
    font-family: "Inter_18pt-ExtraLight" !important;
}

.strategic-title span {
    font-family: "Inter_18pt-Regular" !important;
    color: #152c7acf;
}

.feature-box {
    border: 1px solid #ddd;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 16px;
    min-height: 200px;
}

.focused-exhibition {
    background-color: #152c7ae8;
    color: #ffffff;
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
}

.featured-devider {
    border: 2px solid #152c7ae8;
    margin: 15px 0;
}

.vip-inauguration {
    background-color: #898989;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.vip-delegations {
    background-color: #999c9e;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.vip-inauguration .title,
.vip-delegations .subtitle {
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 0;
}

.b2b-meetings {
    background-color: #bb221cde;
    color: #ffffff;
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
}

.technical-seminars {
    background-color: #152c7a;
    color: white;
}

.technical-seminars p {
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.networking-dinner {
    background-color: #898989;
    color: white;
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
}

.digital-platform {
    background-color: #bb221cc7;
    color: white;
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
}

.organized-by {
    font-weight: 300;
    font-size: 20px;
    text-transform: capitalize;
    color: #000000;
}

.organized-by img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .strategic-title {
        font-size: 54px;
        line-height: 64px;
    }
    .feature-box {
        min-height: 180px;
        font-size: 22px;
    }
}

@media (max-width: 991.98px) {
    .strategic-title {
        font-size: 48px;
        line-height: 58px;
    }
    .feature-box {
        min-height: 160px;
        font-size: 20px;
        padding: 15px;
    }
}

@media (max-width: 767.98px) {
    .strategic-title {
        text-align: center;
        margin-bottom: 20px;
        font-size: 42px;
        line-height: 52px;
    }

    .organized-by {
        text-align: center;
        margin-bottom: 30px;
    }

    .organized-by img {
        margin: 0 auto;
    }

    .feature-box {
        min-height: 140px;
        font-size: 18px;
        padding: 12px;
    }

    .vip-inauguration .title,
    .vip-inauguration .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .strategic-title {
        font-size: 36px;
        line-height: 46px;
    }

    .feature-box {
        min-height: 120px;
        font-size: 16px;
    }

    .vip-inauguration .title,
    .vip-inauguration .subtitle {
        font-size: 18px;
    }

    .featured-devider {
        margin: 10px 0;
    }
}

@media (max-width: 400px) {
    .strategic-title {
        font-size: 30px;
        line-height: 40px;
    }

    .feature-box {
        min-height: 100px;
        font-size: 14px;
    }

    .vip-inauguration .title,
    .vip-inauguration .subtitle {
        font-size: 16px;
    }
}

/* exhibitor form css started here */
#registration-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 100px;
}

#registration-form .row {
    background-color: #f5f6f9;
    padding: 50px 20px;
    border-radius: 25px;
}

#registration-form h2 {
    font-weight: 500;
    font-style: Medium;
    font-size: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #000000;
}

#registration-form p {
    text-align: left;
    /* margin-bottom: 15px; */
}

#registration-form .form-label {
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 20.7px);
    line-height: 100%;
    color: #000000;
    transition: color 0.2s ease;
    display: inline-block;
    margin-bottom: 10px;
}

#registration-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    height: 50px;
    padding-left: 19px;
    padding-top: 11px;
}

#registration-form .form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}
#registration-form .form-check {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding-left: 0;
}

#registration-form .form-check-input {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

[type="checkbox"] {
    width: 28px;
    height: 27px;
    margin-right: 18px;
}

.form-check-input label {
    display: flex;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(16px, 1.3vw, 20.7px);
    color: #000000;
    transition: color 0.2s ease;
    align-items: center;
    margin-top: 20px;
}

.wpcf7-list-item {
    margin: 0;
}

#registration-form .form-disclaimer {
    font-size: 0.95rem;
    color: #555;
}

#registration-form .btn-primary {
    background: #152c7a;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

#registration-form .btn-primary:hover {
    background: #0056b3;
}

.form-disclaimer p {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    #registration-form {
        padding: 22px;
    }

    #registration-form .row {
        padding: 50px 0px;
    }

    #registration-form .row {
        padding: 35px 0px 0;
    }
}
.footer {
    background-color: #fff;
}

.footer-title {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.footer ul {
    padding-left: 0;
    margin-left: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 0.6rem;
}

.footer ul li a {
    font-weight: 500;
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer p {
    font-size: 14px;
    margin-bottom: 0.6rem;
    color: #000;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.organiser-section {
    background-color: #fff;
}

.organiser-heading {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #000000;
}

.organiser-link {
    color: #1a58d3;
    text-decoration: none;
    font-size: 13px;
}

.organiser-link:hover {
    text-decoration: underline;
}

.address {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #000000ba;
}

.address strong {
    font-size: 14px;
    margin-bottom: 1rem;
}

.footer-devider {
    width: 100%;
    height: 2px;
    background-color: #b31c1c;
    opacity: 1;
}

.common-btn {
    background-color: #152c7a;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 13px 24px;
    text-decoration: none;
}
