
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Font Awesome Link (already present) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> */

:root {
    --color: #6C5CE7;
}

* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
}

/* Existing nav styles remain unchanged */
nav {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    color: #2C2C2C;
    height: 20px;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
}

nav .logo {
    font-family: 'Satisfy';
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: -1;
}

nav .logo i h8 {
    font-family: 'poppins';
    font-weight: 500;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    width: 70%;
    justify-content: space-between;
}

nav ul li a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: .8em;
}

nav ul li a:hover {
    color: #3a3939;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    position: relative;
}

.menu-toggle input {
    position: absolute;
    width: 40px;
    height: 28px;
    left: -6px;
    top: -5px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2C2C2C;
    transition: all 0.5s;
}

.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 0;
}

.menu-toggle input:checked ~ span:nth-child(2) {
    background-color: #3a3939;
    transform: rotate(43deg) translate(-1px, -1px);
}

.menu-toggle input:checked ~ span:nth-child(4) {
    background-color: #3a3939;
    transform: rotate(-45deg) translate(-1px, 0px);
}

.menu-toggle input:checked ~ span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

/* Existing media queries for nav remain unchanged */
@media screen and (max-width: 769px) {
    nav ul {
        display: flex;
        list-style: none;
        width: 70%;
        justify-content: space-between;
    }

    nav {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #2C2C2C;
        height: 16px;
        font-size: 14px;
        font-weight: 500;
        align-items: center;
    }

    nav .logo {
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1330px) {
    nav ul {
        display: flex;
        list-style: none;
        width: 60%;
        justify-content: space-between;
    }

    nav {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #2C2C2C;
        height: 20px;
        font-size: 22px;
        font-weight: 500;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    nav ul {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: #ffffff;
        z-index: -1;
        transform: translateX(100%);
        transition: all 1s;
        font-size: 25px;
        color: #000000;
        font-weight: 500;
        font-family: monospace;
    }

    nav ul.slide {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }
}

.heading {
    font-size: 4rem;
    color: rgb(109, 83, 235);
    text-align: center;
    padding: 0 1rem;
    padding-top: 6rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.title {
    padding: 0 1rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    color: #aaa;
    text-transform: capitalize;
}

/* Redesigned Home Section with Adjusted Colors, Balanced Content and Background, and a Professional, Eye-Catching Design */
.home {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    background: transparent;
    overflow: hidden;
}

.home .background-images {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.home .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Focus on the right side of the image */
    filter: brightness(0.8); /* Keep the background clear */
    display: block;
}

.home .background-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)); /* Gradient overlay for depth */
    z-index: 2;
}

.home .content {
    position: relative;
    z-index: 3;
    width: 50%; /* Reduced width to show more of the background */
    max-width: 600px; /* Adjusted max-width for balance */
    padding: 3rem;
    margin-left: 5%; /* Shift content to the left */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text to the left */
    text-align: left;
    background: transparent; /* Removed glassmorphism effect */
}

/* Use a modern font */
.home .content *,
.home .content h2,
.home .content h1,
.home .content p,
.home .content button {
    font-family: 'Poppins', sans-serif !important;
}

/* Updated h2 to match other sections' capitalization style */
.home .content h2 {
    font-size: 1.8rem;
    color: #F5C518; /* Soft gold to complement the orange */
    margin-bottom: 1.5rem;
    line-height: 1.4;
    /* Removed text-transform: uppercase to match other sections */
    letter-spacing: 1px; /* Adjusted for readability */
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Consistent with h1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Match h1 */
}

.home .content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

.home .content h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #F5C518, transparent); /* Gradient underline */
    opacity: 0;
    animation: grow 1s ease forwards 0.9s;
}

@keyframes grow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.home .content h1 span {
    display: block;
}

/* Override text-transform for specific words */
.home .content h1 .lowercase {
    text-transform: none;
    display: inline;
}

.home .content p {
    font-size: 1.4rem;
    color: #d1d1d1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.9s;
}

.home .content button {
    height: 4rem;
    width: 16rem;
    border-radius: 2rem;
    background: #E97629; /* Orange to match the main page theme */
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    padding: 0;
    line-height: 4rem;
    text-align: center;
}

.home .content button:hover {
    background: #D65F1A; /* Darker orange for hover */
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 118, 41, 0.4);
}

.home .content button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.home .content button:hover::before {
    left: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .home {
        flex-direction: column;
        justify-content: center;
    }

    .home .background-images {
        width: 100%;
        height: 100vh;
    }

    .home .bg-image {
        object-fit: cover;
        object-position: center;
    }

    .home .content {
        width: 90%;
        max-width: 500px;
        margin-left: 0;
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .home .content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .home .content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .home .content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .home .content button {
        height: 3.5rem;
        width: 14rem;
        font-size: 1.2rem;
        line-height: 3.5rem;
        border-radius: 2rem;
    }
}

@media (max-width: 576px) {
    .home .content h2 {
        font-size: 1.2rem;
    }

    .home .content h1 {
        font-size: 2.2rem;
    }

    .home .content p {
        font-size: 1rem;
    }

    .home .content button {
        height: 3rem;
        width: 12rem;
        font-size: 1rem;
        line-height: 3rem;
    }
}

/* About Section with Justified Alignment and Lowercase Fix */
.about {
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-bottom: 6rem; /* Added to create space at bottom */
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
    margin-bottom: 4rem; /* Added to separate from next section */
}

.about .row .content {
    text-align: left;
    max-width: 60%; /* Added to prevent content overlap */
}

.about .row .image img {
    width: 40vw;
    height: 70vh;
}

.about .row .content h3 {
    font-size: 3rem;
    color: rgb(246, 8, 119);
    text-align: justify; /* Justified alignment as requested */
}

.about .row .content h3 span {
    font-size: 3rem;
    color: var(--color); /* Purple for spans */
}

.about .row .content h3 .lowercase {
    text-transform: lowercase; /* Ensure "and", "in", "will be", "at" stay lowercase */
    display: inline; /* Maintain inline flow */
    /* Color inherits from .about .row .content h3 span (purple) */
}

.about .row .content h3 .pink {
    color: rgb(246, 8, 119); /* Override to pink for "will be" and "at" */
}

.about .row .content p {
    font-size: 2rem;
    color: #999;
    padding: 0;
    text-align: justify;
    text-transform: none;
    margin-bottom: 3rem; /* Added spacing before button */
}

/* Updated Button Styles to Fix Text Overflow */
.about .row .content .button-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about .row .content .button-container button {
    height: 4rem;
    width: 20rem; /* Increased width to accommodate "DOWNLOAD BROCHURE" */
    background: var(--color);
    color: #fff;
    border: none;
    border-radius: 5rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.6rem; /* Reduced font size for better fit */
    line-height: 4rem; /* Match height for vertical centering */
    white-space: nowrap; /* Prevent text wrapping */
    transition: 0.2s;
}

.about .row .content .button-container button:hover {
    letter-spacing: 0.1rem; /* Reduced letter-spacing to prevent overflow */
    opacity: 0.8;
}

.about::before, .about::after {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: .2;
    border-radius: 50%;
}

.about::before {
    height: 50rem;
    width: 50rem;
    background: #ccc;
    bottom: -10rem;
    left: -10rem;
}

.about::after {
    height: 60rem;
    width: 60rem;
    background: var(--color);
    top: -10rem;
    right: -10rem;
}

.participate,
.call {
    min-height: 50vh;
    width: 100vw;
    background-color: whitesmoke;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.participate p {
    text-align: justify;
    padding-right: 3rem;
}

.call p {
    text-align: justify;
    font-size: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
    text-transform: none;
}

.call .doc1 {
    width: 170px;
    height: 30px;
    background-color: black;
    color: #fff;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    margin-right: 20px;
    margin-top: 4rem;
    font-size: 1.5rem;
}

.call .doc2 {
    width: 170px;
    height: 30px;
    background-color: black;
    color: #fff;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    padding-bottom: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: 1.5rem;
}

.participate .container .card {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 20px;
    border-radius: 2rem;
    justify-content: center;
    font-size: 3.5rem;
    padding-top: 5rem;
    align-items: center;
}

.papers {
    text-align: center;
    background-color: #ffffffff;
}

.papers .box-container {
    width: 85%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 4rem;
    flex-wrap: wrap;
}

.papers .box-container .box {
    height: 25rem;
    width: 28rem;
    margin: 3.5rem 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0 0.1rem var(--color),
        0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.3);
}

.papers .box-container .box i {
    height: 10rem;
    width: 10rem;
    line-height: 8rem;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: blue;
    margin-top: -4rem;
    border: 1rem solid #fff;
    border-left: 1rem solid blue;
    border-right: 1rem solid blue;
    box-shadow: 0 0 0 1rem #fff inset;
    font-size: 3.5rem;
}

.papers .box-container .box h3 {
    font-size: 1.7rem;
    color: var(--color);
}

.papers .box-container .box p {
    font-size: 1.3rem;
    color: #999;
    padding: 1rem 0;
    text-transform: none;
}

.papers .info {
    text-align: center;
    padding-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.papers .info span {
    text-align: center;
    padding-bottom: 20px;
    font-size: 2rem;
    color: #11b0f9;
    font-weight: bold;
    text-transform: lowercase;
}

.speakers {
    background: #f9f9f9;
    text-align: center;
}

.speakers .heading {
    color: var(--color);
}

.speakers .row .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.speakers .row .content .speaker,
.speakers .row .content .speaker1 {
    text-align: center;
    margin: 0 10px;
}

.speakers .row .content .speaker img {
    max-width: 80vh;
    max-height: 50%;
    border-radius: 5rem;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.speakers .row .content .speaker1 img {
    max-width: 170vh;
    max-height: 100%;
    border-radius: 4rem;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.speakers .row .content .speaker h4,
.speakers .row .content .speaker1 h4,
.speakers .row .content .speaker p,
.speakers .row .content .speaker1 p {
    margin: 0;
}

.speakers .row .content .speaker h4,
.speakers .row .content .speaker1 h4 {
    font-size: 2rem;
}

.speakers .row .content .speaker p,
.speakers .row .content .speaker1 p {
    font-size: 1.4rem;
    color: #000;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.speakers .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers .row .image img {
    height: 70vh;
    width: 40vw;
}

.speakers .row .content {
    padding-left: 5rem;
}

.partners {
    padding-bottom: 30px;
}

.partners .row .content h3 {
    font-size: 3rem;
    color: var(--pink);
    text-transform: capitalize;
}

.speakers .row .content h3 {
    font-size: 3rem;
    color: var(--voilet);
    text-transform: capitalize;
}

.contact {
    min-height: 100vh;
    width: 100vw;
    text-align: center;
}

.contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .row .image img {
    height: 60vh;
    width: 35vw;
}

.contact .row .form-container {
    text-transform: none;
    width: 50%;
    text-align: left;
    padding: 0 5rem;
}

.contact .row .form-container input,
.contact .row .form-container textarea {
    outline: none;
    border: none;
    height: 4rem;
    background: none;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 1.6rem;
    text-transform: none;
}

.contact .row .form-container .inputBox {
    width: 100%;
    display: flex;
    text-transform: none;
    justify-content: space-between;
}

.contact .row .form-container .inputBox input[type="text"] {
    width: 49%;
}

.contact .row .form-container input[type="email"] {
    width: 100%;
}

.contact .row .form-container input[type="number"] {
    width: 100%;
}

.contact .row .form-container textarea {
    width: 100%;
    height: 20rem;
    padding: 1rem;
    resize: none;
    text-transform: none;
}

.contact .row .form-container button {
    outline: none;
    border: none;
    height: 4.5rem;
    background-color: var(--color);
    color: #fff;
    width: 12rem;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 2rem;
}

.contact .row .form-container button:hover {
    opacity: .8;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 6rem;
}

.contact-info {
    padding: 5rem;
    width: 35rem;
    background: #fff;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
    border-radius: 2rem;
    margin-bottom: 20px;
}

.map {
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
    border-radius: 2rem;
    background: #fff;
}

.map iframe {
    max-width: 100%;
    height: 300px;
    border-radius: 2rem;
    display: block;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
}

.contact-info h3 {
    font-size: 1.8rem;
}

.contact-info p {
    color: #999;
    padding: 0 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.contact-info .official-email span {
    color: #999;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.contact-info .official-email {
    color: #999;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.footer {
    text-align: center;
}

.footer .icons {
    padding: 3rem 0;
}

.footer .icons a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.2rem;
    text-align: center;
    border-radius: 50%;
    color: rgb(14, 8, 122);
    border: 0.2rem solid rgb(14, 8, 122);
    font-size: 2rem;
    margin: 0 0.1rem;
    transition: 0.2s linear;
}

.footer .icons a:hover {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
}

.footer .credit {
    font-size: 2rem;
    border-top: 0.1rem solid #999;
    margin: 0 auto;
    margin-bottom: 2rem;
    color: #666;
    width: 90%;
    padding: 1rem 0;
    font-family: "Times New Roman", Times, serif;
    text-transform: lowercase;
}

.footer .credit span {
    color: var(--color);
    font-family: "Times New Roman", Times, serif;
    text-transform: lowercase;
}

/* Media queries */
@media (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .header .fa-bars {
        display: block;
    }

    .header .navbar {
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        border-top: .1rem solid rgba(0, 0, 0, 0.3);
    }

    .header .navbar ul {
        flex-flow: column;
        height: auto;
        width: 100%;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar ul li a {
        color: #444;
        font-size: 2.4rem;
    }

    .header .fa-times {
        transform: rotate(180deg);
    }

    .header .nav-toggle {
        top: 5.8rem;
    }

    .home .content p {
        padding: 1.5rem 2rem;
    }

    .home::before {
        display: none;
    }

    .home .content {
        padding-top: 18rem;
    }

    /* Updated About Section for Mobile */
    .about .row {
        flex-flow: column-reverse;
        padding: 0 2rem;
        padding-bottom: 30px;
    }

    .about .row .image img {
        height: 40vh; /* Reduced height for mobile */
        width: 80vw; /* Adjusted width to fit mobile screen */
        margin: 0 auto; /* Center the image */
        display: block; /* Ensure the image is visible */
    }

    .about .row .content {
        max-width: 100%; /* Allow content to take full width on mobile */
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .about .row .content h3 {
        font-size: 2rem; /* Reduce font size for mobile */
        padding: 0;
        text-transform: none;
        line-height: 1.4; /* Improve readability with better line spacing */
    }

    .about .row .content h3 span {
        font-size: 2rem; /* Match the reduced font size */
    }

    .about .row .content p {
        font-size: 1.4rem; /* Reduce paragraph font size for mobile */
        text-transform: none;
        padding: 0;
        line-height: 1.6; /* Improve readability */
    }

    /* Updated Button Styles for Mobile */
    .about .row .content .button-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about .row .content .button-container button {
        height: 3.5rem;
        width: 18rem;
        font-size: 1.6rem;
        line-height: 3.5rem;
    }

    .contact .row {
        flex-flow: column;
    }

    .contact .row .image img {
        width: 100vw;
    }

    .contact .row .form-container {
        width: 100%;
        padding: 0 1.5rem;
        padding-right: 1rem;
        padding-left: 2rem;
    }

    .about .row,
    .partners .row,
    .speakers .row {
        flex-flow: column-reverse;
    }

    .about .row .image img,
    .partners .row .image img,
    .speakers .row .image img {
        height: 60vh;
        width: 90vw;
    }

    .about .row .content h3,
    .partners .row .content h3,
    .speakers .row .content h3 {
        padding: 0 2.5rem;
    }

    .container {
        padding-left: 9rem;
    }

    .participate .container .card {
        position: relative;
        justify-content: center;
        font-size: 2.5rem;
        align-items: center;
    }

    .call .doc1,
    .call .doc2 {
        display: block;
        margin-bottom: 1rem;
    }
}

/* ====== FINAL LAYOUT FIX ====== */
.about .row,
.partners .row,
.speakers .row {
    flex-direction: row !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .about .row,
    .partners .row,
    .speakers .row {
        flex-direction: column !important;
        flex-flow: unset !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Font Awesome Link (already present) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> */

:root {
    --color: #6C5CE7;
}

* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
}

/* Existing nav styles remain unchanged */
nav {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    color: #2C2C2C;
    height: 20px;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
}

nav .logo {
    font-family: 'Satisfy';
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: -1;
}

nav .logo i h8 {
    font-family: 'poppins';
    font-weight: 500;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    width: 70%;
    justify-content: space-between;
}

nav ul li a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: .8em;
}

nav ul li a:hover {
    color: #3a3939;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    position: relative;
}

.menu-toggle input {
    position: absolute;
    width: 40px;
    height: 28px;
    left: -6px;
    top: -5px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2C2C2C;
    transition: all 0.5s;
}

.menu-toggle span:nth-child(2) {
    transform-origin: 0 0;
}

.menu-toggle span:nth-child(4) {
    transform-origin: 0 0;
}

.menu-toggle input:checked ~ span:nth-child(2) {
    background-color: #3a3939;
    transform: rotate(43deg) translate(-1px, -1px);
}

.menu-toggle input:checked ~ span:nth-child(4) {
    background-color: #3a3939;
    transform: rotate(-45deg) translate(-1px, 0px);
}

.menu-toggle input:checked ~ span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

/* Existing media queries for nav remain unchanged */
@media screen and (max-width: 769px) {
    nav ul {
        display: flex;
        list-style: none;
        width: 70%;
        justify-content: space-between;
    }

    nav {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #2C2C2C;
        height: 16px;
        font-size: 14px;
        font-weight: 500;
        align-items: center;
    }

    nav .logo {
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1330px) {
    nav ul {
        display: flex;
        list-style: none;
        width: 60%;
        justify-content: space-between;
    }

    nav {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #2C2C2C;
        height: 20px;
        font-size: 22px;
        font-weight: 500;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    nav ul {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: #ffffff;
        z-index: -1;
        transform: translateX(100%);
        transition: all 1s;
        font-size: 25px;
        color: #000000;
        font-weight: 500;
        font-family: monospace;
    }

    nav ul.slide {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }
}

.heading {
    font-size: 4rem;
    color: rgb(109, 83, 235);
    text-align: center;
    padding: 0 1rem;
    padding-top: 6rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.title {
    padding: 0 1rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    color: #aaa;
    text-transform: capitalize;
}

/* Redesigned Home Section with Adjusted Colors, Balanced Content and Background, and a Professional, Eye-Catching Design */
.home {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    background: transparent;
    overflow: hidden;
}

.home .background-images {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.home .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Focus on the right side of the image */
    filter: brightness(0.8); /* Keep the background clear */
    display: block;
}

.home .background-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)); /* Gradient overlay for depth */
    z-index: 2;
}

.home .content {
    position: relative;
    z-index: 3;
    width: 50%; /* Reduced width to show more of the background */
    max-width: 600px; /* Adjusted max-width for balance */
    padding: 3rem;
    margin-left: 5%; /* Shift content to the left */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text to the left */
    text-align: left;
    background: transparent; /* Removed glassmorphism effect */
}

/* Use a modern font */
.home .content *,
.home .content h2,
.home .content h1,
.home .content p,
.home .content button {
    font-family: 'Poppins', sans-serif !important;
}

/* Updated h2 to match other sections' capitalization style */
.home .content h2 {
    font-size: 1.8rem;
    color: #F5C518; /* Soft gold to complement the orange */
    margin-bottom: 1.5rem;
    line-height: 1.4;
    /* Removed text-transform: uppercase to match other sections */
    letter-spacing: 1px; /* Adjusted for readability */
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Consistent with h1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Match h1 */
}

.home .content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

.home .content h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #F5C518, transparent); /* Gradient underline */
    opacity: 0;
    animation: grow 1s ease forwards 0.9s;
}

@keyframes grow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.home .content h1 span {
    display: block;
}

/* Override text-transform for specific words */
.home .content h1 .lowercase {
    text-transform: none;
    display: inline;
}

.home .content p {
    font-size: 1.4rem;
    color: #d1d1d1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.9s;
}

.home .content button {
    height: 4rem;
    width: 16rem;
    border-radius: 2rem;
    background: #E97629; /* Orange to match the main page theme */
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    padding: 0;
    line-height: 4rem;
    text-align: center;
}

.home .content button:hover {
    background: #D65F1A; /* Darker orange for hover */
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 118, 41, 0.4);
}

.home .content button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.home .content button:hover::before {
    left: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .home {
        flex-direction: column;
        justify-content: center;
    }

    .home .background-images {
        width: 100%;
        height: 100vh;
    }

    .home .bg-image {
        object-fit: cover;
        object-position: center;
    }

    .home .content {
        width: 90%;
        max-width: 500px;
        margin-left: 0;
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .home .content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .home .content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .home .content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .home .content button {
        height: 3.5rem;
        width: 14rem;
        font-size: 1.2rem;
        line-height: 3.5rem;
        border-radius: 2rem;
    }
}

@media (max-width: 576px) {
    .home .content h2 {
        font-size: 1.2rem;
    }

    .home .content h1 {
        font-size: 2.2rem;
    }

    .home .content p {
        font-size: 1rem;
    }

    .home .content button {
        height: 3rem;
        width: 12rem;
        font-size: 1rem;
        line-height: 3rem;
    }
}

/* About Section with Justified Alignment and Lowercase Fix */
.about {
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-bottom: 6rem; /* Added to create space at bottom */
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
    margin-bottom: 4rem; /* Added to separate from next section */
}

.about .row .content {
    text-align: left;
    max-width: 60%; /* Added to prevent content overlap */
}

.about .row .image img {
    width: 40vw;
    height: 70vh;
}

.about .row .content h3 {
    font-size: 3rem;
    color: rgb(246, 8, 119);
    text-align: justify; /* Justified alignment as requested */
}

.about .row .content h3 span {
    font-size: 3rem;
    color: var(--color); /* Purple for spans */
}

.about .row .content h3 .lowercase {
    text-transform: lowercase; /* Ensure "and", "in", "will be", "at" stay lowercase */
    display: inline; /* Maintain inline flow */
    /* Color inherits from .about .row .content h3 span (purple) */
}

.about .row .content h3 .pink {
    color: rgb(246, 8, 119); /* Override to pink for "will be" and "at" */
}

.about .row .content p {
    font-size: 2rem;
    color: #999;
    padding: 0;
    text-align: justify;
    text-transform: none;
    margin-bottom: 3rem; /* Added spacing before button */
}

/* Updated Button Styles to Fix Text Overflow */
.about .row .content .button-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about .row .content .button-container button {
    height: 4rem;
    width: 20rem; /* Increased width to accommodate "DOWNLOAD BROCHURE" */
    background: var(--color);
    color: #fff;
    border: none;
    border-radius: 5rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.6rem; /* Reduced font size for better fit */
    line-height: 4rem; /* Match height for vertical centering */
    white-space: nowrap; /* Prevent text wrapping */
    transition: 0.2s;
}

.about .row .content .button-container button:hover {
    letter-spacing: 0.1rem; /* Reduced letter-spacing to prevent overflow */
    opacity: 0.8;
}

.about::before, .about::after {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: .2;
    border-radius: 50%;
}

.about::before {
    height: 50rem;
    width: 50rem;
    background: #ccc;
    bottom: -10rem;
    left: -10rem;
}

.about::after {
    height: 60rem;
    width: 60rem;
    background: var(--color);
    top: -10rem;
    right: -10rem;
}

.participate,
.call {
    min-height: 50vh;
    width: 100vw;
    background-color: whitesmoke;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.participate p {
    text-align: justify;
    padding-right: 3rem;
}

.call p {
    text-align: justify;
    font-size: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
    text-transform: none;
}

.call .doc1 {
    width: 170px;
    height: 30px;
    background-color: black;
    color: #fff;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    margin-right: 20px;
    margin-top: 4rem;
    font-size: 1.5rem;
}

.call .doc2 {
    width: 170px;
    height: 30px;
    background-color: black;
    color: #fff;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    padding-bottom: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: 1.5rem;
}

.participate .container .card {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 20px;
    border-radius: 2rem;
    justify-content: center;
    font-size: 3.5rem;
    padding-top: 5rem;
    align-items: center;
}

.papers {
    text-align: center;
    background-color: #ffffffff;
}

.papers .box-container {
    width: 85%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-top: 4rem;
    flex-wrap: wrap;
}

.papers .box-container .box {
    height: 25rem;
    width: 28rem;
    margin: 3.5rem 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0 0.1rem var(--color),
        0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.3);
}

.papers .box-container .box i {
    height: 10rem;
    width: 10rem;
    line-height: 8rem;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: blue;
    margin-top: -4rem;
    border: 1rem solid #fff;
    border-left: 1rem solid blue;
    border-right: 1rem solid blue;
    box-shadow: 0 0 0 1rem #fff inset;
    font-size: 3.5rem;
}

.papers .box-container .box h3 {
    font-size: 1.7rem;
    color: var(--color);
}

.papers .box-container .box p {
    font-size: 1.3rem;
    color: #999;
    padding: 1rem 0;
    text-transform: none;
}

.papers .info {
    text-align: center;
    padding-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.papers .info span {
    text-align: center;
    padding-bottom: 20px;
    font-size: 2rem;
    color: #11b0f9;
    font-weight: bold;
    text-transform: lowercase;
}

.speakers {
    background: #f9f9f9;
    text-align: center;
}

.speakers .heading {
    color: var(--color);
}

.speakers .row .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.speakers .row .content .speaker,
.speakers .row .content .speaker1 {
    text-align: center;
    margin: 0 10px;
}

.speakers .row .content .speaker img {
    max-width: 80vh;
    max-height: 50%;
    border-radius: 5rem;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.speakers .row .content .speaker1 img {
    max-width: 170vh;
    max-height: 100%;
    border-radius: 4rem;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.speakers .row .content .speaker h4,
.speakers .row .content .speaker1 h4,
.speakers .row .content .speaker p,
.speakers .row .content .speaker1 p {
    margin: 0;
}

.speakers .row .content .speaker h4,
.speakers .row .content .speaker1 h4 {
    font-size: 2rem;
}

.speakers .row .content .speaker p,
.speakers .row .content .speaker1 p {
    font-size: 1.4rem;
    color: #000;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.speakers .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers .row .image img {
    height: 70vh;
    width: 40vw;
}

.speakers .row .content {
    padding-left: 5rem;
}

.partners {
    padding-bottom: 30px;
}

.partners .row .content h3 {
    font-size: 3rem;
    color: var(--pink);
    text-transform: capitalize;
}

.speakers .row .content h3 {
    font-size: 3rem;
    color: var(--voilet);
    text-transform: capitalize;
}

.contact {
    min-height: 100vh;
    width: 100vw;
    text-align: center;
}

.contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .row .image img {
    height: 60vh;
    width: 35vw;
}

.contact .row .form-container {
    text-transform: none;
    width: 50%;
    text-align: left;
    padding: 0 5rem;
}

.contact .row .form-container input,
.contact .row .form-container textarea {
    outline: none;
    border: none;
    height: 4rem;
    background: none;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 1.6rem;
    text-transform: none;
}

.contact .row .form-container .inputBox {
    width: 100%;
    display: flex;
    text-transform: none;
    justify-content: space-between;
}

.contact .row .form-container .inputBox input[type="text"] {
    width: 49%;
}

.contact .row .form-container input[type="email"] {
    width: 100%;
}

.contact .row .form-container input[type="number"] {
    width: 100%;
}

.contact .row .form-container textarea {
    width: 100%;
    height: 20rem;
    padding: 1rem;
    resize: none;
    text-transform: none;
}

.contact .row .form-container button {
    outline: none;
    border: none;
    height: 4.5rem;
    background-color: var(--color);
    color: #fff;
    width: 12rem;
    border-radius: .5rem;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    padding: 0 1rem;
    margin: 1rem 0;
    font-size: 2rem;
}

.contact .row .form-container button:hover {
    opacity: .8;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 6rem;
}

.contact-info {
    padding: 5rem;
    width: 35rem;
    background: #fff;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
    border-radius: 2rem;
    margin-bottom: 20px;
}

.map {
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
    border-radius: 2rem;
    background: #fff;
}

.map iframe {
    max-width: 100%;
    height: 300px;
    border-radius: 2rem;
    display: block;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .8);
}

.contact-info h3 {
    font-size: 1.8rem;
}

.contact-info p {
    color: #999;
    padding: 0 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.contact-info .official-email span {
    color: #999;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.contact-info .official-email {
    color: #999;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    text-transform: none;
}

.footer {
    text-align: center;
}

.footer .icons {
    padding: 3rem 0;
}

.footer .icons a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.2rem;
    text-align: center;
    border-radius: 50%;
    color: rgb(14, 8, 122);
    border: 0.2rem solid rgb(14, 8, 122);
    font-size: 2rem;
    margin: 0 0.1rem;
    transition: 0.2s linear;
}

.footer .icons a:hover {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
}

.footer .credit {
    font-size: 2rem;
    border-top: 0.1rem solid #999;
    margin: 0 auto;
    margin-bottom: 2rem;
    color: #666;
    width: 90%;
    padding: 1rem 0;
    font-family: "Times New Roman", Times, serif;
    text-transform: lowercase;
}

.footer .credit span {
    color: var(--color);
    font-family: "Times New Roman", Times, serif;
    text-transform: lowercase;
}

/* Media queries */
@media (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .header .fa-bars {
        display: block;
    }

    .header .navbar {
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        border-top: .1rem solid rgba(0, 0, 0, 0.3);
    }

    .header .navbar ul {
        flex-flow: column;
        height: auto;
        width: 100%;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar ul li a {
        color: #444;
        font-size: 2.4rem;
    }

    .header .fa-times {
        transform: rotate(180deg);
    }

    .header .nav-toggle {
        top: 5.8rem;
    }

    .home .content p {
        padding: 1.5rem 2rem;
    }

    .home::before {
        display: none;
    }

    .home .content {
        padding-top: 18rem;
    }

    /* Updated About Section for Mobile */
    .about .row {
        flex-flow: column-reverse;
        padding: 0 2rem;
        padding-bottom: 30px;
    }

    .about .row .image img {
        height: 40vh; /* Reduced height for mobile */
        width: 80vw; /* Adjusted width to fit mobile screen */
        margin: 0 auto; /* Center the image */
        display: block; /* Ensure the image is visible */
    }

    .about .row .content {
        max-width: 100%; /* Allow content to take full width on mobile */
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .about .row .content h3 {
        font-size: 2rem; /* Reduce font size for mobile */
        padding: 0;
        text-transform: none;
        line-height: 1.4; /* Improve readability with better line spacing */
    }

    .about .row .content h3 span {
        font-size: 2rem; /* Match the reduced font size */
    }

    .about .row .content p {
        font-size: 1.4rem; /* Reduce paragraph font size for mobile */
        text-transform: none;
        padding: 0;
        line-height: 1.6; /* Improve readability */
    }

    /* Updated Button Styles for Mobile */
    .about .row .content .button-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about .row .content .button-container button {
        height: 3.5rem;
        width: 18rem;
        font-size: 1.6rem;
        line-height: 3.5rem;
    }

    .contact .row {
        flex-flow: column;
    }

    .contact .row .image img {
        width: 100vw;
    }

    .contact .row .form-container {
        width: 100%;
        padding: 0 1.5rem;
        padding-right: 1rem;
        padding-left: 2rem;
    }

    .about .row,
    .partners .row,
    .speakers .row {
        flex-flow: column-reverse;
    }

    .about .row .image img,
    .partners .row .image img,
    .speakers .row .image img {
        height: 60vh;
        width: 90vw;
    }

    .about .row .content h3,
    .partners .row .content h3,
    .speakers .row .content h3 {
        padding: 0 2.5rem;
    }

    .container {
        padding-left: 9rem;
    }

    .participate .container .card {
        position: relative;
        justify-content: center;
        font-size: 2.5rem;
        align-items: center;
    }

    .call .doc1,
    .call .doc2 {
        display: block;
        margin-bottom: 1rem;
    }
}

/* ====== FINAL LAYOUT FIX ====== */
.about .row,
.partners .row,
.speakers .row {
    flex-direction: row !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .about .row,
    .partners .row,
    .speakers .row {
        flex-direction: column !important;
        flex-flow: unset !important;
    }
}

/* ====== END OF FIX ====== */