body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    /*font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
}
.categories-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
  }
  .categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: rgba(0, 85, 150, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #005596;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
  }
  .title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
  }
  .title-divider span:first-child {
    height: 4px;
    width: 48px;
    background: #00AEEF;
    border-radius: 999px;
    display: inline-block;
  }
  .title-divider span:last-child {
    height: 4px;
    width: 24px;
    background: #005596;
    border-radius: 999px;
    display: inline-block;
  }
  .cat-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .cat-card:hover {
    border-color: rgba(0, 85, 150, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
  }
  .cat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(0,85,150,0.1), rgba(0,174,239,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .cat-card:hover .cat-icon-wrap {
    background: linear-gradient(135deg, #005596, #00AEEF);
  }
  .cat-icon-wrap svg {
    color: #005596;
    transition: color 0.3s ease;
  }
  .cat-card:hover .cat-icon-wrap svg {
    color: #ffffff;
  }
  .cat-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
  }
  .cat-card:hover .cat-title {
    color: #005596;
  }
.hero-bg {
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
.about-bg {
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.why-bg {
    background-image: url('../images/why.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.why-glasstech-bg {
    background-image: url('../images/why-glassteck.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}


.display-3{
    font-size: 4.5rem;
}
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Custom Colors & Utilities mapped from Tailwind */
.bg-custom-dark {
    background-color: #121a2f;
}

.bg-custom-blue {
    background-color: #004071;
}

.bg-custom-blue-light {
    background-color: #0066cc;
}

.text-custom-blue {
    color: #00a3e0;
}

.text-custom-navy {
    color: #07395c;
}

.hero-overlay-1 {
    background-color: rgba(7, 25, 42, 0.6);
}

.hero-overlay-2 {
    background: linear-gradient(to right, rgba(3, 29, 56, 0.9), rgba(5, 43, 77, 0.8), rgba(3, 29, 56, 0.1));
}

.rounded-4xl {
    border-radius: 2rem;
}

.rounded-5xl {
    border-radius: 2.5rem;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
}

.floating-social {
    position: fixed;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #0077b5;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: width 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-link:hover {
    width: 54px;
    background: #005e90;
    color: white;
}

/* Dropdown custom */
.dropdown-menu-custom {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
}

.dropdown-item-custom {
    padding: 10px 2rem;
    color: #475569;
    transition: all 0.2s;
}

.dropdown-item-custom:hover {
    background-color: transparent;
    color: #00a3e0;
}

/* Navbar transitions */
.navbar-custom {
    transition: all 0.4s ease-in-out;
    z-index: 50!important;
}

.navbar-scrolled {
    background-color: rgb(255 255 255 / 0.99) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}

.navbar-scrolled .nav-link {
    color: #343a40 !important;
    font-weight: 500 !important;
    font-size: 14px;
}
.nav-link {
    color: rgb(255 255 255 / 0.9);
    font-weight: 500 !important;
    font-size: 14px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: rgb(0 89 179) !important;
    /*color: #fff !important;*/
    /*text-shadow: -1px -1px 0 rgb(0 87 179 / 98%), 1px -1px 0 rgb(0 87 179 / 98%), -1px 1px 0 rgb(0 87 179 / 98%), 1px 1px 0 rgb(0 87 179 / 98%);*/
    /*font-weight: 700 !important;*/
}
.navbar-brand{
    width: 28%;
}
#main-navbar .navbar-brand img {
    width: auto;
    transition: all 0.3s;
}
#main-navbar{
    height: 100px;
}
#header-date{
    width: 30%;
}
#desktopMenu{
    width: 42%;
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.custom-category-card:hover .icon-box {
    background-color: #005a96 !important;
    color: white !important;
}

/* Market Opportunity Cards */
.market-card {
    background-color: #0D4B77 !important;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-color: #ffffff1a;
}

.market-card:hover {
    border-color: #00AEEF;

}

.market-val-group {
    background-image: linear-gradient(to right, #ffffff, #00AEEF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
    font-size:60px;
}

.market-card:hover .market-val-group {
    background-image: linear-gradient(to right, #ffffff, #00AEEF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.market-suffix {
    color: #42C3F3;
    
}

.market-title {
    color: #BFDBFECC;
    font-size: 16px;
    line-height: 1.5rem;
}

.platform-zoom-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.platform-zoom-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.4) !important;
}

.learn-more-btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #005596;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    margin-top: 1rem;
    text-decoration: none;
    border: none;
}

.learn-more-btn-custom:hover {
    background-color: #00447a;
    color: #ffffff !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-0.25rem);
}

.category-card {
    background-color: #ffffff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px); 
    border-color: rgba(0, 85, 150, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.category-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,85,150,0.1), rgba(0,174,239,0.1));
    transition: all 0.3s ease;
}

/* Icon */
.category-icon-wrapper i {
    font-size: 22px;
    color: #005596;
    transition: all 0.3s ease;
}

/* Hover effect */
.category-card:hover .category-icon-wrapper {
    background: linear-gradient(135deg, #005596, #00AEEF);
}

.category-card:hover .category-icon-wrapper i {
    color: #fff;
}
.category-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #eef7ff;
    color: #005596;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.category-text {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 1.25;
}
.category-card:hover .category-text {
    color: rgb(0 85 150 / var(--tw-text-opacity, 1));
}
/* Default icon color */
.category-icon-wrapper svg {
    color: #005596;
    transition: color 0.3s ease;
}

/* On card hover → icon becomes white */
.category-card:hover .category-icon-wrapper svg {
    color: #ffffff;
}

.demand-card {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect like Tailwind */
.demand-card:hover {
    border-color: rgba(0, 174, 239, 0.4);
}

.demand-title {
    --tw-text-opacity: 1;
    color: rgb(0 89 179 / var(--tw-text-opacity, 1));
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
}

.demand-text {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
    font-size: 0.875rem;
    line-height: 1.25rem;
}
            
.exhibitor-btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #005596 !important;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border: none;
}

.exhibitor-btn-custom:hover {
    background-color: #00AEEF;
    color: #ffffff !important;
    box-shadow: 0 25px 50px -12px rgba(0, 174, 239, 0.3);
    transform: translateY(-0.25rem);
}
/* ── Hamburger Icon ── */
.mob-ham-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
    z-index: 10001;
}
.mob-ham-btn .hb {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.3s;
}
.navbar-scrolled .mob-ham-btn .hb {
    background: #1e293b;
}

/* ── Mobile Drawer (slides down from top) ── */
#mob-drawer {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    transition: top 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
#mob-drawer.open {
    top: 0;
}

/* Drawer: header bar */
.mob-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 18px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.mob-drawer-header img {
    height: 52px;
    width: auto;
}
.mob-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.mob-close-btn:hover {
    background: #e2e8f0;
}

/* Drawer: nav items */
.mob-nav-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    flex: 1;
}
.mob-nav-list > li {
    border-bottom: 1px solid #f8fafc;
}
.mob-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0;
}
.mob-nav-link:hover {
    background: #f8fafc;
    color: #1e293b;
}
.mob-nav-link.active-item {
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    margin: 4px 12px;
    padding: 13px 16px;
}
.mob-submenu .active-item {
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    margin: 4px 12px;
    padding: 13px 16px;
}
.mob-nav-link .mob-chev {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: transform 0.25s;
}
.mob-nav-link.open .mob-chev {
    transform: rotate(180deg);
}

/* Drawer: sub-menu */
.mob-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 6px 0;
    background: #f8fafc;
    display: none;
}
.mob-submenu.open {
    display: block;
}
.mob-submenu li a {
    display: block;
    padding: 10px 22px 10px 36px;
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s;
}
.mob-submenu li a:hover {
    color: #2563eb;
}

/* Drawer: backdrop */
#mob-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 99998;
    backdrop-filter: blur(3px);
    animation: bdFadeIn 0.3s ease;
}
#mob-backdrop.open {
    display: block;
}

/* Base button */
.custom-btn {
    position: relative;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

/* Content stays above overlay */
.custom-btn .content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Overlay gradient */
.custom-btn .overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Hover lift */
.custom-btn:hover {
    transform: translateY(-4px);
}

/* Show overlay on hover */
.custom-btn:hover .overlay {
    opacity: 1;
}

/* Icon movement */
.custom-btn .icon {
    transition: transform 0.3s ease;
}

.custom-btn:hover .icon {
    transform: translateX(4px);
}

/* Primary button */
.btn-primary-custom {
    background: #005596;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 85, 150, 0.3);
}

.btn-primary-custom .overlay {
    background: linear-gradient(to right, #00AEEF, #005596);
}

/* Glass button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.btn-glass .overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

/* Optional hover border tint */
.btn-glass:hover {
    border-color: rgba(0, 174, 239, 0.5);
}
.platform-section {
    background: linear-gradient(to right, #f8fafc, #ffffff, #f8fafc);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.learn-more-btn-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 85, 150, 0.25);
}
.category-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.category-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: rgba(0, 85, 150, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
/*footer css*/
.footer-bg {
    background-color: #1e293b;
}
.footer-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    transition: background-color 0.2s;
    text-decoration: none;
}
.footer-icon-circle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-icon {
    color: #00AEEF;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}
.contact-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-text-white {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}
.dropdown-item.active, .dropdown-item:active{
    color: rgb(0 89 179 / var(--tw-text-opacity, 1));
    border-left: 3px solid rgb(0 89 179 / var(--tw-border-opacity, 1));
    background-color: #F2F7FB;
}
.badge-colocated{background:linear-gradient(to right,#00AEEF,#005596);color:#fff;padding:6px 16px;border-radius:9999px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;text-decoration:none}
.location-row{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-bottom:1rem;color:rgba(255,255,255,.9);font-weight:500;font-size:16px}
