/* Global Styles */
:root {
    --primary: #27a897;
    --primary-light: #e6f0ff;
    --secondary: #1b416f;
    --accent: #1b416f;
    --light: #f5f9ff;
    --dark: #2c3e50;
    --gray: #f0f4f8;
    --text: #333;
    --text-light: #667788;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.container {
    padding: 25px 28px;
}

.footer_container {
    width: 100%;
    max-width: 1200px;
}

.section {
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 25%;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}




.logo {
    padding-left: 15px;
    /* Add some padding if needed */
}

.logo h1 span {
    color: var(--dark);
}

nav ul {
    display: flex;
    list-style: none;
}

/* nav ul li {
    margin-left: 1.5rem;
} */

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/api/placeholder/1200/600') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-content {
    text-align: left;
    max-width: 650px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    opacity: 0.85;
}

.hero:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: var(--primary-light);
    top: -250px;
    left: -250px;
    z-index: 1;
}

.hero:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-light);
    bottom: -150px;
    right: -150px;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* About Section Styles */
.about {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(42, 127, 255, 0.05);
    top: -200px;
    right: -200px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* What We Do Section Styles */
.what-we-do {
    background-color: white;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 98px;
}

.service-item {
    flex: 1;
    min-width: 273px;
    max-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Choose Us Section Styles */
.why-choose {
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.why-choose:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(42, 127, 255, 0.05);
    bottom: -150px;
    left: -150px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Section Styles */
.section-conferences {
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff;
}



/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header .icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease forwards;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Conference Grid */
.conferences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

/* Conference Card */
.conference-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.conference-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Conference Image */
.conference-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.conference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.conference-card:hover .conference-image img {
    transform: scale(1.1);
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #174773;
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

/* Conference Content */
.conference-content {
    padding: 25px;
    position: relative;
}

.conference-title {
    font-size: 1.2rem;
    color: #174773;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
    min-height: 70px;
    /* Ensure consistent height */
}

.conference-card:hover .conference-title {
    color: #20B2AA;
}

.conference-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.conference-location i {
    color: #20B2AA;
    margin-right: 8px;
}

.conference-button {
    background-color: #20B2AA;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.conference-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.conference-button:hover:before {
    left: 0;
}

.conference-button:hover {
    background-color: #174773;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal animation for cards */
.conference-card {
    opacity: 0;
    transform: translateY(30px);
}

.conference-card.show {
    animation: cardReveal 0.8s ease forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .conferences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .conferences-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .conference-title {
        min-height: auto;
    }
}

/* CTA Section Styles */
.cta {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    top: -200px;
    left: -200px;
}

.cta:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    right: -150px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0 10px 10px;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 10px;
}

.logo img {
    /* width: 40px; */
    height: auto;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-col p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    margin-top: 1.5rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-input {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border: none;
    border-radius: 0 30px 30px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 2rem;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 45%;
        right: -30px;
    }

    .about-text {
        padding-right: 1rem;
    }

    .service-item,
    .feature-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    /* nav ul li {
        margin: 1rem 0;
    } */

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        padding: 5rem 0;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-item,
    .feature-item {
        min-width: 100%;
    }

    .event-card {
        width: 300px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 14px;
    }

    .event-card {
        width: 280px;
    }

    .event-content h3 {
        font-size: 1.1rem;
    }

    .footer-col {
        min-width: 100%;
    }
}

.carousel-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    margin-top: 30px;
    /* Reduced from 80px to 30px */
}

.carousel-container {
    position: relative;
    height: 500px;
    /* Reduced from 600px */
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3.5rem;
    /* Increased horizontal padding to avoid text overlap with arrows */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.previous {
    transform: translateX(-100%);
}

.slide-content {
    flex: 1;
    padding: 2rem;
    max-width: 50%;
}

.slide-content h1 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #20B2AA;
    /* Matching teal color from your site */
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

.slide-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slide-buttons .btn-primary {
    background-color: #20B2AA;
    /* Matching teal color from your site */
    color: white;
}

.slide-buttons .btn-outline {
    border: 2px solid #20B2AA;
    color: #20B2AA;
    background-color: transparent;
}

.slide-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide-image img {
    width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 5px;
    /* Moved from 20px to 5px */
}

.carousel-next {
    right: 5px;
    /* Moved from 20px to 5px */
}

.carousel-arrow i {
    font-size: 1.2rem;
    color: #20B2AA;
    /* Matching teal color from your site */
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: #20B2AA;
    /* Matching teal color from your site */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-slide {
        flex-direction: column;
        padding: 2rem 2rem;
    }

    .slide-content {
        max-width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .slide-buttons {
        justify-content: center;
    }

    .carousel-container {
        height: 650px;
    }

    .slide-image img {
        width: 400px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .slide-image img {
        width: 320px;
        height: 220px;
    }
}
