* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Background Glow */

.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00e5ff33 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: moveGlow 10s infinite alternate;
}

.glow:nth-child(2) {
    top: 40%;
    right: -200px;
    background: radial-gradient(circle, #7b61ff33 0%, transparent 70%);
}

@keyframes moveGlow {
    from {
        transform: translateY(-50px);
    }

    to {
        transform: translateY(50px);
    }
}

/* Navbar */

.nav-bar {
    width: 90%;
    position: fixed;
    top: 15px;
    left: 5%;
    padding: 6px 8%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}



.logo img {
    width: 150px;
}

.nav-bar ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-bar ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nav-bar ul li a:hover {
    color: #00e5ff;
}

.menu-toggle {
    display: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px) {

    .nav-bar {
        padding: 14px 25px;
    }

    .nav-bar ul {
        gap: 20px;
    }

}

@media (max-width: 768px) {

    .nav-bar {
        border-radius: 20px;
        padding: 15px 20px;
    }

    .logo img {
        width: 130px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-bar ul {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

        display: none;
    }

    .nav-bar ul.active {
        display: flex;
    }

}

@media (max-width: 480px) {

    .nav-bar {
        width: 94%;
        left: 3%;
        top: 10px;
    }

    .logo img {
        width: 115px;
    }

}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 85px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    background: linear-gradient(to right, #00e5ff, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #cfcfcf;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.primary {
    background: linear-gradient(to right, #00e5ff, #7b61ff);
    color: white;
}

.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
}

/* Features */

.features {
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    font-size: 55px;
    margin-bottom: 20px;
}

.section-title span {
    color: #00e5ff;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    transition: 0.4s;
    backdrop-filter: blur(15px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #00e5ff;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #00e5ff, #7b61ff);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.card p {
    color: #bbb;
    line-height: 1.7;
}

/* Stats */

.stats {
    padding: 120px 8%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
}

.stat h2 {
    font-size: 60px;
    color: #00e5ff;
    margin-bottom: 10px;
}

.stat p {
    color: #bbb;
}

/* CTA */

.cta {
    padding: 150px 8%;
    text-align: center;
}

.cta h2 {
    font-size: 65px;
    margin-bottom: 20px;
}

.cta p {
    color: #bbb;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
}

/* Animations */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media(max-width:900px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .section-title {
        font-size: 40px;
    }

    .cta h2 {
        font-size: 45px;
    }

    nav ul {
        display: none;
    }
}

@media(max-width:600px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }
}

/* ========  banner section  ============*/


/* SLIDER */

.slider-section {
    width: 100%;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* ALL slides stacked */
.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* ACTIVE slide */
.slides.active {
    opacity: 1;
    z-index: 1;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY (IMPORTANT for readability) */
.slides::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* CONTENT FIX */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;   /* VERY IMPORTANT */
    color: #fff;
    max-width: 650px;
}

.slide-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0d85c5;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Hover effect */
.slide-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Fade Animation */

.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {

    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* DOTS */

.dots-container {

    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {

    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {

    background: #00e5ff;
    transform: scale(1.2);
}

/* Responsive */

@media (max-width: 768px) {

    .slider {
        height: 70vh;
    }

    .slides img {
        height: 100%;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
        text-align: left;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .slide-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

}

@media (max-width: 600px){
.slider{
    height: 100vh;
}
}


/* ========  about section  ============*/


.about-section {
    padding: 90px 7%;
    background: linear-gradient(to right, #f7f8fc, #f6f8ff);
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-left {
    flex: 1 1 520px;
}

.about-left h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111827;
}

.about-left h1 span {
    color: #2563ff;
}

.about-left p {
    font-size: 22px;
    line-height: 1.9;
    color: #5b6473;
    margin-bottom: 30px;
}

.about-right {
    flex: 1 1 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
}

.about-right::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #d7f7d8 0%, transparent 70%);
    top: 120px;
    left: 140px;
    z-index: 0;
}

.feature-box {
    position: relative;
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    z-index: 1;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eff4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2563ff;
    font-size: 26px;
    font-weight: 700;
}

.feature-box h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #111827;
}

.feature-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
}

/* Stats Section */

.stats-section {
    background: #f4f7fd;
    padding: 70px 7%;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h2 {
    font-size: 72px;
    color: #2563ff;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-box p {
    font-size: 28px;
    color: #4b5563;
    font-weight: 500;
}

/* Responsive */

@media(max-width:992px) {

    .about-wrapper {
        flex-direction: column;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-left h1 {
        font-size: 48px;
    }
}

@media(max-width:600px) {

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .about-left h1 {
        font-size: 38px;
    }

    .about-left p {
        font-size: 18px;
    }

    .feature-box h3 {
        font-size: 22px;
    }

    .stat-box h2 {
        font-size: 52px;
    }

    .stat-box p {
        font-size: 22px;
    }
}

/* ========= about section ==== */


.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 70px;
}

.about-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
}

.blue-bg {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.purple-bg {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.green-bg {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

/* Floating Shapes */

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 5s infinite ease-in-out;
}

.shape-1 {
    width: 18px;
    height: 18px;
    background: #60a5fa;
    top: 120px;
    left: 80px;
}

.shape-2 {
    width: 22px;
    height: 22px;
    background: #c084fc;
    top: 300px;
    left: 40px;
    animation-delay: 1s;
}

.shape-3 {
    width: 16px;
    height: 16px;
    background: #4ade80;
    bottom: 120px;
    right: 100px;
    animation-delay: 2s;
}

.shape-4 {
    width: 26px;
    height: 26px;
    background: #facc15;
    bottom: 60px;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .about-card {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 30px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-card h3 {
        font-size: 20px;
    }
}

/* ========  conference section ===== */


.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 70px;
}

.about-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
}

.blue-bg {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.purple-bg {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.green-bg {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

/* Floating Shapes */

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 5s infinite ease-in-out;
}

.shape-1 {
    width: 18px;
    height: 18px;
    background: #60a5fa;
    top: 120px;
    left: 80px;
}

.shape-2 {
    width: 22px;
    height: 22px;
    background: #c084fc;
    top: 300px;
    left: 40px;
    animation-delay: 1s;
}

.shape-3 {
    width: 16px;
    height: 16px;
    background: #4ade80;
    bottom: 120px;
    right: 100px;
    animation-delay: 2s;
}

.shape-4 {
    width: 26px;
    height: 26px;
    background: #facc15;
    bottom: 60px;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .about-card {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 30px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-card h3 {
        font-size: 20px;
    }
}




/* ========= footer =========== */



.footer-section {
    background: #f8f9fc;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #0d85c5;
}

.footer-logo img {
    max-width: 240px;
    margin-bottom: 25px;
}

.footer-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #374151;
    transition: 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #0d85c5;
    padding-left: 5px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-links a {
    text-decoration: none;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    font-size: 16px;
}

.contact-links a:hover {
    color: #0d85c5;
}

.contact-links i {
    width: 42px;
    height: 42px;
    background: #0d85c5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.map-box iframe {
    width: 100%;
    border: none;
    border-radius: 18px;
    min-height: 250px;
}

.footer-bottom {
    background: #0d85c5;
    margin-top: 60px;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

@media(max-width:991px) {

    .footer-column {
        margin-bottom: 40px;
    }
}

/* ============= about us =========== */

.about-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
    background: linear-gradient(135deg, #0d85c5, #2563eb);
    color: #fff;
    overflow: hidden;
}



.about-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 850px;
    margin: auto;
}

/* =========================
   Large Devices
========================= */

@media (max-width: 1200px) {

    .about-hero h1 {
        font-size: 56px;
    }

}

/* =========================
   Tablets
========================= */

@media (max-width: 992px) {

    .about-hero {
        min-height: 60vh;
        padding: 180px 8% 60px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-hero::before {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -120px;
    }

}

/* =========================
   Mobile Devices
========================= */

@media (max-width: 768px) {

    .about-hero {
        min-height: 55vh;
        padding: 150px 6% 70px;
    }

    .about-hero h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .about-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-hero::before {
        width: 300px;
        height: 300px;
        top: -120px;
        right: -100px;
    }

}

/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {

    .about-hero {
        min-height: 50vh;
        padding: 180px 20px 60px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-hero::before {
        width: 220px;
        height: 220px;
        top: -80px;
        right: -70px;
    }

}

/* =============== about us =========== */


/* Section */

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
}

.section-title p {
    color: #6b7280;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.9;
}

.about-our-confernce-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-our-confernce-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-our-confernce-title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d85c5, #2563eb);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

.about-our-confernce-title p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 768px) {

    .about-our-confernce-title h2 {
        font-size: 36px;
    }

    .about-our-confernce-title p {
        font-size: 16px;
        padding: 0 10px;
    }

}

/* About */

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-content h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111827;
}

.about-content p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Feature Cards */

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 30px;
}

.bg-blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.bg-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.bg-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.9;
}

/* Stats */

.stats-section {
    color: #fff;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: 58px;
    font-weight: 800;
}

.stat-box p {
    font-size: 18px;
    margin-top: 10px;
}

/* Conferences */

.conference-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.conference-card:hover {
    transform: translateY(-10px);
}

.conference-image {
    height: 220px;
    overflow: hidden;
}

.conference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conference-content {
    padding: 30px;
}

.conference-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.conference-content p {
    color: #6b7280;
    line-height: 1.8;
}

/* CTA */

.cta-section {
    background: #111827;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 80px 40px;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: auto;
    line-height: 1.9;
    color: #d1d5db;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    background: #0d85c5;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #0b6fa3;
}




/* Responsive */

@media(max-width:991px) {

    .hero h1 {
        font-size: 44px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .about-content h3 {
        font-size: 34px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}

@media(max-width:576px) {

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-content h3 {
        font-size: 28px;
    }
}

/* ===================  contact us ================== */




/* Hero */



/* Contact Section */

.contact-section {
    padding: 100px 0;
}

.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #111827;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-links a {
    color: #374151;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.contact-links a:hover {
    color: #0d85c5;
    transform: translateX(5px);
}

.contact-links i {
    width: 50px;
    height: 50px;
    background: #0d85c5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    height: 55px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    padding-left: 18px;
}

textarea.form-control {
    height: 140px;
    resize: none;
    padding-top: 15px;
}

.form-control:focus {
    border-color: #0d85c5;
    box-shadow: 0 0 0 0.2rem rgba(13, 133, 197, 0.15);
}

.submit-btn {
    background: #0d85c5;
    border: none;
    padding: 14px 35px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #086999;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 133, 197, 0.25);
}

/* Map */

.map-section {
    padding-bottom: 100px;
}

.map-box iframe {
    width: 100%;
    border: 0;
    border-radius: 25px;
    min-height: 250px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}



/* Responsive */

@media(max-width:768px) {

    .hero {
        padding: 100px 0 70px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .contact-box {
        padding: 30px;
    }

    .contact-box h3 {
        font-size: 26px;
    }

}