/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 999;


}

#header.header-scrolled,
#header.header-inner {
	background: var(--main);
	height: 80px;
}

#header #logo {
	color: #ffff;
}

#header #logo img {
	margin: 0 10px;
	max-height: 100px;
}

@media (max-width: 992px) {
	#header #logo img {
		max-height: 80px;
	}
}

/*--------------------------------------------------------------
	# Desktop Navigation Menu
--------------------------------------------------------------*/

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--button-color);
	font-weight: 400;
	font-size: 18px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	margin-left: 20px;
	text-transform: capitalize;

}

.navbar a:hover,
.navbar li:hover>a {
	color: var(--hover);
}

/*--------------------------------------------------------------
	# Mobile Navigation Menu
--------------------------------------------------------------*/

.mobile-nav-toggle {
	color: var(--button-color);
	font-size: 32px;
	cursor: pointer;
	background: var(--gradient);
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background: var(--gradient);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--hover);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}/*========================================
=            Home Section CSS            =
========================================*/
#home {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

#home .bg-img-sec {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding: 0rem 0 4rem 0;
    /* filter: brightness(0.5); */
}

#home .bg-img-sec img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#home .home-container {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
}

/* Tagline & Event Info */
.tagline {
    color: var(--color-white-solid, #FFF);
    font-family: 'Inter', sans-serif;
    font-size: 73.887px;
    font-style: normal;
    font-weight: 900;
    line-height: 75.509px;
}

.event-date {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 12px 0;
    width: 100%;
    text-align: start;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.event-logo {
    max-width: 100%;
    height: auto;
    display: block;
}

img.company-logo {
    float: inline-end;
    max-width: 250px;
    height: auto;
    display: block;
    width: 100%;
}

.organized-by {
    text-align: center;
    margin-top: 10px;
}

/* Countdown Timer */
#timer {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 15px;
}

.timer-item {
    line-height: 30px;
}

.timer-value {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-light);
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: solid 1px rgba(255, 255, 255, 0.36);
    transition: transform 0.3s ease-in-out;
    padding-top: 10px;
}

#timer .timer-value span {
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}


/*========================================
=            Responsive Design           =
========================================*/

@media (max-width: 1200px) {
    #home .bg-img-sec {

        padding: 0;
    }

    #home .home-container {
        top: 10%;
    }

    .tagline {
        font-size: 2.1rem;
    }

    .event-date {
        font-size: 1.1rem;
        width: 90%;
    }

    .timer-value {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    #home .home-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #timer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .timer-item {
        flex-direction: column;
        gap: 5px;
    }



    .tagline {
        font-size: 3rem;
        line-height: 1.3;
    }

    .event-date {
        font-size: 1rem;
        width: 100%;
    }

    .event-logo {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    #home .home-container {
        top: 20%;
        
    }

    #home .bg-img-sec {
        min-height: 300px;
        height: 60vh;
        padding: 0;
    }

    .company-logo {              
       margin: 0 4rem 0 0;     
    }

    .event-logo {
        max-width: 50%;
        margin: auto;
    }

    .tagline {
        font-size: 3rem !important;
        line-height: 1.2;
        text-align: center;
    }

    .event-date {
        font-size: 1rem !important;
        padding: 8px 0;
        text-align: center;
    }


}

@media (max-width: 575px) {
    #home .bg-img-sec {
        min-height: 200px;
        height: 40vh;
    }




    .event-logo {
        max-width: 80%;
        margin-top: 10px;
    }

    .tagline {
        font-size: 3rem !important;
        line-height: 1.1;
    }

    .event-date {
        font-size: 1rem;
        padding: 6px 0;
    }



    .timer-container {
        padding: 8px;
    }

    #home .home-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .event-logo {
        max-width: 95%;
    }

    .tagline {
        font-size: 3rem;
    }

    .event-date {
        font-size: 2rem;
    }


}  #about-us {
        position: relative;
        padding: 80px 0;
        overflow: hidden;
        background: url('../img/banner/about-us.png') center/cover no-repeat fixed;
    }

    #about-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 0;
    }

    .summit_objective {
        position: relative;
        z-index: 1;
    }

    /* Gradient Blur Effect (Bottom Right) */
    .gradient-blur-effect {
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 761.682px;
        height: 761.682px;
        border-radius: 761.682px;
        background: linear-gradient(180deg, rgba(68, 0, 43, 0.21) 0%, rgba(0, 25, 255, 0.21) 100%);
        filter: blur(57.45px);
        z-index: 0;
    }

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--color-light);
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        animation: fadeIn 1.5s ease-in-out;
        text-transform: uppercase;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 2;
        /* Ensure content stays above gradient blur */
    }

    .text-field {
        font-size: 16px;
        line-height: 1.5;
        color: var(--color-light);
        transition: transform 0.3s ease-in-out;
        text-align: left;
    }

    .text-field:hover {
        transform: scale(1.02);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 28px;
        }

        .glass-card {
            padding: 20px;
        }

        .gradient-blur-effect {
            width: 400px;
            height: 400px;
            bottom: -50px;
            right: -50px;
        }
    }  /* Import Wallpoet from Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Wallpoet&display=swap');

    

   

    .counter-content-wrapper {
        height: 100%;
    }

    .counter-items-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .counter-box.clean {
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 120px;
        border-bottom: #fff solid 1px;
    }

    .count-num {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1;
        color: #fff;
        font-family: 'Wallpoet', sans-serif;
    }

    .smalltext {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4;
        color: #fff;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.5rem;
    }

    .z-index-n1 {
        z-index: -1;
    }

    /* RTL specific styles */
    html[dir="rtl"] .counter-box.clean {
        text-align: center;
        /* Keep centered even in RTL */
    }

    @media (max-width: 992px) {
        .counter-image-wrapper {
            min-height: 350px;
        }

        .count-num {
            font-size: 2.8rem;
        }

        .section-header h2 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .row.align-items-center {
            flex-direction: column;
        }

        .col-lg-9,
        .col-md-9,
        .col-lg-3,
        .col-md-3 {
            width: 100%;
            max-width: 100%;
        }

        .counter-content-wrapper {
            padding: 2rem 1rem;
        }

        .counter-items-wrapper {
            max-width: 100%;
        }

        .counter-box.clean {
            min-height: 100px;
        }
    }


/*-------------------------------------------------------------
  # facts-and-figure Section 
--------------------------------------------------------------*/
#facts-and-figure{
    padding: 4rem 0;
}

.facts-and-figure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Image Container */
.innerbox {
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    width: 100%;
}

.facts-and-figure img {
    width: 100%;
    margin: 1.875rem 0;
    z-index: 99;
    cursor: pointer;
}

/* Text Overlay */
.text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

.image-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.image-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
}

/* Image Styling */
.bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 1.25rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0 0.3125rem 0.9375rem;
}

/* Hover Effects */
.innerbox:hover {
    transform: translateY(-0.625rem) scale(1.02);
    box-shadow: 0 1.5625rem 2.5rem rgba(0, 0, 0, 0.15);
}

.innerbox:hover .bg-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

/*-------------------------------------------------------------
  # Owl Carousel - Universal RTL/LTR Support
--------------------------------------------------------------*/
.owl-carousel {
    direction: ltr;
    /* Force LTR direction for carousel controls */
}

[dir="rtl"] .owl-carousel .owl-stage-outer {
    direction: rtl;
    /* Only reverse content direction */
}

/* .owl-carousel .owl-nav {
  position: relative;
  margin-top: 0.3125rem;
} */

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
    border: none;
    background: rgba(255, 255, 255, 0.1) !important;
    margin: 0;
    padding: 0;
}

/* Default LTR positions */
.owl-carousel .owl-prev {
    left: -1.875rem;
    right: auto;
}

.owl-carousel .owl-next {
    right: -1.875rem;
    left: auto;
}

/* RTL position overrides */
[dir="rtl"] .owl-carousel .owl-prev {
    left: auto;
    right: -1.875rem;
}

[dir="rtl"] .owl-carousel .owl-next {
    right: auto;
    left: -1.875rem;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(161, 196, 253, 0.3) !important;
}

/* Dots */
.owl-carousel .owl-dots {
    margin-top: 0.3125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
    /* Force LTR for dots */
}

.owl-carousel button.owl-dot {
    margin: 0 0.3125rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.owl-carousel button.owl-dot.active {
    background: var(--hover);
}

/* Responsive Styles */
@media (max-width: 992px) {
    
}

@media (max-width: 768px) {   

    .image-title {
        font-size: 1.2rem;
    }

    .image-description {
        font-size: 1.2rem;
    }

    .owl-carousel .owl-nav button {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem !important;
    }

    .owl-carousel .owl-prev {
        left: -0.625rem;
    }

    .owl-carousel .owl-next {
        right: -0.625rem;
    }

    [dir="rtl"] .owl-carousel .owl-prev {
        right: -0.625rem;
    }

    [dir="rtl"] .owl-carousel .owl-next {
        left: -0.625rem;
    }
}

@media (max-width: 576px) {  
    .text-overlay {
        padding: 1rem;
    }
}

   /* RTL adjustments */
   html[dir="rtl"] .expect-container {
       text-align: right;
   }

   html[dir="rtl"] .expect-icon {
       margin-left: 0;
       margin-right: -15px;
   }

   /* Keep all existing styles */
   .expect-container {
       padding: 20px;
       height: 100%;
       border-radius: 8px;
       transition: all 0.3s ease;
   }

   .expect-icon {
       margin-bottom: 15px;
   }

   .expect-title {
       font-size: 1.2rem;
       margin-bottom: 10px;
       color: var(--dark);
   }

   .expect-desc {
       color: var(--gray);
       font-size: 0.9rem;
   }

   .section {
       padding: 5rem 0;
   }

   .section-header h2 {
       font-size: 2.5rem;
       font-weight: 700;
       margin-bottom: 1rem;
       text-align: center;
   }

   .section-header p {
       font-size: 1.2rem;
       max-width: 700px;
       margin: 0 auto;
   }

   .expect-container {
       background: white;
       border-radius: 12px;
       border: 1px solid rgba(0, 0, 0, 0.1);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       padding: 30px;
       height: 100%;
       transition: all 0.3s ease;
       text-align: center;
   }

   .expect-container:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
       border-color: var(--main);
   }

   .expect-icon {
       width: 70px;
       height: 70px;
       border-radius: 50%;
       background: rgba(0, 123, 255, 0.1);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 20px;
       color: var(--main);
       font-size: 1.5rem;
   }

   .expect-title {
       font-size: 1.3rem;
       font-weight: 600;
       margin-bottom: 15px;
       color: #2c3e50;
   }

   .expect-desc {
       font-size: 1rem;
       line-height: 1.6;
       color: #555;
       margin-bottom: 0;
   }

   /* Responsive adjustments */
   @media (max-width: 991px) {
       .section-header h2 {
           font-size: 2rem;
       }

       .expect-container {
           padding: 25px;
       }

       .expect-icon {
           width: 60px;
           height: 60px;
       }
   }

   @media (max-width: 767px) {
       .section-header h2 {
           font-size: 1.8rem;
       }

       .expect-title {
           font-size: 1.2rem;
       }
   }

   @media (max-width: 575px) {
       .section {
           padding: 3rem 0 !important;
       }

       .expect-icon {
           width: 50px;
           height: 50px;
           font-size: 1.2rem;
       }

       .expect-title {
           font-size: 1.1rem;
       }

       .expect-desc {
           font-size: 0.9rem;
       }
   }/* Base Styles */
#partners,
.media-partners-section {
    background: #fff;
    padding: 5rem 0;
    color: #000;
    position: relative;
    overflow: hidden;
}

.section-header h2 {
    color: #000;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Grid Layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 1.25rem 0;
    position: relative;
    z-index: 2;
}

/* Partner Cards */
.media-partner-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-partner-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.media-partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Logo Container */
.logo-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logo-container img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    background-color: white;
}

/* Hover Effects */
.media-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(161, 196, 253, 0.3);
}

.media-partner-card:hover::before {
    opacity: 1;
}

.media-partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .logo-container {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .media-partners-section {
        padding: 2.5rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .logo-container {
        height: 60px;
    }
}

/* Carousel Styles - Only include if needed */
.media-partner-carousel {
    display: none; /* Hidden by default */
}

.media-partner-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.media-partner-carousel .owl-item {
    padding: 0 0.625rem;
}

.media-partner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.media-partner-carousel .owl-prev,
.media-partner-carousel .owl-next {
    background: rgba(255, 255, 255, 0.1) !important;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
}

.media-partner-carousel .owl-prev:hover,
.media-partner-carousel .owl-next:hover {
    background: rgba(161, 196, 253, 0.3) !important;
}#footer {
	padding: 20px 0 20px 0;
	z-index: 99;
	background: var(--color-light);
	background-size: cover;
	position: relative;
	color: var(--color-dark);
}

#footer .footer-top {
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 26px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: var(--color-dark);
}



#footer .footer-top .ucon-logo1 {
	width: 100%;
	margin-bottom: 10px;
	margin-left: -20px;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: var(--color-dark);
}

#footer .footer-top .social-links a {
	display: inline-block;
	color: #ffffff;
	line-height: 1;
	margin-right: 4px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, var(--main), var(--hover));
	color: var(--color-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px var(--main);
}

#footer .footer-top .social-links a i {
	line-height: 0;
	font-size: 18px;
	color: var(--color-light);
}

#footer .footer-top .social-links a:hover {
	color: var(--hover);
}

#footer .footer-top .social-links a i:hover {
	color: var(--hover);
}

#footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: var(--color-dark);
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--main);
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links p {
	line-height: 26px;
	color: var(--color-dark);
}

#footer .footer-top .footer-links ul i {
	padding-right: 5px;
	color: var(--main);
	font-size: 18px;
	font-weight: 500;
}

#footer .footer-top .footer-links ul li {

	padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {

	color: var(--color-dark);

}

#footer .footer-top .footer-links ul a:hover {
	color: var(--hover);
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
	color: var(--color-dark);
}

#footer .footer-top .footer-contact a {
	color: var(--color-dark);

}

#footer .cr {
	color: var(--color-dark);
}.button1 {
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 15px 30px;
    border-radius: 10px;
    /* width: 100%;
    height: 100%; */
    background: linear-gradient(45deg, var(--main), var(--hover));
    color: var(--color-light);
    border: none;
    box-shadow: 0 8px 20px var(--main);
    transform: translateY(0);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button1:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px var(--hover);
    background: linear-gradient(45deg, var(--hover), var(--main));
}

.button1:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 12px var(--main);
}
 .button2 {
    display: inline-block;
    padding: 0.6rem 1.5rem !important;
    background: var(--button-color);
    color: var(--main) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Shimmer Overlay */
.button2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    z-index: 2;
}

/* Hover Effects */
.button2:hover::before {
    animation: shimmer 0.8s ease-in-out forwards;
}

@keyframes shimmer {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.button2:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 14px 28px rgba(154, 20, 203, 0.3), 0 10px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--hover), var(--main));
    color: var(--color-light) !important;
}

.button2:active {
    transform: scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;600;700;900&display=swap');

:root {
	--main: #000;
	--hover: #775fe7;
	--mainbg: #000;
	--hoverbg: #ffffff;
	--button-color: #fff;
	--color-light: #fff;
	--color-dark: #000;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	z-index: 99;
	overflow-x: hidden;
	background-color: var(--mainbg);
	color: var(--color-light);
}

a {
	color: #942581;
	text-decoration: none;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: #f8234a;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin: 0 0 10px 0;
	padding: 0;
}

img {
	max-width: 100%
}

/*--------------------------------------------------------------
	# General Classes
--------------------------------------------------------------*/
.displaynone,
.d-none {
	display: none
}

.v-hidden {
	visibility: hidden;
}

.owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 400;
	color: #fff;
}

.owl-prev {
	position: absolute;
	top: 25%;
	left: -10px;
}

.owl-next {
	position: absolute;
	top: 25%;
	right: -10px;
}

.owl-dots {
	margin-top: 5px;
	text-align: center;
}

.owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
}

.owl-dot.active {
	background-color: #43d7dd;
}

/*--------------------------------------------------------------
	# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
 
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 9996;
	background: #fff0;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 1px solid var(--main);
}

.back-to-top i {
	font-size: 28px;
	color: var(--hover);
	line-height: 0;
}

.back-to-top:hover {
	background: #fff0;
	border: 1px solid var(--hover);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 999;


}

#header.header-scrolled,
#header.header-inner {
	background: var(--main);
	height: 80px;
}

#header #logo {
	color: #ffff;
}

#header #logo img {
	margin: 0 10px;
	max-height: 100px;
}

@media (max-width: 992px) {
	#header #logo img {
		max-height: 80px;
	}
}

/*--------------------------------------------------------------
	# Desktop Navigation Menu
--------------------------------------------------------------*/

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--button-color);
	font-weight: 400;
	font-size: 18px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	margin-left: 20px;
	text-transform: capitalize;

}

.navbar a:hover,
.navbar li:hover>a {
	color: var(--hover);
}

/*--------------------------------------------------------------
	# Mobile Navigation Menu
--------------------------------------------------------------*/

.mobile-nav-toggle {
	color: var(--button-color);
	font-size: 32px;
	cursor: pointer;
	background: var(--gradient);
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background: var(--gradient);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--hover);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

/*--------------------------------------------------------------
	# Button States
--------------------------------------------------------------*/
.default-button {
	color: #000000;
	background: #fff;
	padding: 7px 22px !important;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 700 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	/*border: none;*/
}

.default-button:hover,
.default-button:focus {
	background: var(--hover);
	color: #fff;
}

.bt-button {
	background: var(--gradient);
	border: none !important;
	padding: 12px 22px !important;
	margin: 0 0 0 15px;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	font-weight: 500 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 2px solid var(--main);
}

.bt-button:hover {
	background: linear-gradient(45deg, var(--main), var(--hover));
	color: var(--color-light) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px var(--main);
}

.model-close-button {
	color: var(--button-color);
	background: var(--gradient);
	padding: 7px 22px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: none;
	margin-left: 15px;
}

.model-close-button:hover,
.model-close-button:focus {
	color: #000;
	background: var(--gradient);
}



/*--------------------------------------------------------------
	# counter
--------------------------------------------------------------*/




/*-------------------------------------------------------------
	# regions-covered Section   
--------------------------------------------------------------*/



#regions-covered .img {
	position: relative;
}

#regions-covered .percentage {
	position: absolute;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	left: 0;
	color: var(--color-light);
	width: 100%;
	bottom: -5px;
}

/* Map Container */
.map-container {
	position: relative;
}

/* Pin Design */
.pin {
	position: absolute;
	width: 15px;
	height: 15px;
	background: rgb(255, 221, 0);
	border-radius: 50%;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
	animation: blink 1.5s infinite alternate;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 15px;
	font-weight: bold;
	padding: 2px 5px;
	transform: translate(-50%, -50%);
}

/* Blinking Animation */
@keyframes blink {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0.3;
		transform: scale(1.3);
	}
}


/*-------------------------------------------------------------
	# whyattend Section   
--------------------------------------------------------------*/
#whyattend {
	padding: 60px 0 40px 0;
	background: url(../img/banner/whyindia.png) top center no-repeat;
	background-size: cover;
	position: relative;
}

#whyattend .col-md-3 {
	background-color: #fff;
	padding: 40px 45px;
	box-shadow: 0px 3px 50px #00000029;
	margin: 0 15px;
}

#whyattend img {
	width: 30px;
}

#whyattend h3 {
	font-size: 24px;
	font-weight: 600;
	padding: 10px 0;
	margin: 0;
}

#whyattend p {
	font-size: 15px;
	color: #757095;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}

#feactureddiscussion {
	padding: 60px 0 40px 0;
}

#feactureddiscussion .testimonial-item {
	padding: 60px 40px;
	background: #9119F5 0% 0% no-repeat padding-box;
	margin: 0 10px;
}

#feactureddiscussion .testimonial-item img {
	width: 40px;
}

#feactureddiscussion .testimonial-item p {
	color: #fff;
	padding: 10px 0;
	line-height: 1.4;
}


/*-------------------------------------------------------------
	#Speaker Section
--------------------------------------------------------------*/
/*-------------------------------------------------------------
	# attend Section
--------------------------------------------------------------*/



#attend ul {
	margin-bottom: 0;
}

#attend ul li {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 5px;
	padding-left: 1px;
}


/*-------------------------------------------------------------
	# voicetechin Section 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
	# mediac
--------------------------------------------------------------*/
#mediac {
	padding: 5rem 0;
	z-index: 99;
	text-align: center;
	background: url('../img/banner/feature-section-1-bg.png') top center no-repeat;
	background-size: cover;
	position: relative;
	background-color: var(--color-dark);
}



#mediac .count-num {
	font-weight: 600;
	font-size: 40px;
	letter-spacing: -1px;
	margin-top: 20px;
	color: var(--color-light);
}

#mediac .smalltext {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--color-light);
	font-weight: 600;
}



/*--------------------------------------------------------------
	# supporters
--------------------------------------------------------------*/


/*--------------------------------------------------------------
	# attending-companies
--------------------------------------------------------------*/

/*--------------------------------------------------------------
	# vip-registration 
--------------------------------------------------------------*/

#vip-registration {
	padding: 100px 0 30px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}



#vip-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#vip-visitor-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#vip-visitor-form label {
	font-weight: 600;
	font-size: 17px;
	color: #000;
}

#vip-visitor-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#vip-registration .section-header p {
		width: 90%;
	}
}

#vip-registration #vip-visitor-form .row {
	color: #000;
}

#vip-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#vip-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#vip-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#vip-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#vip-registration #vip-visitor-form .Heading {
	text-align: center;
	font-size: 22px;
}

#vip-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#vip-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#vip-registration .vip-Msg {
	color: #fff;
	padding: 15px 0;
	margin: 0;
	text-align: center;
	align-items: center;
}

#vip-registration .vip-Msg h2 {
	text-transform: Uppercase;
	font-size: 40px;
	font-weight: 800;
}

#vip-registration .vip-Msg p {
	font-size: 18px;
}

#vip-registration .vip-Msg h5 {
	font-size: 20px;
}

.vip-sponsor-bio {
	color: #000;
}

/*--------------------------------------------------------------
	# attendee-registration 
--------------------------------------------------------------*/
#attendee-registration {
	padding: 100px 0 30px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}



#attendee-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#attendee-registration-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#attendee-registration-form label {
	font-weight: 400;
	font-size: 17px;
	color: #000;
}

#attendee-registration-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#attendee-registration .section-header p {
		width: 90%;
	}
}

#attendee-registration #attendee-registration-form .row {
	color: #000;
}

#attendee-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#attendee-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#attendee-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#attendee-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#attendee-registration #attendee-registration .Heading {
	text-align: center;
	font-size: 22px;
}

#attendee-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#attendee-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#attendee-registration .vip-Msg {
	color: #000;
	padding: 30px 0;
	margin: 0;
}


/*--------------------------------------------------------------
	# faq
--------------------------------------------------------------*/



.card-body {
	color: #000;
}

.card-header a {
	color: #000;
}

/*--------------------------------------------------------------
	# contact-page
--------------------------------------------------------------*/

.page-not-found {
	background: #181818;
	padding: 300px 0;
}

.page-not-found .heading {
	color: #fff;
	font-size: 40px;
	text-align: center;
}

.page-not-found .btn-danger {
	padding: 10px 30px;
}

.page-not-found .btn-danger a {
	color: #fff;
}

/*--------------------------------------------------------------
	# terms-conditions
--------------------------------------------------------------*/

#terms-conditions {
	padding-top: 8%;
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}



/*--------------------------------------------------------------
	# privacy-policy
--------------------------------------------------------------*/



/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/


@media(max-width:767px) {
	#home {
		margin-bottom: 0px;
	}

	#home .bg-img-sec {
		position: relative;
		height: 100%;
	}

	

	#home .text-sec {
		padding-top: 0px;
	}

	#home .banner-logo {
		border: none;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	#home .eventname {
		padding-top: 60px;
		font-size: 42px;
		font-weight: 800;
		margin-bottom: 0px;
	}

	

	#home .date {
		font-size: 40px;
		font-weight: 500;
		margin-top: 10px;
		margin-bottom: 10px;
		line-height: 1.4;
	}

	#home .d-flex {
		display: block !important;
	}

	#home .d-flex a {
		display: table !important;
		margin: auto;
		min-width: 210px;
	}

	#home .register-button {
		padding: 12px 22px;
		font-weight: 800;
		font-size: 16px;
		line-height: 22px;
		white-space: nowrap;
	}

	#home .register-button:hover,
	#home .register-button:focus {
		color: var(--hover);
		background-color: #fff;
	}

}

@media(max-width:767px) {
	.circle {
		width: 70px !important;
		height: 70px !important;

	}

	#timer-sec {
		margin: auto;
		padding: 0 0 10px 0;
		margin-top: -5px;
	}

	#timer-sec .timer-banner div {
		padding: 6px 0px;
	}

	#timer-sec .timer-banner #days,
	#timer-sec .timer-banner #hours,
	#timer-sec .timer-banner #minutes,
	#timer-sec .timer-banner #seconds {
		font-size: 30px;
	}

	#timer-sec .timer-banner #seconds {
		font-size: 25px;
	}

	#timer-sec .timer-banner span {
		font-size: 16px;
	}

	#timer-sec .about-btn {
		padding: 12px 60px;
		font-size: 10px;
		margin-left: 18px;
	}

	#timer-sec .col-md-5 {
		margin: 30px 0px;
	}

	.section-header {
		margin-bottom: 0px;
	}

	.summit_objective {
		padding: 50px 15px;
	}

	.summit_objective .section-header {
		margin-bottom: 30px;
	}

	.summit_objective .heading {
		font-size: 28px;
	}

	#program img {
		height: auto;
	}

	.summit_objective .robot-img {
		float: right;
		width: 60%;
	}

	.summit_objective .text {
		font-size: 14px;
		padding-right: 0;
		text-align: justify;
	}

	#counter {
		padding: 40px 0 0px 0;
	}

	#counter .left-text {
		padding: 30px;
	}


	#attend h1 {
		font-size: 27px;
	}

	

	.section-header h2 {
		font-size: 20px;
	}

	#clients {
		padding: 30px 0 30px 0;
	}

	#clients .row {
		padding: 20px 10px;
	}

	#clients .our_client_logo {
		width: 90%;
	}

	#clients .owl-nav {

		display: none !important;

	}

	#ranking .firstcharacter {
		font-size: 100px;
	}

	#ranking .firstcharacterb {
		font-size: 100px;
	}

	#ranking h6 {
		padding-bottom: 20px;
	}




	#init {
		padding: 0px;
	}

	#init .sec2 {
		padding-top: 0px;
	}

	#init .box {
		height: auto;
	}

	#init .about-btn {
		padding: 15px 14px;
		font-size: 15px;
	}

	#init .sec2 h1 {
		margin-top: 20px;
	}

	#sponsors {
		padding: 40px 0 0 0;
	}

	.voicetechin h6 {
		font-size: 20px;
		margin: 0;
	}

	.voicetechin h4 {
		font-size: 24px;
		margin: 0;
	}

	.voicetechin h5 {
		font-size: 26px;
	}

	.benifits {
		font-size: 10px;
		padding: 3px 8px;
	}

	.contact-page .address {
		padding: 16px 0 10px 0;
	}

	.contact-page label {
		font-size: 11px;
	}


	#contact-sec .col-md-6 {
		margin-bottom: 20px;
	}

	#vip-registration .finally .form-check-label {
		font-size: 13px !important;
		margin-top: -27px !important;
	}

	#faq,
	#terms-conditions,
	#privacy-policy {
		padding-top: 30%;
	}

	#services .border-right {
		border-right: none;
		border-bottom: 3px solid #ffff;
		padding-bottom: 15px;
	}

	.voicetechin .owl-nav {

		display: none !important;

	}
}


.mobile-only {
	display: none !important;
}

@media(max-width:767px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block !important;
	}
}

.displaydetails .table {
	border: 1px solid #fff;
	color: #fff;
	margin-top: 20px;
}

#in_visitor-sec,
#visitor-sec {
	position: relative;
	color: white;
	margin: auto;

}

