@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #003A65;
    --primary-hover: #0d4f91;
    --color-white: #ffffff;
    --heading-color: #08081D;
    --border-light: #d5d5d5;
}

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}

a {
    text-decoration: none;
}

/* Banner Start */

.sv_banner .woman-praying {
    width: 100%;
    object-fit: cover;
}


@media (min-width: 300px) and (max-width: 400px) {
    .sv_banner .woman-praying {
        height: 610px;
    }
}

/* Banner End */

h1 {
    color: var(--heading-color);
    font-family: "Bricolage Grotesque";
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.4px;
}

.sm-120 {
    margin-top: 120px;
}

p {
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

@media (min-width: 1300px) and (max-width: 1600px) {
    h1 {
        font-size: 35px;
    }

    p {
        font-size: 16px;
        line-height: 27px;
    }
}

@media (min-width: 1100px) and (max-width: 1299px) {
    h1 {
        font-size: 35px;
    }

    p {
        font-size: 16px;
        line-height: 27px;
    }
}

@media (min-width: 900px) and (max-width: 1099px) {

    h1 {
        font-size: 30px;
    }

    p {
        font-size: 15px;
        line-height: 25px;
    }
}

@media (min-width: 200px) and (max-width: 899px) {
    h1 {
        font-size: 25px;
    }

    p {
        font-size: 16px;
        line-height: 25px;
    }

}


/* About IEEE Start */

.ieee-section {
    max-width: 1540px;
    margin: 50px auto;
    margin-bottom: 150px;
    padding: 0 20px;
}

.ieee-container {
    background: rgba(234, 234, 234, 0.60);
    border-radius: 24px;
    padding: 55px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* LEFT CONTENT */

.ieee-content {
    width: 900px;
}

.ieee-content h1 {
    margin-bottom: 28px;
}

.ieee-content p {
    color: #222;
    max-width: 950px;
    margin-bottom: 45px;
    font-weight: 400;
}

.ieee-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--color-white);
    text-decoration: none;
    padding: 11px 34.656px 11px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    z-index: 1;
}

.ieee-btn:hover {
    color: var(--color-white);
    background: #0a4b86;
    transform: translateY(-3px);
}

/* RIGHT IMAGE CARD */

.image-card {
    width: 460px;
    position: absolute;
    top: 10%;
    right: 3%;
    border-radius: 30px;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

/* JOIN BOX */

.join-box {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: var(--color-white);
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: none
}

.join-box h3 {
    font-size: 15px;
    color: #111;
    font-weight: 600;
    margin: 0;
}

.join-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.join-icon:hover {
    background: #0a4b86;
    transform: scale(1.05);
}

/* RESPONSIVE */

@media (min-width: 1300px) and (max-width: 1600px) {
    .ieee-content {
        width: 64%;
    }

    .ieee-content h1 {
        margin-bottom: 18px;
    }

    .ieee-content p {
        margin-bottom: 25px;
        font-weight: 500;
    }

    .ieee-btn {
        font-size: 12px;
        padding: 10px 15px;
    }

    .image-card {
        width: 100%;
        max-width: 420px;
    }
}

@media (min-width: 1100px) and (max-width: 1299px) {
    .ieee-content {
        width: 60%;
    }

    .ieee-content h1 {
        margin-bottom: 18px;
    }

    .ieee-content p {
        margin-bottom: 25px;
        font-weight: 500;
    }

    .ieee-btn {
        font-size: 12px;
        padding: 10px 15px;
    }

    .image-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (min-width: 900px) and (max-width: 1099px) {
    .ieee-content {
        width: 50%;
    }

    .ieee-content h1 {
        margin-bottom: 17px;
    }

    .ieee-content p {
        margin-bottom: 24px;
        font-weight: 500;
    }

    .ieee-btn {
        font-size: 12px;
        padding: 10px 15px;
    }

    .image-card {
        width: 100%;
        max-width: 380px;
    }
}


@media (min-width: 200px) and (max-width: 899px) {
    .image-card {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .ieee-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ieee-content h1 {
        margin-bottom: 17px;
    }

    .ieee-content p {
        margin-bottom: 24px;
        font-weight: 400;
    }

    .ieee-container {
        padding: 30px 20px;
    }

    .ieee-btn {
        font-size: 12px;
    }

    .join-icon {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .ieee-section {
        margin-bottom: 80px;
    }
}

/* About IEEE End */

/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */

/* Mission & Vision Start */

.mission-vision-section {
    max-width: 1320px;
    padding: 60px 20px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.mission-vision-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    max-width: 420px;
    border-radius: 24px;
    padding: 35px;
}

.blue-card {
    background: var(--primary-color);
    color: var(--color-white);
}

.white-card {
    background: #ececec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-title {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.card-title h2 {
    font-size: 20px;
    margin: 0;
    line-height: 24px;
}

.card-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 200;
    line-height: 31px;
}

.center-logo {
    width: 220px;
    margin-bottom: 25px;
}

.center-logo img {
    width: 100%;
    object-fit: contain;
}

.center-content p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

/* RESPONSIVE */
@media (min-width: 200px) and (max-width: 1000px) {

    .mission-vision-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

}

@media(max-width:768px) {

    .card {
        padding: 25px;
    }

    .card-content p {
        line-height: 1.8;
    }

}

@media (min-width: 200px) and (max-width: 899px) {
    .mission-vision-section {
        padding: 0px 20px;
    }

    .section-heading {
        margin-bottom: 30px;
    }
}

/* Mission & Vision End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/* Benefits Start */

.ieee-benefits-wrapper {
    max-width: 1820px;
    margin:20px auto;
    border-radius: 20px;
    background: rgba(234, 234, 234, 0.60);
    padding: 80px 40px;
    padding-bottom: 0;
    margin-bottom: 100px;
}

.ieee-small-tag {
    width: 140px;
    margin: auto;
    text-align: center;
    border: 1.5px solid #0d4374;
    border-radius: 50px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0d4374;
    margin-bottom: 25px;
}

.ieee-main-heading {
    text-align: center;
}

.ieee-main-heading h1 i {
    color: #1d8bd1;
}

.ieee-main-heading p {
    margin-top: 20px;
    text-align: center;
    max-width: 650px;
    margin-inline: auto;
    color: #6A7C92;
    font-size: 16px;
    line-height: 28px;
}

.ieee-card-row {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.ieee-single-card {
    width: 290px;
    min-height: 380px;
    border: 1px solid #d7d7d7;
    border-radius: 160px;
    padding: 45px 30px;
    text-align: center;
    transition: 0.4s ease;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ieee-single-card:hover {
    background: var(--color-white);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ieee-icon-circle {
    width: 90px;
    height: 90px;
    background: #dfe3e8;
    border-radius: 50%;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ieee-icon-circle i {
    font-size: 30px;
    color: #6a6f77;
}

.ieee-count-number {
    position: absolute;
    top: 0px;
    left: -5px;
    width: 36px;
    height: 36px;
    background: #0d4374;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.ieee-card-title {
    color: var(--heading-color);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
}

.ieee-card-text {
    color: #6A7C92;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.ieee-btn-area {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    position: relative;
}

.ieee-join-button {
    text-decoration: none;
    background: var(--primary-color);
    color: var(--color-white);
    padding: 20px 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 600;
    min-width: 260px;
    transition: 0.3s ease;
}

.ieee-join-button:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media (min-width: 200px) and (max-width: 899px) {

    .ieee-benefits-wrapper {
        margin-top: 20px;
    }

    .ieee-single-card {
        width: 100%;
        max-width: 320px;
        min-height: auto;
        border-radius: 50px;
    }

    .ieee-join-button {
        width: 100%;
        max-width: 320px;
    }

}

/* Benefits End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/* Technical Showcases Start */

.tech-showcase-section {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 100px;
}

.tech-showcase-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tech-showcase-box {
    background: rgba(234, 234, 234, 0.60);
    border-radius: 20px;
    padding: 30px 40px;
}

.tech-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tech-grid-item {
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

.tech-grid-item.border-right {
    border-right: 1px solid var(--border-light);
}

.top-row {
    border-bottom: 1px solid var(--border-light);
}

.tech-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.tech-icon-circle i {
    color: var(--color-white);
    font-size: 18px;
}

.tech-grid-item p {
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .tech-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid-item {
        border-right: none !important;
    }

}

@media (min-width: 200px) and (max-width: 768px) {

    .tech-grid-layout {
        grid-template-columns: 1fr;
    }

    .tech-grid-item {
        border-bottom: 1px solid var(--border-light);
    }

    .tech-grid-item:last-child {
        border-bottom: none;
    }

    .tech-showcase-box {
        padding: 25px 20px;
    }

}

/* Technical Showcases End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/* Structure  Start */


.ieee-structure-section {
    max-width: 1420px;
    margin: auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 80px;
}

.ieee-branch-tag {
    width: 170px;
    margin: auto;
    text-align: center;
    border: 1px solid #0d4374;
    border-radius: 40px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0d4374;
    margin-bottom: 20px;
}

.ieee-main-heading {
    text-align: center;
}

.ieee-card-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ieee-info-card {
    border-radius: 25px;
    background: var(--color-white);
    box-shadow: 0 6px 34px 0 rgba(215, 216, 222, 0.41);
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.ieee-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: var(--color-white);
}

.ieee-card-icon {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ieee-card-icon i {
    font-size: 35px;
    color: #777;
}

.ieee-card-content h2 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
}

.ieee-card-content p {
    font-size: 16px;
    color: #74829a;
    line-height: 1.7;
    margin: 0;
}

.ieee-join-card {
    background: var(--primary-color);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    min-height: 110px;
    cursor: pointer;
    transition: 0.3s ease;
}

.ieee-join-card:hover {
    background: var(--primary-hover);
    transform: translateY(-6px);
}

.ieee-join-card i {
    color: var(--color-white);
    font-size: 42px;
}

.ieee-join-card h2 {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 700;
}

.ieee-bottom-text {
    text-align: center;
    margin-top: 45px;
    position: relative;
}

.ieee-bottom-text p {
    font-size: 16px;
    color: #111223;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* RESPONSIVE */

@media (min-width: 200px) and (max-width: 1441px) {
    .ieee-card-content h2 {
        font-size: 16px;
    }

    .ieee-card-content p {
        font-size: 14px;
    }

    .ieee-card-icon i,
    .ieee-join-card i {
        font-size: 30px;
    }

    .ieee-info-card {
        padding: 25px 20px;
    }

    .ieee-join-card h2 {
        font-size: 20px;
    }
}

@media (min-width: 700px) and (max-width: 1000px) {

    .ieee-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 200px) and (max-width: 768px) {

    .ieee-card-content h2 {
    text-align: left !important;
    }

    .ieee-card-grid {
        grid-template-columns: 1fr;
    }

    .ieee-info-card {
        padding: 25px 20px;
    }

    .ieee-join-card {
        padding: 25px 20px;
    }

    .ieee-structure-section {
        margin-bottom: 80px;
    }

}

/* Structure End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/* Committee  Start */

.ieee-committee-section {
    max-width: 1420px;
    margin: auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 80px;
}

.ieee-committee-heading h1 {
    text-align: center;
    margin-bottom: 20px;
}

.ieee-committee-heading p {
    max-width: 1350px;
    margin: auto;
    color: #333;
    text-align: center;
}

.ieee-sub-heading {
    font-size: 25px;
    text-align: center;
    margin: 20px auto;
    color: var(--heading-color);
    font-weight: 700;
}

.ieee-table-wrapper {
    background: #f0f0f0;
    border-radius: 30px;
    padding: 45px 40px;
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TABLE */

.ieee-members-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.ieee-Professional-Members-table thead , .ieee-members-table thead{
    background: transparent !important;
}

.ieee-Professional-Members-table thead th,
.ieee-members-table thead th {
    background: var(--primary-color);
    color: var(--color-white);
    padding: 12px 14px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
}

.ieee-Professional-Members-table thead tr {
    display: grid;
    grid-template-columns:
        90px 1.5fr 1.5fr 2fr;
    gap: 22px;
    margin-bottom: 18px;
}

.ieee-Professional-Members-table tbody tr {
    display: grid;
    grid-template-columns:
        90px 1.5fr 1.5fr 2fr;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #9e9e9e;
}

.ieee-Professional-Members-table tbody tr:last-child,
.ieee-members-table tbody tr:last-child {
    border-bottom: none;
}

.ieee-members-table thead tr {
    display: grid;
    grid-template-columns:
        100px 2fr 1.5fr;
    gap: 22px;
    margin-bottom: 18px;
}

/* TABLE BODY */

.ieee-members-table tbody tr {
    display: grid;
    grid-template-columns:
        100px 2fr 1.5fr;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #9e9e9e;
}

/* RESPONSIVE */

@media (min-width: 200px) and (max-width: 768px) {

    .ieee-table-wrapper {
        padding: 25px 20px;
        overflow:hidden;
    }

    .ieee-members-table td,
    .ieee-members-table thead th {
        font-size: 16px;
    }

    .ieee-Professional-Members-table thead tr,
    .ieee-members-table thead tr {
        display: none;
    }

    .ieee-Professional-Members-table tbody tr,
    .ieee-members-table tbody tr {
        display: flex;
        flex-direction: column;
        font-size: 16px;
        text-align: center;
        overflow: hidden;
    }

}

/* Committee End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/*  Events  Start */

.ieee-events-section {
    max-width: 1420px;
    margin: auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 80px;
}


.ieee-events-heading {
    text-align: center;
    margin-bottom: 45px;
}

.ieee-events-wrapper {
    background: #ececec;
    border-radius: 28px;
    padding: 40px;
}

.ieee-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ieee-event-card {
    background: #f7f7f7;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.ieee-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ieee-event-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.ieee-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.ieee-event-card:hover img {
    transform: scale(1.08);
}

.ieee-image-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.ieee-event-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.ieee-event-content {
    padding: 20px;
    background: var(--color-white);
}

.ieee-event-content h2 {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    font-weight: 500;
    margin-bottom: 20px;
}

.ieee-arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.ieee-arrow-btn:hover {
    background: var(--primary-hover);
    transform: rotate(-45deg);
    color: var(--color-white);
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .ieee-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {
    .ieee-events-wrapper {
        padding: 25px;
    }

    .ieee-events-grid {
        grid-template-columns: 1fr;
    }

    .ieee-event-image {
        height: 240px;
    }

}


/* Events End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/*  Invitation  Start */

.ieee-invitation-section {
    max-width: 1420px;
    margin: auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ieee-invite-line {
    width: 420px;
    max-width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 18px;
}

.ieee-invite-heading h2 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.ieee-invite-heading p {
    max-width: 950px;
    text-align: center;
    margin: auto;
    line-height: 1.5;
    color: #333;
}

.ieee-student-gallery {
    margin-top: 20px;
    flex-wrap: wrap;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.ieee-student-card {
    overflow: hidden;
    border-radius: 28px;
    transition: 0.4s ease;
    position: relative;
}

.ieee-student-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.ieee-student-card:hover img {
    transform: scale(1.08);
}

.ieee-student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ieee-card-one,
.ieee-card-two,
.ieee-card-three,
.ieee-card-four {
    width: 300px;
    height: 350px;
    margin-top: 0;
}

.ieee-card-two {
    margin-top: 60px;
}

.ieee-card-three {
    margin-top: 20px;
}

.ieee-card-four {
    margin-top: 60px;
}

/* RESPONSIVE */

@media (min-width: 200px) and (max-width: 1440px) {

    .ieee-card-one,
    .ieee-card-two,
    .ieee-card-three,
    .ieee-card-four {
        width: 260px;
    }
}

@media(max-width:1200px) {

    .ieee-student-gallery {
        justify-content: center;
    }

    .ieee-card-two,
    .ieee-card-four {
        margin-top: 0;
    }

}

@media(max-width:768px) {

    .ieee-student-gallery {
        gap: 18px;
    }

    .ieee-card-one,
    .ieee-card-two,
    .ieee-card-three,
    .ieee-card-four {
        width: 100%;
        max-width: 320px;
        height: 380px;
        margin-top: 0;
    }

    .ieee-invite-line {
        width: 220px;
    }

}

/* Invitation End */

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------ */

/*  Contact  Start */

.ieee-contact-section {
    width: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.ieee-contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ieee-contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ieee-contact-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(8, 20, 50, 0.85) 0%,
            rgba(8, 20, 50, 0.70) 35%,
            rgba(8, 20, 50, 0.30) 60%,
            rgba(8, 20, 50, 0.05) 100%);
    z-index: 2;
}

.ieee-contact-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: auto;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px;
}

.ieee-contact-box {
    max-width: 700px;
    color: var(--color-white);
}

.ieee-contact-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.ieee-contact-title i {
    font-size: 28px;
    color: var(--color-white);
}

.ieee-contact-title h2 {
    font-size: 25px;
    font-weight: 600;
}

.ieee-contact-email {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.ieee-contact-email i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ieee-contact-email span {
    font-size: 18px;
    font-weight: 500;
    word-break: break-word;
}

.ieee-contact-box p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .ieee-contact-content {
        padding: 40px;
    }

    .ieee-contact-section {
        min-height: 600px;
    }

}

@media(max-width:768px) {

    .ieee-contact-content {
        padding: 30px 20px;
        align-items: flex-end;
    }

    .ieee-contact-section {
        min-height: 650px;
    }

    .ieee-contact-title {
        align-items: flex-start;
    }

    .ieee-contact-email {
        align-items: flex-start;
    }

}

/* Other Css */

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-top {position: fixed;
    top: 42px;
}

.offcanvas{background:var(--primary-color); color:#FFF;}

@media (min-width: 200px) and (max-width: 768px){
    td, th {
        padding: 0px !important;
    }
}
