/* :root {
	 --primary-color: #1a365d;
	 --secondary-color: #2c5aa0;
	 --accent-color: #63b3ed;
	 --text-primary: #1a202c;
	 --text-secondary: #718096;
	 --bg-light: #f7fafc;
	 --bg-white: #fff;
	 --border-color: #e2e8f0;
	 --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	 --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
	 --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
	 --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
 * {
	 margin: 0;
	 padding: 0;
	 box-sizing: border-box;
} */


.main-menu__logo img {
    width: 75px;
}

.main-slider__title {
    font-size: 50px !important;
    line-height: 70px !important;
    /* margin-bottom: 20px !important; */
}


/* .main-slider__sub-title {
    font-size: 20px !important;
    padding: 8px 30px 8px !important;
} */

.main-slider__text {
    font-size: 24px !important;
    color: #ffffffff !important;
    margin-bottom: 15px;
}

.site-footer {
    padding: 30px 0 !important;
}

.venue-one__address {
    display: flex !important;
    margin-left: 0 !important;
    justify-content: space-around;
}


.venue-one__address li+li {
    margin-top: 0 !important;
}

.venue-one__address li:before {
    display: none !important;
}

.site-footer__bottom-logo img {
    width: 80px !important;
}

.main-menu__logo {
    padding: 15px 0 !important;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


.main-menu__social a {
    height: 40px !important;
}

.main-slider__curved-circle {
    bottom: 20px !important;
    right: 76px !important;
}

.follow-us-section {
    background-color: var(--envens-black);
}

.follow-us-section .site-footer__social:before {
    display: none;
}

.follow-us-section .site-footer__social {
    justify-content: center;
    margin-top: 35px !important;
    margin-left: 0 !important;
}

.follow-us-section .site-footer__social a {
    height: 60px !important;
    width: 60px !important;
}

.follow-us-section .fab,
.follow-us-section .fas {
    font-size: 30px !important;
}

.site-footer-two__bottom {
    background-color: #030215;
}

.about-one {
    padding: 70px 0 !important;
}

.about-one__points li p {
    font-size: 18px !important;
    color: #ffffff !important;
}

.about-one__points {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.main-slider__content {
    max-width: 795px !important;
}

.main-slider__title {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

.join-event__text {
    font-size: 18px !important;
    color: black !important;
    margin-top: 30px !important;
}


.pricing-one {
    padding: 100px 0 !important;
}


/* Committees Section */
.committees-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.committee-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #63b3ed;
}

.committee-card:hover::before {
    transform: scaleX(1);
}

.committee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.committee-icon.large {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    margin-right: 2rem;
}

.committee-icon i {
    font-size: 24px;
    color: white;
}

.committee-icon.large i {
    font-size: 32px;
}

.committee-card:hover .committee-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.committee-header {
    margin-bottom: 1.5rem;
}

.committee-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.committee-full-name {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-section {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #2c5aa0;
}

.agenda-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.agenda-title i {
    margin-right: 8px;
}

.agenda-text {
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 0;
    line-height: 1.5;
}

.committee-description {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

.committee-badge {
    margin-top: 1rem;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.special-committee {
    grid-column: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.special-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.special-committee .committee-name {
    color: white;
}

.special-committee .committee-full-name {
    color: rgba(255, 255, 255, 0.8);
}

.special-committee .committee-description {
    color: rgba(255, 255, 255, 0.9);
}

.special-committee .committee-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.special-committee:hover .committee-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Conclusion Section */
.conclusion-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 5rem 0;
    text-align: center;
}

.conclusion-content {
    max-width: 700px;
    margin: 0 auto;
}

.conclusion-content h2 {
    color: #1a365d;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.conclusion-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.conclusion-content p {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
}


/* .speaker-page__img {
    clip-path: none !important;
} */

.speaker-page__content {
    background-color: #030215 !important;
    border-top: 1px solid #ffffff !important;
}

.speaker-page__img-shape {
    background-color: #030215 !important;
}

.card-hover:hover {
    transform: scale(1.04);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.logo-box img {
    width: 80px !important;
}

.committee-icon-new {
    border: 1px solid #28282800 !important;
}

.speaker-page__content h3 a:hover {
    color: #ffffff !important;
}

/* Team Cards */

.teams-section {
    padding: 100px 0;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);

}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.team-card:hover .team-icon {
    transform: scale(1);
}

.team-content {
    padding: 30px;
}

.team-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.member:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(5px);
}

.member-role {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
    min-width: fit-content;
}

.member:hover .member-role {
    color: rgba(255, 255, 255, 0.9);
}

.member-name {
    font-weight: 500;
    font-size: 1rem;
}

/* Photography Special Card */
.photography-card {
    max-width: 600px;
    margin: 0 auto;
}

/* Closing Section */
.closing-section {
    padding: 60px 0 80px;
    color: white;
    text-align: center;
}

.closing-content {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.closing-text {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.closing-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 1px;
}

.decoration-star {
    font-size: 1.5rem;
    color: #ffd93d;
    animation: pulse 2s infinite;
}

.page-header {
    padding: 190px 0 90px !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.main-slider .blog-one__btn {
    font-size: 14px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.venue-one__left:before {
    display: none !important;
}


/* Conatct Css */

.content-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {

    font-size: 2.8rem;
    font-weight: 600;
    color: #1a4b8c;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.08);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a4b8c, #d4af37, #2c5aa0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 75, 140, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a4b8c, #2c5aa0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-card.venue .contact-icon {
    background: linear-gradient(135deg, #1a4b8c, #1e3a72);
}

.contact-card.date .contact-icon {
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.contact-card.phone .contact-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.contact-card.email .contact-icon {
    background: linear-gradient(135deg, #6f42c1, #563d7c);
}

.contact-card.social .contact-icon {
    background: linear-gradient(135deg, #e83e8c, #d63384);
}

.contact-title {

    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4b8c;
    margin-bottom: 15px;
}

.contact-info {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #1a4b8c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

.contact-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

.cta-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #e8f1ff, rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    padding: 50px 40px;
    border: 2px solid rgba(26, 75, 140, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {

    font-size: 2.2rem;
    font-weight: 600;
    color: #1a4b8c;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #1a4b8c, #2c5aa0);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 75, 140, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 75, 140, 0.4);
    color: #ffffff;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #1a4b8c;
    padding: 13px 35px;
    border-radius: 50px;
    color: #1a4b8c;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-secondary-custom:hover {
    background: #1a4b8c;
    color: #ffffff;
}

.event-highlight {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #d4af37;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.event-date-badge {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.stats-section {
    background: #0d1929;
    color: #ffffff;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {

    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 30px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .content-section {
        padding: 60px 0;
    }

    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .team-image-container {
        height: 250px;
    }

    .team-content {
        padding: 25px;
    }

    .team-title {
        font-size: 1.5rem;
    }

    .member {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .closing-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .teams-section {
        padding: 40px 0;
    }

    .team-image-container {
        height: 200px;
    }

    .team-content {
        padding: 20px;
    }

    .closing-section {
        padding: 40px 0 60px;
    }
}

/* Scroll animations */
.team-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .committees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .committee-card {
        padding: 1.5rem;
    }

    .special-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .committee-icon.large {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .conclusion-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .committee-card {
        padding: 1.25rem;
    }

    .committees-grid {
        grid-template-columns: 1fr;
    }

    .venue-one__address {
        display: block !important;
    }

    .main-slider .swiper-slide-active .main-slider__title {
        font-size: 40px !important;
        line-height: 55px !important;
        text-align: center;
    }

    .main-slider .container {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .main-slider__content {
        padding-top: 50px !important;
        padding-bottom: 55px !important;
    }

    .venue-one__address li {
        align-items: center !important;
        justify-content: center !important;
    }

    .venue-one__address li .content p {
        text-align: center !important;
    }

    .venue-one__address li .content {
        text-align: center !important;
    }

    .main-slider .blog-one__btn {
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .page-header {
        padding: 140px 0 65px !important;
    }

    .page-header__inner {
        text-align: center !important;
    }

    .join-event__single {
        height: auto !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .speaker-page__content {
        margin-right: 0 !important;
    }

    .speaker-page {
        padding: 80px 0 !important;
    }



    .main-slider__img {
        display: block !important;
    }

    .main-slider__content {
        margin-top: 45px;
    }

    .main-slider__shape-1,
    .main-slider__shape-2,
    .main-slider__shape-3 {
        display: none !important;
    }

    .main-slider .blog-one__btn {
        margin-top: 30px;
    }

    .site-footer-two__bottom-text {
        font-size: 14px !important;
    }

    .page-header__inner h4{
        font-size: 14px !important;
    }
}

/* @media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .committee-card {
        padding: 1.25rem;
    }

    .committees-grid {
        grid-template-columns: 1fr;
    }

    .venue-one__address {
        display: block !important;
    }

} */

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.committee-card {
    animation: fadeInUp 0.6s ease forwards;
}

.committee-card:nth-child(1) {
    animation-delay: 0.1s;
}

.committee-card:nth-child(2) {
    animation-delay: 0.2s;
}

.committee-card:nth-child(3) {
    animation-delay: 0.3s;
}

.committee-card:nth-child(4) {
    animation-delay: 0.4s;
}

.committee-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.committee-card:focus-within {
    outline: 2px solid #63b3ed;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }

    .committee-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}