/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Inter", serif;
    --heading-font: "Inter", serif;
    --nav-font: "Inter", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--black: #000000;
	--white: #ffffff;
	--gradient1: #5B3E94;
	--gradient2: #679FD5;
	/* --theme-color: #0D528A; */
	--theme-color: #000000;
	
	
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #212958; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e5eaee; /* The default color of the main navmenu links */
    --nav-hover-color: #4985be; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4985be; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000910;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    /* padding-top: 100px; */
    padding-top: 127px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    /* max-height: 80px; */
    margin-right: 8px;
    /* width: 300px; */
    width: 350px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    font-size: 14px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}
header.fixed-top {
	background-color: var(--white);
}

/* .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0);
} */

/* Global Header on Scroll
------------------------------*/
/* .scrolled .header {
    --background-color: rgba(0, 0, 0);
} */
@media screen and (min-width: 1150px) and (max-width: 1250px) {
    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 5px !important;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }
	
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        /*color: var(--accent-color);*/
        font-size: 14px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #4985be;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
        /*color: var(--nav-dropdown-hover-color);*/
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	body {
		padding-top: 87px;
	}
	.header {
		padding: 6px 0px;
	}
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 3px;
    font-size: 13px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--gradient1), transparent 20%);
    color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding-top: 40px;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
*/
.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 400;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}

.services .img img {
    transition: 0.6s;
}

.services .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 10px;
    /* margin: -100px 30px 0 30px;*/
    transition: all ease-in-out 0.3s;
    position: inherit;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(45deg, #0285ce, #2734a0);
    color: #fff;
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.services .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 20px;
    transition: ease-in-out 0.3s;
}

.services .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover .details h3 {
    font-weight: bold;
    background: linear-gradient(45deg, #0285ce, #2734a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services .service-item:hover .details .icon {
    background: #fff;
    border: 2px solid #2734a0;
}

.services .service-item:hover .details .icon i {
    color: var(--accent-color);
}

.services .service-item:hover .img img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.features .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.features .nav-link.active h4 {
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.services-2 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.services-2 .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services-2 .service-item .title a {
    color: var(--heading-color);
}

.services-2 .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

.services-2 .service-item:hover {
    border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-content {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

.team .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
}

.team .member .member-info {
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
    color: var(--accent-color);
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

.time-box {
    background-color: #ffffff; /* White boxes */
    color: #0d6efd; /* Blue text for numbers and labels */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px; /* Rounded corners for boxes */
}

.time-box h2 {
    font-size: 2.5rem; /* Large font for countdown numbers */
}

.time-box p {
    font-size: 0.9rem; /* Smaller font for labels */
    margin-top: 5px;
}

.event-details p {
    font-size: 1.1rem; /* Font size for event details */
    margin: 5px 0;
}

.event-date,
.event-location {
    font-weight: 500; /* Slightly bold text for event details */
}

.btn-primary4 {
    color: #fff;
    background: linear-gradient(90deg, #d56b2c, #c42a05, #980032);
    padding: 10px 15px;
    display: inline-block;
    border: none;
    border-radius: 50px; /* Fully rounded corners */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Inter", serif;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    width: 150px;
    text-align: center;
    position: relative; /* For positioning the arrow */
}

.btn-primary4:hover {
    color: #980032;
    background: #fff;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Add the ">" arrow */
.btn-primary4::after {
    content: "";
    position: absolute;
    right: 15px; /* Position it inside the button */
    top: 47%;
    transform: translateY(-50%);
    font-size: 14px; /* Adjust as needed */
    color: inherit; /* Matches the text color */
}

.btn-primary3 {
    color: #EC7B38;
    background: #fff;
    padding: 10px 15px;
    display: inline-block;
    border: none;
    border-radius: 50px; /* Fully rounded corners */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Inter", serif;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    width: 180px;
    text-align: center;
    position: relative; /* For positioning the arrow */
}

.btn-primary3:hover {
    color: #0D528A;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Add the ">" arrow */
.btn-primary3::after {
    content: "";
    position: absolute;
    right: 15px; /* Position it inside the button */
    top: 47%;
    transform: translateY(-50%);
    font-size: 14px; /* Adjust as needed */
    color: inherit; /* Matches the text color */
}

@media screen and (min-width: 1150px) and (max-width: 1250px) {
    .btn-primary4 {
        color: #fff;
        background: linear-gradient(90deg, #d56b2c, #c42a05, #980032);
        padding: 10px 5px;
        display: inline-block;
        border: none;
        border-radius: 50px; /* Fully rounded corners */
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-family: "Inter", serif;
        font-size: 9px;
        font-style: normal;
        font-weight: bold;
        text-transform: uppercase;
        width: 110px;
        text-align: center;
        position: relative; /* For positioning the arrow */
    }

    .btn-primary4:hover {
        color: #980032;
        background: #fff;

        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    /* Add the ">" arrow */
    .btn-primary4::after {
        content: "";
        position: absolute;
        right: 15px; /* Position it inside the button */
        top: 47%;
        transform: translateY(-50%);
        font-size: 14px; /* Adjust as needed */
        color: inherit; /* Matches the text color */
    }
	
    .btn-primary3 {
        color: #EC7B38;
        background: #fff;
        padding: 10px 5px;
        display: inline-block;
        border: none;
        border-radius: 50px; /* Fully rounded corners */
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-family: "Inter", serif;
        font-size: 9px;
        font-style: normal;
        font-weight: bold;
        text-transform: uppercase;
        width: 120px;
        text-align: center;
        position: relative; /* For positioning the arrow */
    }

    .btn-primary3:hover {
		color: #0D528A;
	    background: #fff;
	    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }
	
	
    /* Add the ">" arrow */
    .btn-primary3::after {
        content: "";
        position: absolute;
        right: 15px; /* Position it inside the button */
        top: 47%;
        transform: translateY(-50%);
        font-size: 14px; /* Adjust as needed */
        color: inherit; /* Matches the text color */
    }
}
.brands1-section-area {
    position: relative;
    z-index: 1;
    background: #fbf9f4;
}
.partner-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
}
.partner-card:hover {
    transform: translateY(-5px);
}
.partner-header {
    background-color: #006eb6; /* Purple header color */
    color: white;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}
.partner-logo {
    padding: 20px;
    text-align: center;
}
.partner-logoA {
    padding: 10px;
    text-align: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.faq-container {
    width: 100%;

    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #051937;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #006eb6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px; /* Adjust for longer answers */
    padding: 15px 20px;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        max-width: 90%;
    }
}

/*============= CTA CSS AREA ===============*/
.cta1-section-area {
    position: relative;
    z-index: 2;
    position: relative;
    margin-bottom: -130px;
}
.cta1-section-area .cta1-main-boxarea {
    background: #006eb6;
    border-radius: 8px;
    padding: 20px;
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea {
        padding: 20px;
        text-align: center;
    }
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area {
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area {
        display: inline-block;
    }
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area {
        display: inline-block;
    }
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .timer {
    display: flex;
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area .timer {
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .timer .time-box {
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    width: 150px;
    color: #000;
    padding: 16px 30px;
    font-weight: bold;
    margin: 0 14px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area .timer .time-box {
        margin: 0 20px 0 0;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area .timer .time-box {
        margin: 0 0 20px 0;
        display: block;
    }
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .timer .time-box .time-value span {
    color: #000;
    text-align: center;
    font-family: "Inter", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .timer .time-value {
    color: #000;
    text-align: center;
    font-family: "Inter", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: bold;
    line-height: 32px;
    text-transform: uppercase;
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 {
    padding-left: 24px;
    border-left: 1px solid #d0981f;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 {
        padding-left: 0;
        border: 0;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 {
        padding-left: 0;
        border: 0;
        margin-top: 20px;
    }
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 .vl-btn1 {
    background: var(--ztc-bg-bg-2);
    color: var(--ztc-text-text-1);
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 .vl-btn1:hover {
    color: var(--ztc-text-text-2);
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 .vl-btn1::before {
    background: var(--ztc-bg-bg-1);
}
.cta1-section-area .cta1-main-boxarea .timer-btn-area .btn-area1 .vl-btn1::after {
    background: #312e30;
}
.cta1-section-area .cta1-main-boxarea ul li {
    display: inline-block;
    margin: 0 24px 0 0;
    padding-top: 32px;
    padding-bottom: 50px;
}
.cta1-section-area .cta1-main-boxarea ul li a {
    color: #fff;
    font-family: "Inter", serif;
    font-size: var(--ztc-font-size-font-s16);
    font-style: normal;
    font-weight: var(--ztc-weight-medium);
    line-height: 24px;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 4px;
    background: rgba(26, 23, 25, 0.05);
    padding: 12px 10px;
}
@media (max-width: 767px) {
    .cta1-section-area .cta1-main-boxarea ul li a {
        line-height: 32px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta1-section-area .cta1-main-boxarea ul li a {
        line-height: 32px;
    }
}
.cta1-section-area .cta1-main-boxarea ul li a img {
    margin: -6px 6px 0 0;
}

/*============= FOOTER CSS AREA ===============*/














.footer1-sertion-area .link-content h3 {
    color: #051937;
    font-family: "Inter", serif;
    font-size: 21px;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
}
.footer1-sertion-area .link-content ul li a {
    color: #051937;
    font-family: "Inter", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    display: inline-block;
    transition: all 0.4s;
    padding-top: 24px;
}
.footer1-sertion-area .link-content ul li a:hover {
    color: #fff;
    transition: all 0.4s;
    padding-left: 5px;
}
@media (max-width: 767px) {
    .footer1-sertion-area .link-content2 {
        padding: 0;
        margin-top: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1-sertion-area .link-content2 {
        padding: 0;
        margin-top: 30px;
    }
}
.footer1-sertion-area .link-content2 h3 {
    color: #051937;
    font-family: "Inter", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
}
.footer1-sertion-area .link-content2 ul li a {
    color: #544e51;
    font-family: "Inter", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    display: inline-block;
    transition: all 0.4s;
    padding-top: 14px;
}
.footer1-sertion-area .link-content2 ul li a img {
    margin: 0 8px 0 0;
}
.footer1-sertion-area .link-content2 ul li a:hover {
    color: #fff;
    transition: all 0.4s;
}
.footer1-sertion-area .footer-social-box {
    padding: 0 0 0 50px;
}
@media (max-width: 767px) {
    .footer1-sertion-area .footer-social-box {
        padding: 0;
        margin-top: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1-sertion-area .footer-social-box {
        padding: 0;
        margin-top: 30px;
    }
}
.footer1-sertion-area .footer-social-box h3 {
    color: #051937;
    font-family: "Inter", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
}
.footer1-sertion-area .footer-social-box .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 12px;
}
.footer1-sertion-area .footer-social-box .img1:hover::after {
    visibility: visible;
    opacity: 0.5;
    transition: all 0.4s;
}
.footer1-sertion-area .footer-social-box .img1:hover .icons {
    top: 50%;
    transition: all 0.6s;
    visibility: visible;
    opacity: 1;
}
.footer1-sertion-area .footer-social-box .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #051937;
    transition: all 0.4s;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
}
.footer1-sertion-area .footer-social-box .img1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
.footer1-sertion-area .footer-social-box .img1 .icons {
    position: absolute;
    left: 50%;
    top: 0;
    margin-top: -16px;
    margin-left: -12px;
    transition: all 0.6s;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
}
@media (max-width: 767px) {
    .footer1-sertion-area .footer-social-box .img1 .icons {
        margin-left: -10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1-sertion-area .footer-social-box .img1 .icons {
        margin-left: -10px;
    }
}
.footer1-sertion-area .footer-social-box .img1 .icons a {
    font-size: 24px;
    color: #051937;
}
.footer1-sertion-area .copyright p {
    color: #051937;
    text-align: center;
    font-family: "Inter", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    opacity: 0.8;
    padding-top: 24px;
    border-top: 1px solid #d9d7d3;
}

.footer1-sertion-area .copyright p a {
    color: #051937;
}
.footer1-sertion-area .copyright p a:hover {
    color: #000;
}

/* Container Styles */
.attent6-section-area .skils-widget-boxarea {
    position: relative;
    z-index: 1;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.4s;
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden; /* Ensure content stays inside */
}

.attent6-section-area .skils-widget-boxarea:hover {
    background: #051937;
    color: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.attent6-section-area .skils-widget-boxarea:hover p,
.attent6-section-area .skils-widget-boxarea:hover a {
    color: #ffffff; /* Text changes to white on hover */
}

/* Icon Styles */
.attent6-section-area .skils-widget-boxarea .icons {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--white, #fff);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    overflow: hidden; /* Prevent image overflow */
}

.attent6-section-area .skils-widget-boxarea:hover .icons {
    transform: rotateY(-180deg);
    transition: all 0.4s;
}

/* Image Inside Icon */
.attent6-section-area .skils-widget-boxarea .icons img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Text and Link Styles */
.attent6-section-area .skils-widget-boxarea .content-area a {
    color: #051937; /* Default color */
    font-family: "Inter", serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    display: inline-block;
    transition: all 0.4s;
}

.attent6-section-area .skils-widget-boxarea:hover .content-area a {
    color: #ffffff; /* Changes to white on hover */
}

.attent6-section-area .skils-widget-boxarea .content-area p {
    color: #051937; /* Default color */
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    transition: all 0.4s;
}

.attent6-section-area .skils-widget-boxarea:hover .content-area p {
    color: #ffffff; /* Changes to white on hover */
}

/* Spacing Helpers */
.space32 {
    height: 32px;
}
.space20 {
	height: 20px;
}
.space16 {
    height: 16px;
}
.gradient-bg {
	background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
    color: var(--white);
}
.gradient-bg h2, .gradient-bg h4, .gradient-bg p {
	color: var(--white);
}
.gradient-background {
    /*background: linear-gradient(135deg, #062c59, #582254);*/
    background: linear-gradient(135deg, #FDCF40, #EC7B38);
    color: #fff; /* Optional: Ensures text is readable against the background */
    text-align: center;
    padding: 20px;
    border-radius: 8px; /* Optional: Adds rounded corners */
}

.sectionClass {
    padding: 20px 0px 50px 0px;
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}

.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101f2e;
}

.projectFactsWrap {
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 20%;
    height: 100%;
    padding: 20px 0px;
    text-align: center;
}

.projectFactsWrap .item:nth-child(1) {
}

.projectFactsWrap .item:nth-child(2) {
}

.projectFactsWrap .item:nth-child(3) {
}

.projectFactsWrap .item:nth-child(4) {
}

.projectFactsWrap .item:nth-child(5) {
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 0 auto;
}

.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 100%;
    }
}

/* AUTHOR LINK */

.number::after {
    content: " +";
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
#hero {
    position: relative;
    color: white;
    text-align: center;
}
.logo-img {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    display: inline-block;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: 20px; /* Adjust as needed for roundness */
    background: linear-gradient(94deg, var(--gradient1) -26.3%, var(--gradient2) 131.32%); /* Gradient colors */
    padding: 5px; /* Border thickness */
}

.rounded-image {
    display: block;
    width: 100%; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Match or less than container for visible gradient */
    background-clip: padding-box;
}

/*  .responsive-heading {
  color: #fff;
  font-size: 78px; 
  font-weight: bold;
  text-align: left; 
  line-height: 1.2; 
  margin-top:-100px;
}
*/

.responsive-heading {
    color: #fff;
    font-size: 60px; /* Default size for large screens */
    font-weight: bold;
    line-height: 1.2; /* Adjust line-height for readability */
}

/*.custom-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
  margin-top: 20px;
}

.custom-image {
  width: 100%;
  height: auto;
}


@media (min-height: 530px) and (max-height: 608px) {
  .custom-image {
    height: 60%; 
  }
}
*/

/* Tablet View (768px and below) */
@media (max-width: 768px) {
    .responsive-heading {
        font-size: 40px; /* Adjust font size for tablets */
    }

    .responsive-heading .gradient-text1 {
        font-size: 40px; /* Adjust font size for tablets */
    }
}



/* Style for play icon */
.testimonial-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.testimonial-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #bf0707;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: font-size 0.3s ease-in-out;
}

.testimonial-item:hover .play-icon {
    font-size: 3rem; /* Increased size on hover */
}

.inner-page-header {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    z-index: 1;
}
.inner-page-header:after {
	content: "";
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.inner-page-header {
	
}
.inner-page-header .heading1 a {
    color: #fff;
    text-align: center;
    font-family: "Inter", serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: inline-block;
    transition: all 0.4s;
}
.inner-page-header .heading1 a i {
    margin: 0 8px 0 0;
}

.inner-page-header h1 {
    color: #fff;
    text-transform: uppercase;
}


/* written new css */
.theme-title {
	color: var(--theme-color);
	font-size: 1.2rem;
   	font-weight: bold;
   	margin-bottom: 16px;
}

.gradient-text {
    font-size: 2rem;
    font-weight: bold;
 	background: linear-gradient(94deg, var(--gradient1) -26.3%, var(--gradient2) 131.32%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0;
}

.bullet-points li {
	display: flex;
	
}
.bullet-points li i {
	font-size: 22px;
	color: var(--gradient1);
	margin-right: 16px;
}

.btn-gradient {
    background: linear-gradient(90deg, var(--gradient1), var(--gradient1));
    color: var(--white);
    padding: 14px 26px;
    display: inline-block;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--default-font);
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, var(--white), var(--white));
    color: var(--theme-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.ptb-48 {
	padding-top: 48px;
	padding-bottom: 48px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
/* Footer CSS */
.footer-sertion-area {
    background: var(--black);
    position: relative;
    padding: 40px 0px;
}
.footer-sertion-area .footer-logo img {
	padding: 5px;
	border-radius: 4px;
}
.footer-sertion-area h3 {
	color: var(--white);
    font-family: "Inter", serif;
    font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer-sertion-area .addr {
	color: var(--white);
	margin-bottom: 2px;
	font-size: 16px;
}

.footer-sertion-area .foot-links li {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.footer-sertion-area .foot-links li:last-child {
	margin-bottom: 0px;
}
.footer-sertion-area .foot-links li a {
    font-family: "Inter", serif;
    font-size: 14px;
    color: var(--white);
}
.footer-sertion-area .foot-links li a:hover {
    color: var(--nav-hover-color);
}
.social-media {
	margin-top: 30px;
}
.card-border {
	border-color: #EC7B38;
}
.social-media ul li {
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
}
.social-media ul li a {
	background-color: var(--white);
	color: var(--black);;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	transition: all 0.4s;
}
.social-media ul li a i {
	font-size: 16px;
}
.social-media ul li a:hover {
	background-color: #664e9d;
	color: var(--white);
}

.footer-sertion-area .copyright {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--white);
}
.footer-sertion-area .copyright p {color: var(--white); margin-bottom: 0px;}
.footer-sertion-area .copyright p a {color: var(--white);}


.theme-section h1 {
	background: linear-gradient(90deg, rgba(236,123,56,1) 10%, rgba(0,39,255,1) 50%, rgba(253,207,64,1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 60px;
}
.theme-section h5 {
	font-size: 30px;
	color: #000;
}
.theme-section p {
	margin-top: 10px;
}

.hp-event-highlights .theme-title {
	font-size: 36px;
	color: var(--white);
	margin-bottom: 50px;
}
.hp-event-highlights .counter-cols span, .hp-event-highlights .counter-cols p {
	color: var(--white);
}
.hp-event-highlights .counter-cols .stats-item {
	background-color: transparent;
	box-shadow: none;
	border-right: 1px dashed #fff;
	padding: 0px 30px;
}
.hp-event-highlights .counter-cols .stats-item:last-child {
	border-right: none;
}
.hp-event-highlights .stats-item img {
    width: 60px;
    margin-bottom: 10px;
    filter: invert(100%) sepia(82%) saturate(0%) hue-rotate(114deg) brightness(207%) contrast(201%);
}
.hp-event-highlights .stats-item span {
    font-size: 42px;
}
.hp-event-highlights .stats-item p {
	font-size: 28px;
}
.hp-event-highlights .btn {
	background: linear-gradient(90deg, var(--white), var(--white));
    color: var(--theme-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}
.hp-event-highlights .btn:hover {
	background: linear-gradient(90deg, var(--white), var(--white));
    color: var(--gradient1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hp-title h2 {
	margin-bottom: 2rem;
	font-size: 32px;
}

.what-happening-section  {
	padding: 3rem 0px;
}
.what-happening-section h1.fw-bold {
	margin-bottom: 2rem;
	font-size: 32px;
}
.what-happening-section .product-col {
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: start;
	z-index: 5;
}
.what-happening-section .product-col .product_inner {
	margin-top: 0px;
	z-index: 6;
}
.what-happening-section .product-col .product_inner h4 {
	font-size: 26px;
	font-weight: 900;
    line-height: 93%;
}
.what-happening-section .product-col .product_inner h4,
.what-happening-section .product-col .product_inner p {
	color: #fff;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.what-happening-section .product-col .product_inner p {
	min-height: 50px;
}

.product--pink,
.product--skyblue,
.product--violet,
.product--green {
	width: 100%;
	height: 400px;
	border-radius: 3px;
	padding: 2em 1em;
	margin: 1em;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.what-happening-section .product-col:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1;
}

.product--pink:after {
	content: "";
	background: url("../img/hp-conference.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
    height: 100%;
    transition: all .5s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.product--skyblue:after {
	content: "";
	background: url("../img/special-programs.jpeg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
    height: 100%;
    transition: all .5s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
.product--violet:after {
	content: "";
	background: url("../img/Posters.jpeg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
    height: 100%;
    transition: all .5s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
}
.product--green:after {
	content: "";
	background: url("../img/Exhibition.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
    height: 100%;
    transition: all .5s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.product--pink:hover:after {
	transform: scale(1.2);
}
.product--skyblue:hover:after {
	transform: scale(1.2);
}
.product--violet:hover:after {
	transform: scale(1.2);
}
.product--green:hover:after {
	transform: scale(1.2);
}

.product-col .product_inner button {
  border-radius: 3px;
  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;
	text-transform:uppercase;
	font-size:16px;
  transition: background ease-in 0.25s;
}
.product-col:hover .product_inner button {
	box-shadow: rgba(13, 191, 243, 0.25) 0px 13px 27px -5px, rgba(13, 191, 243, 0.3) 0px 8px 16px -8px;
}

.product--pink .product_inner button {
	background-color: #fff;
	border: 1px solid #fff;
	color: #664e9d;
}
.product--pink:hover .product_inner button {
	background-color: #664e9d;
	border: 1px solid #664e9d;
	color: #FFF;
}
.product--green .product_inner button {
	background-color: #fff;
	border: 1px solid #fff;
	color: #679fd5;
}
.product--green:hover .product_inner button {
	background-color: #679fd5;
	border: 1px solid #679fd5;
	color: #FFF;
}
.product--violet .product_inner button {
	background-color: #fff;
	border: 1px solid #fff;
	color: #9949FF;
}
.product--violet:hover .product_inner button {
	background-color: #9949FF;
	border: 1px solid #9949FF;
	color: #FFF;
}
.product--skyblue .product_inner button {
	background-color: #fff;
	border: 1px solid #fff;
	color: #0DBFF3;
}
.product--skyblue:hover .product_inner button {
	background-color: #0DBFF3;
	border: 1px solid #0DBFF3;
	color: #FFF;
}

.product--pink .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#664e9d; margin:0; margin-top:10px; border-radius:3px;}

.product--skyblue .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#0DBFF3; margin:0; margin-top:10px; border-radius:3px;}

.product--violet  .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#9949FF; margin:0; margin-top:10px; border-radius:3px;}

.product--green .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#679fd5; margin:0; margin-top:10px; border-radius:3px;}


.visa-app:after {
	background: url("../img/visa-app-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.accommodation:after {
	background: url("../img/Accommodation.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.event-location:after {
	background: url("../img/event-location.jpg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.conference-chair-co-chair {
	background: url("../img/conference.jpg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.header {
   /* background-color: var(--black); */
     box-shadow: 0px 3.261px 10.87px 2.174px rgba(0, 0, 0, 0.08);
 }
 .mobile-nav-toggle {
     color: var(--accent-color); 
 }
 /* .scrolled .mobile-nav-toggle {
     color: var(--nav-color); 
 } */
 
.our-committee-members {
    overflow: hidden;
    text-align: center;
}
.our-committee-members .members-content {
    padding: 15px 0 0px 0px;
}
.our-committee-members img {
    width: 100%;
    height: auto;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
}
.our-committee-members .members-content .panel {
    font-weight: 600;
    margin-bottom: 5px;
}
.our-committee-members .members-title {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.our-committee-members .description {
    color: #5c5e64;
    font-size: 14px;
    text-align: center;
    display: block;
}


.highlighted-text {
    font-size: 20px;
    color: #4985be;
    display: inline-block;
    margin-bottom: 10px;
}
.fs-12 {font-size: 12px;}
.fs-13 {font-size: 13px;}
.fs-14 {font-size: 14px;}
.fs-15 {font-size: 15px;}
.fs-16 {font-size: 16px;}
.fs-17 {font-size: 17px;}
.fs-18 {font-size: 18px;}
.fs-19 {font-size: 19px;}
.fs-20 {font-size: 20px;}

.text-justify {
	text-align: justify;
}
.text-justify-paragraph p, .text-justify-li {
	text-align: justify;
}

.event-venue-section {
	background-image: url("../img/hotel-hilton123.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
	background-attachment: fixed;
	min-height: 460px;
}

.event-venue-section .bg-blur {
	background-color: rgba(255,255,255,0.2);
	background-color: rgba(0,0,0,0.4);
	padding: 20px 16px;
	border-radius: 4px;
	margin-bottom: 20px;
}
.moretext {
	display: none;
}

.ticket-card h2 {
	font-size: 20px;
}
.ticket-card sub {
	position: relative;
	top: -5px;
}
.ticket-card .buy-btn {
	margin-top: 20px;
	margin-bottom: 10px;
}
.ticket-border {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.ticket-shape {
    display: inline-block;
    box-sizing: content-box;
    position: relative;
    height: 17px;
    width: 100%;
    font-size: 19px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle at 15px 0px, #eee 0.42em, transparent 0.3em);
    background-position: top left, top right;
}
.ticket-shape1 {
    display: inline-block;
    box-sizing: content-box;
    position: relative;
    height: 17px;
    margin-bottom: -1px;
    margin-top: 5px;
    width: 100%;
    font-size: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle at 15px 18px, #eee 0.4em, transparent 0.5em);
    background-position: bottom left, bottom right;
}


.hotels-card .card-img {
	overflow: hidden;
    border-radius: 0;
}
.hotels-card .card-img img {
	object-fit: cover;
    width: 100%;
    height: 200px;
    transition: 0.3s ease-in-out;
}
.hotels-card:hover .card-img img {
    transform: scale(1.1);
}
.hotels-card h3 {
	font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}
.hotels-card p {
    color: #5c5e64;
    font-size: 16px;
    display: flex;
}
.hotels-card p i {
	margin-right: 6px;
	margin-top: 1px;
}
.hotels-card .btn {
	background: var(--accent-color);
	padding: 12px 20px;
	width: 130px;
}
.hotels-card .btn:hover {
	background: linear-gradient(90deg, var(--gradient1), var(--gradient1));
	color: #fff;
}

.partners-logos-sections h2 {
	font-size: 24px;
	margin-bottom: 1rem;
}
.partners-logos-sections .inner {
	border: 1px solid #d5d5d5;
    background: #ffffff;
    overflow: hidden;
}
.partners-logos-sections .inner .sm-title {
	background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 32px;
    display: block;
}
.partners-logos-sections .inner img {
	padding: 8px;
}

.sponsor-slider  {
    max-width: 90%;
}
.sponsor-swiper-control {
    position: relative;
}
.sponsor-swiper-control .swiper-button-prev, .sponsor-swiper-control .swiper-button-next {
    background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.sponsor-swiper-control .swiper-button-prev:after, .sponsor-swiper-control .swiper-button-next:after {
    color: var(--white);
    font-size: 16px;
}

.media-partner .inner img {
	padding: 16px;
}
.sponsors-logo .inner img {
    height: 135px;
    object-fit: contain;
}
.media-partner .inner {
	/* width: 187px;
	margin: 0 auto; */
}
.media-partners-logo-wrapper h2 {
	text-align: left;
}

@media (min-width: 992px) {
	.sponsors-logo .col-lg-3 {
		width: 250px;
	}
}

@media (min-width: 1200px) {
    .header .navmenu li:hover > a,
    .header .navmenu .active,
    .header .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
	.header .navmenu a,
	.header .navmenu a:focus {
        color: var(--accent-color);
    }
    .header .navmenu li.dropdown a,
    .header .navmenu li.dropdown a:focus {
        color: var(--accent-color);
    }
    /*
    .scrolled .header .navmenu a,
    .scrolled .header .navmenu a:focus {
        color: var(--nav-color);
    }
    .scrolled .header .navmenu li.dropdown a,
    .scrolled .header .navmenu li.dropdown a:focus {
        color: var(--nav-color);
    }
    .scrolled .header .navmenu li.dropdown ul li a,
    .scrolled .header .navmenu li.dropdown ul li a:focus {
        color: var(--accent-color);
    }
    .scrolled .header .navmenu li.dropdown ul li:hover > a,
    .scrolled .header .navmenu li.dropdown ul li .active,
    .scrolled .header .navmenu li.dropdown ul li .active:focus {
        color: var(--nav-dropdown-hover-color);
    }*/
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	body {
	    padding-top: 113px;
	}
}

@media (min-width: 992px) and (max-width: 1250px) {
	body {
	    /*padding-top: 120px;*/
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.btn-primary3 {
		width: 100%;
	}
	.ticket-card h2 {
		font-size: 16px !important;
	}
}
.hp-event-highlights .cta-btn {
	margin-top: 24px;
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	.hp-event-highlights .counter-cols {
		flex-wrap: wrap;
	}
	.hp-event-highlights .counter-cols .stats-item {
		margin-bottom: 36px;
	}
	.hp-event-highlights .cta-btn {
	    margin-top: 0px;
	}
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	body {
		padding-top: 77px;
	}
	.header .logo img {
		/* max-height: 64px; */
		width: 260px;
	}	
	.ptb-48 {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.pb-60 {
		padding-bottom: 25px;
	}
	section, .section {
		padding-top: 25px;
		scroll-margin-top: 100px;
	}
	.responsive-heading {
		font-size: 40px;
	}
	.hero p {
		font-size: 22px;
	}
	.footer-sertion-area h3 {
		font-size: 22px;
	}
    .footer-sertion-area .footer-logo img {
		width: 230px;
    }
	.social-media {
		margin-top: 20px;
	}
	.inner-page-header {
	    min-height: 300px;
	}
	.conference-page .card .card-body h4 {
		font-size: 20px;
	}
	.quick-info-bottom .product-col .product_inner h4 {
		font-size: 20px;
	}
	.quick-info-bottom .product-col .product_inner button {
		font-size: 14px;
	}
	/* .sponsors-logo .inner img {
		max-width: 70%;
	} */
	.sponsors-logo .inner img {
	    height: 120px;
	}
	.media-partner .inner img {
		padding: 6px 7px;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	body {
		padding-top: 62px;
	}
    .header .logo img {
        /* max-height: 50px; */
        width: 200px;
    }
	.space32 {
		height: 16px;
	}
	section, .section {
		scroll-margin-top: 90px;
	}
	.responsive-heading {
		font-size: 30px;
	}
	.inner-page-header {
        align-items: end;
        min-height: 260px;
    }
	.inner-page-header .container {
		display: flex;
	}
	.inner-page-header h1 {
		font-size: 26px;
		margin-bottom: 30px;
	}
	.conference-page .card {
		min-height: auto;
	}
	.sponsorship-page .table thead tr th {
	    font-size: 16px;
	}
	.sponsorship-page .table thead tr th:nth-child(2) {
		width: 215px;
	}
	.special-programs .card .card-body p {
		margin-bottom: 0px;
	}
	.footer-sertion-area {
		padding: 25px 0px
	}
	.pb-40 {
		padding-bottom: 20px;
	}
	.theme-section h1 {
		font-size: 32px;
	}
	.theme-section h5 {
		font-size: 24px;
	}
	.hp-event-highlights .theme-title {
		font-size: 26px;
	}
	.hp-event-highlights .stats-item:last-child {
		margin-bottom: 0px;
	}
	.hp-event-highlights .stats-item img {
		width: 45px;
	}
	.hp-event-highlights .stats-item span {
		font-size: 34px;
	}
	.hp-event-highlights .stats-item p {
		font-size: 20px;
	}
	.hp-event-highlights .counter-cols {
		justify-content: space-around !important;
	}
	.hp-event-highlights .counter-cols .stats-item {
		border-right: none;
		border-bottom: 1px dashed #fff;
		padding: 0px 10px 10px 10px;
	}
	.what-happening-section {
		padding: 2rem 0px 1rem 0px;
	}
	.what-happening-section h1.fw-bold {
		font-size: 26px;
		margin-bottom: 1rem;
	}
	.event-venue-section {
		min-height: auto;
	}
	.partners-logos-sections .inner .sm-title {
		font-size: 14px;
	}
	.media-partner .media-partners-logo-wrapper {
		margin-top: 2rem;
	}
	.media-partner h2 {
		text-align: center;
	}
	.media-partners-logo-wrapper .row {
		justify-content: center;
	}
    .sponsor-swiper-control .swiper-button-prev, .sponsor-swiper-control .swiper-button-next {
        background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
        height: 26px;
        width: 26px;
    }
    .sponsor-swiper-control .swiper-button-prev:after, .sponsor-swiper-control .swiper-button-next:after {
        font-size: 12px;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.theme-title {
		font-size: 1.2rem;
		margin-bottom: 16px;
	}
	.special-programs .card .card-body h4 {
		font-size: 18px;
	}
	.visa-app, .accommodation, .event-location {
		width: 94%;	
	}
	.partners-logos-sections .col-sm-4 {
		width: 48%;
	}
	.partners-logos-sections .inner .sm-title {
		line-height: 24px;
	}
	.media-partner .col-sm-3 {
		width: 48%;
	}
	/* .sponsors-logo .inner img {
		max-width: 80%;
	} */
}

/* Mobile View (480px and below) */
@media (max-width: 480px) {
    .responsive-heading {
        font-size: 20px; /* Smaller font size for mobile */
    }

    .responsive-heading .gradient-text1 {
        font-size: 20px; /* Smaller font size for mobile */
    }
    .sponsors-logo .inner img {
	    height: 100px;
	}
}
/* end written new css */

 @media (min-width: 1250px) and (max-width: 1399.98px) {
     .navmenu a, .navmenu a:focus {
         font-size: 13px;
     }
     .header .logo img {
         /* max-height: 60px; */
     }
 }
 

.agenda-tabs {
    margin-top: 0px;
    margin-bottom: 32px;
    justify-content: end;
}
.agenda-tabs .nav-link {
    margin-right: 20px;
}
.agenda-tabs .nav-link {
    background-color: #212958;
    border: 1px solid var(--gradient1);
    color: #fff;
    border-radius: 0px;
    flex: 1;
    text-align: center;
    font-size: 16px;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    min-width: 250px;

}
.agenda-tabs .nav-link sub {
    top: -6px;
    bottom: inherit;
    margin-left: 2px;
    text-transform: capitalize;
}
.agenda-tabs .nav-link.active, .agenda-tabs .show>.nav-link {
    background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
    color: #fff !important;
    border-color: #6175B9;
}

.agenda-tab-content {
    /* background-color: #fff; */
    border: none;
}
.text-highlight {
    color: var(--gradient1);
}
.fw-500 {
    font-weight: 500;
}
.agenda-tab-content .ag-inner-tab-content {
    background-color: #fff;
    box-shadow: var(--bs-box-shadow);
    padding: 30px 40px;
    border-radius: 0px;
}
.agenda-tab-content .ag-inner-tab-content h4 {
    font-size: 24px;
}
.agenda-tab-content .our-committee-members img {
    max-width: 120px;
}
.agenda-tab-content .our-committee-members {
    position: relative;
}
.agenda-tab-content .our-committee-members .members-title {
    font-size: 14px;
    margin-bottom: 4px;
}
.agenda-tab-content .our-committee-members .description {
    font-size: 13px;
}
.agenda-tab-content .our-committee-members .speaker-title-info {
    position: absolute;
    top: 0;
    left: 0;
}
.ag-horizontal-tabs {
    flex-direction: column;
}
.ag-horizontal-tabs .nav-item .nav-link {
    background-color: #fff;
    color: #000;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 0px;
    padding: 16px 20px;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    /* min-height: 96px; */
}
.ag-horizontal-tabs .nav-item .nav-link.active {
    background: linear-gradient(135deg, var(--gradient2), var(--gradient1));
    color: #fff !important;
}
.ag-horizontal-tabs .nav-item .nav-link small {
    font-weight: 500;
}

.pb-80 {
    padding: 80px 0px;
}
.panel-info-strip {
    padding-left: 0px;
}
.panel-info-strip li {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* width: 200px; */
    width: auto !important;
    list-style-type: none;
    font-size: 14px;
    font-weight: 500;
    color: #5B3E94;
    margin: 10px;
    padding: 8px;
}
.panel-info-strip li:nth-child(1) {
    background: #ffffff;
    border-bottom: #5B3E94 2px solid;
    position: relative;
    bottom: 1px;
    margin-left: 0px;
}
.panel-info-strip li:nth-child(2),
.panel-info-strip li:nth-child(3) {
    -webkit-transform: skew(-18deg);
    -moz-transform: skew(-18deg);
    -o-transform: skew(-18deg);
}
.panel-info-strip li:nth-child(2) {
    background: #A82682;
    color: #fff;
}
.panel-info-strip li:nth-child(3) {
    background: #212958;
    color: #fff;
}
.pd-row {
    padding: 20px 0px;
}
.info-btn-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}
.info-btn-group .btn-links {
    background-color: #A82682;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 7px 16px;
    margin-right: 8px;
    border-radius: 4px;
    text-transform: capitalize;
}
.info-btn-group .btn-links:last-child {
    background-color: #5B3E94;
    margin-right: 0px;
}
.info-btn-group .btn-links:last-child:hover {
    background-color: #7E67D9;
}
.info-btn-group .btn-links:hover {
    background-color: #cd47a6;
    color: #fff;
}
.session-title-name {
    color: var(--theme-color);
    color: #212958;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
}
.h5-section-name {
    color: #A82682;
    font-size: 20px;
    margin-top: 8px;
}
.sector-theme-name {
    color: #644090;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	.panel-info-strip li {
        width: 160px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .panel-info-strip li {
        width: auto;
        padding: 8px 10px;
    }
    .info-btn-group {
        flex-direction: column;
    }
    .info-btn-group .btn-links {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .info-btn-group .btn-links:last-child {
        margin-bottom: 0px;
    }
    .session-title-name {
        min-height: auto;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .agenda-tab-content .ag-inner-tab-content {
        padding: 20px;
    }
    .pb-80 {
        padding: 50px 0px;
    }
    .agenda-tabs {
        justify-content: start;
    }
    .agenda-tabs .nav-link {
        min-width: 50%;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .agenda-tab-content .ag-inner-tab-content h4 {
        font-size: 22px;
    }
    .h5-section-name {
        font-size: 18px;
    }
    .agenda-tab-content .ag-inner-tab-content {
        padding: 10px 16px;
    }
    .panel-info-strip li {
        margin: 6px;
    }
    .session-title-name {
        margin-bottom: 10px;
    }
    .agenda-tabs {
        margin-bottom: 10px;
    }
    .agenda-tabs .nav-link {
        padding: 10px 20px;
        margin-bottom: 16px;
    }
    .agenda-tab-content .our-committee-members img {
        max-width: 100px;
    }
    .sector-theme-name {
        margin-bottom: 0px !important;
    }
    .sector-theme-name i {
        display: none;
    }
    .info-btn-group .btn-links {
        font-size: 12px;
    }
}



