@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

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

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

/* navigation bar css started here */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.navbar-brand.show-logo {
    opacity: 1;
}

.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-brand img {
    height: 67px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    flex-direction: row;
    border-radius: 10px;
    background: #d52737;
}

.navbar-nav li a {
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
}
.navbar-nav li a:hover {
    background: #d52737;
    border-radius: 10px;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.close-btn {
    display: none;
}

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 0;
        left: -300px;
        height: 100%;
        width: 300px;
        flex-direction: column;
        background: #d82127;
        border-radius: 0;
        padding-top: 60px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    .navbar-nav.active {
        left: 0;
    }

    .close-btn {
        position: absolute;
        top: -14px;
        right: -15px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        background: none;
        border: none;
        display: block;
    }

    .navbar-nav li {
        margin: 0;
    }

    .navbar-nav li a {
        width: 100%;
        display: block;
        padding: 15px 20px;
        color: white;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
    }
    .navbar-nav li a:hover {
        background: #b4171d;
    }

    .hamburger {
        display: block;
        color: #d52737;
        font-size: 28px;
        cursor: pointer;
        z-index: 1001;
    }

    .navbar-brand img {
        height: 41px;
    }
}

/* Default (Large devices ≥1024px) — your original stays */
.banner-container {
    display: grid;
    grid-template-columns: 44% 50%;
    gap: 90px;
}

.left-container {
    display: flex;
    flex-direction: column;
    padding: 100px 0 100px 50px;
    justify-content: center;
    height: 100%;
}

.left-container div,
.right-image div {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 8px 0;
}

.left-container div h1,
.left-container div h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #0e4661;
    line-height: 53px;
}

.div3 p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-align: justify;
    color: #000000;
    margin-bottom: .5em;
}

.right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
    display: block;
}

.banner-logo {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Extra-large devices ≥1440px — more breathing room */
@media (min-width: 1440px) {
    .banner-container {
        grid-template-columns: 42% 52%;
        gap: 90px;
    }
    .left-container {
        padding-left: 50px;
    }
    .left-container div h1 {
        font-size: 48px;
        line-height: 60px;
    }
    .div3 p {
        font-size: 22px;
    }
    .banner-logo {
        width: 40%;
    }
}

/* Small devices <768px — stacked layout */
@media (max-width: 767px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .left-container {
        padding: 40px 20px;
    }
    .left-container div h1 {
        font-size: 28px;
        line-height: 38px;
    }
    .div3 p {
        font-size: 16px;
    }
    .banner-logo {
        width: 70%;
    }
    .right-image img {
        border-radius: 20px;
        height: auto;
    }
}

/* banner section end */

.about-section {
    background-color: #d32f2f;
    color: #fff;
    padding: 40px 0px;
}

.about-title {
    padding-left: 50px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-title::after {
    content: "";
    flex-grow: 1;
    border-bottom: 2px solid #fff;
}

.about-content {
    padding-left: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
}

/* Left text section */
.about-text {
    flex: 0 0 40%; /* 40% width for text */
}

.about-text p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-align: justify;
    color: white;
}

/* Right image container */
.about-images {
    flex: 0 0 57%;
    display: flex;
    flex-wrap: nowrap;
    margin-left: 0%;
    gap: 2%;
}

.about-images img {
    object-fit: cover;
}

/* Percentage widths based on original proportions */
.about-images img:nth-child(1) {
    width: 28%; /* 365px / (365+380+506) ≈ 28% */
    height: 100%;
}

.about-images img:nth-child(2) {
    width: 29%; /* 380px / total */
    height: 100%;
}

.about-images img:nth-child(3) {
    width: 39%; /* 506px / total */
    height: 100%;
}

/* Tablet view (e.g. 768px–1024px) */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        flex: 0 0 100%;
        width: 100%;
    }

    .about-images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-images img {
        height: auto; /* Let height adjust naturally */
    }

    /* First two images side by side */
    .about-images img:nth-child(1),
    .about-images img:nth-child(2) {
        width: 40%; /* side-by-side */
        gap: 5%; /* space between them */
    }

    /* Third image full width */
    .about-images img:nth-child(3) {
        width: 100%;
        margin: 20px;
    }
}

/* Mobile view (e.g. below 768px) */
@media (max-width: 768px) {
    .about-images {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .about-title {
        padding: 20px !important;
        margin-bottom: 0px !important;
    }
    .about-content {
        padding: 0px 20px !important;
    }

    .about-images img {
        width: 100% !important;
        /* justify-content: center; */
        align-items: center;
    }

    .about-images img:nth-child(3) {
        width: 100%;

        margin: 0;
    }
}

/* why us section started here */
.why-us-section {
    background-color: #0e4c63; /* Dark blue background */
    padding: 40px 0;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 50px;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    color: white;
}

.section-header hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

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

.card {
    background: white;
    color: #000;
    padding: 37px;
    border-radius: 31px;
    font-size: 15px;
    line-height: 1.5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-tall {
    display: flex;
    align-items: center;
}

.card-tall p {
    font-family: "Inter", sans-serif;
    font-size: 21px !important;
    color: #000000;
    margin-bottom: 0;
}

.card p {
    font-size: 16px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

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

    .card {
        padding: 26px;
        border-radius: 20px;
    }
}

/* Why This Expo Is Critical section css started here */
.expo-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}

.expo-text {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
    box-sizing: border-box;
}

.expo-text h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 45px;
    padding-left: 75px;
    color: #0e4661;
}

.expo-paragraph {
    background-color: #f7f7f7;
    padding-left: 75px;
}

.expo-paragraph p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 24px;
    text-align: justify;
    padding: 20px 14px 20px 0px;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
}

.expo-image {
    flex: 0 0 41.6667%; /* 5/12 */
    max-width: 41.6667%;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

/* Responsive - Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .expo-text h2 {
        font-size: 42px;
        padding-left: 50px;
    }
    .expo-paragraph {
        padding-left: 50px;
    }
    .expo-paragraph p {
        font-size: 20px;
    }
}

/* Responsive - Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .expo-text,
    .expo-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .expo-text h2 {
        font-size: 36px;
        padding-left: 20px;
    }
    .expo-paragraph {
        padding: 20px 20px;
    }
    .expo-paragraph p {
        font-size: 18px;
        padding-right: 0;
    }
    .expo-image {
        min-height: 250px;
    }
}

/* Responsive - Mobile (480px and below) */
@media (max-width: 480px) {
    .expo-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    .expo-paragraph p {
        font-size: 16px;
        line-height: 1.5;
    }
}
/* SSPE Section */
.sspe-section {
    margin-top: 100px;
}

.sspe-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sspe-item {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sspe-item img {
    width: 100%;
    display: block;
}

.sspe-item p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-align: justify;
    padding: 22px 25px;
    color: #000;
    background: #f4f8fb;
    margin: 0;
    flex: 1;
}

.sspe-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px;
}

.sspe-highlight h2 {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-align: center;
    color: #0e4661;
    border-top: 2px solid #e21c23;
    padding: 20px 0;
    border-bottom: 2px solid #e21c23;
    line-height: 50px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sspe-item {
        flex: 1 1 calc(50% - 30px);
    }
    .sspe-highlight h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .sspe-item {
        flex: 1 1 100%;
    }
}

/* Exhibitor Section css started here */
.exhibitor-section {
    margin: 50px auto;
    padding-left: 50px;
    box-sizing: border-box;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.section-heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #e21c23;
}

.exhibitor-wrapper {
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.exhibitor-item {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.exhibitor-image {
    flex: 0 0 387.2px;
    max-width: 387.2px;
    border-radius: 12px;
    overflow: hidden;
}

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

.exhibitor-content {
    flex: 1;
    background: #0084ff1a;
    border-radius: 32px 0 0 32px;
    padding: 20px 60px;
    box-sizing: border-box;
}

.exhibitor-content h3 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #0e4661;
    margin-bottom: 10px;
}

.exhibitor-content ul {
    list-style-type: disc;
    padding-left: 22px;
    margin: 0;
}

.exhibitor-content ul li {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 18px;
    color: #000000;
}

@media (max-width: 1024px) {
    .exhibitor-item {
        flex-direction: column;
        gap: 20px;
    }
    .exhibitor-image {
        flex: none;
        max-width: 100%;
        height: auto;
    }
    .exhibitor-content {
        border-radius: 0 0 14px 14px;
        padding: 20px 30px;
    }
    .section-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .exhibitor-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .exhibitor-content {
        padding: 15px 20px;
    }
    .exhibitor-content h3 {
        font-size: 22px;
    }
    .exhibitor-content ul li {
        font-size: 16px;
    }
    .section-heading {
        gap: 20px;
    }
    .section-heading h2 {
        font-size: 24px;
        white-space: normal;
    }

    .exhibitor-wrapper {
        gap: 25px;
    }
}

/* visitor section css started here */
.visitor-section {
    margin: 50px auto;
    box-sizing: border-box;
}

.visitor-heading {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    padding-left: 50px;
}

.visitor-heading h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.visitor-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #e21c23;
}

.visitor-item {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
}

.visitor-image {
    flex: 0 0 387.2px;
    max-width: 299.2px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: -70px;
}

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

.visitor-content {
    flex: 1;
    background: #0084ff1a;
    border-radius: 32px 0 0 32px;
    padding: 20px 60px 44px;
    box-sizing: border-box;
    height: 100%;
}

.visitor-content h3 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #0e4661;
    margin-bottom: 10px;
}

.visitor-content ul {
    list-style-type: disc;
    padding-left: 22px;
    margin: 0;
}

.visitor-content ul li {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 18px;
    color: #000000;
}

.visitor-highlight {
    background-color: #f4f4f4;
    padding: 12px 15px;
    border-left: 5px solid #0084ff1a;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
}

.visitor-container {
    display: flex;
    margin: auto;
    gap: 0px;
    padding-left: 50px;
    align-items: stretch;
}

.visitor-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.visitor-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visitor-others {
    padding: 10px 0;
}

.visitor-others strong {
    font-family: "Inter", sans-serif;
    color: #d52737;
    display: block;
    margin-bottom: 5px;
    font-size: 30px;
}

.visitor-others ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.visitor-others ul li {
    color: #000000;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
}

.visitor-right {
    flex: 1;
}

.visitor-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .visitor-container {
        flex-direction: column;
        padding-left: 17px;
    }

    .visitor-content {
        padding: 20px 28px 25px;
    }

    .visitor-heading {
        padding-left: 25px;
    }
    .visitor-content h3 {
        font-size: 24px;
    }
    .visitor-image {
        margin-left: 0;
    }
}

/* footer section css started here */
.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;
    margin-top: 50px;
}

.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;
}

/* gsse card css started here */
.gsse-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 75%;
    margin: auto;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.gsse-left img {
    max-height: 200px;
    margin-right: 30px;
}

.gsse-right {
    flex: 1;
}

.gsse-right p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin: 0;
    color: #000000;
}

@media (max-width: 768px) {
    .gsse-card {
        flex-direction: column;
        text-align: center;
        width: 91%;
    }

    .gsse-left img {
        margin-bottom: 15px;
    }
}



/* 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: 200px;
}

#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;
}

.btn-primary {
    background: #d52737;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 1.1rem;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #d52738aa;
}

.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;
    }
}


    /* By default hide mobile banner */
    .banner-mobile {
        display: none;
        width: 100%;
    }

    /* Show desktop on large screens */
    .banner-desktop {
        display: block;
        width: 100%;
    }

    /* On small screens, swap */
    @media (max-width: 768px) {
        .banner-desktop {
            display: none;
        }
        .banner-mobile {
            display: block;
        }
    }

#registration-form p {
    font-size: 16px;
    line-height: 22px;
    font-family: "Inter", sans-serif;
}

.exhibitor-btn{
     width: auto;
     margin: auto;
     display: block;
         padding: 14px 74px;
}