
/*==========================================================================
  1. BASE RESETS & ROOT VARIABLES
  ========================================================================== */
:root {
    --color-primary: #0f172a;
    --color-accent: #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-cyan: #06b6d4;
    --color-text: #475569;
    --color-text-light: #64748b;
    --color-muted: #cbd5e1;
    --bg-section: #f8fafc;
    --radius-card: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto; 
}
.container-new{
 width: 95%;
    max-width: 1500px;
    margin: 0 auto; 


}
a {
    text-decoration: none;
}

/*==========================================================================
  2. TOP BAR & NAVIGATION HEADER
  ========================================================================== */
.top-bar {
    background: #0f172a;
    padding: 14px 0;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-left a, .top-right a {
    color: #fff;
    transition: color 0.3s ease;
}

.top-right a:hover, .top-left a:hover {
    color: var(--color-cyan);
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    padding: 18px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.logo p {
    font-size: 18px !important;
}

/* Desktop Menu Layout */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu > li > a i {
    font-size: 12px;
}

.menu > li > a:hover {
    color: var(--color-accent);
}

/* Mega Menu Engine */
.mega-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    background: #fff;
    display: flex;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 30px;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mega-column {
    flex: 1;
}


.mega-column a {
    display: block;
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mega-column a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.header-btn {
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background: var(--color-accent-hover);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 10px;
    transition: 0.3s ease;
}

/*==========================================================================
  3. MOBILE OVERLAY DRAWER STYLES
  ========================================================================== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 25px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-header img {
    height: 38px;
}

.mobile-header i {
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    background: #f9fafb;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-dropdown.active .mobile-btn i {
    transform: rotate(180deg);
}

.mobile-submenu a {
    font-size: 15px;
    color: #4b5563;
    padding: 10px 0;
    font-weight: 500;
}

.mobile-getstarted {
    margin-top: 25px;
    background: var(--color-accent);
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    border-bottom: none !important;
}

/*==========================================================================
  4. ACCORDION BANNER SLIDER
  ========================================================================== */
.banner-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.slide-blue { background-image: url("image/wholesale-voip-banner.png"); }
.slide-charcoal { background-image: url("image/wholesale-voip-banner.png"); }
.slide-purple { background-image: url("image/wholesale-voip-banner.png"); }

.slide-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.6s ease-in-out;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #ffffff;
}

.slide-content p {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #ffffff;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.slide-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

input[name="slider-control"] {
    display: none;
}

#slide-1:checked ~ .slide-blue,
#slide-2:checked ~ .slide-charcoal,
#slide-3:checked ~ .slide-purple {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

#slide-1:checked ~ .slide-blue .slide-content,
#slide-2:checked ~ .slide-charcoal .slide-content,
#slide-3:checked ~ .slide-purple .slide-content {
    transform: translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

#slide-1:checked ~ .slider-dots .dot-btn:nth-child(1),
#slide-2:checked ~ .slider-dots .dot-btn:nth-child(2),
#slide-3:checked ~ .slider-dots .dot-btn:nth-child(3) {
    background-color: #ffffff;
    transform: scale(1.3);
}

/*==========================================================================
  5. SPLIT SECTION STRUCTURAL DESIGN
  ========================================================================== */
.split-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.split-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-content {
    flex: 1;
}

.split-content .subheading {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.split-content h2 {
    color: var(--color-primary);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 20px;
}

.split-content p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.feature-list {
    margin: 25px 0 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
}

.feature-item i {
    color: #10b981;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.cta-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.split-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    object-fit: cover;
}

/*==========================================================================
  6. SOLUTIONS CARD GRID SECTION
  ========================================================================== */
.solutions-section {
    padding: 80px 20px;
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header .subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon {
    width: 24px;
    height: 24px;
}

.bg-blue { background-color: #dbeafe; color: #1e40af; }
.bg-purple { background-color: #f3e8ff; color: #6b21a8; }
.bg-emerald { background-color: #d1fae5; color: #065f46; }

.solution-card h3 {
    font-size: 1.35rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.solution-link span {
    transition: transform 0.2s ease;
}

.solution-card:hover .solution-link {
    color: var(--color-accent-hover);
}

.solution-card:hover .solution-link span {
    transform: translateX(4px);
}

/*==========================================================================
  7. SERVICES EXPERTISE GRAPHICS CARDS
  ========================================================================== */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.services-tagline {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.services-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.services-header p {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-box {
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 55%, rgba(15, 23, 42, 0.98) 100%);
    z-index: 1;
}

.service-box h3,
.service-box p,
.service-box .service-icon-container,
.service-box .service-features {
    position: relative;
    z-index: 2;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
}

.service-icon-container {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 26px;
    height: 26px;
}

/* Hologram Color Sets */
.holo-blue { background-color: rgba(37, 99, 235, 0.45); box-shadow: 0 0 15px rgba(37, 99, 235, 0.6); }
.holo-purple { background-color: rgba(168, 85, 247, 0.45); box-shadow: 0 0 15px rgba(168, 85, 247, 0.6); }
.holo-emerald { background-color: rgba(16, 185, 129, 0.45); box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); }
.holo-amber { background-color: rgba(245, 158, 11, 0.45); box-shadow: 0 0 15px rgba(245, 158, 11, 0.6); }

.service-box h3 {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.service-features li {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "•";
    color: #60a5fa;
    font-weight: 900;
}

/*==========================================================================
  8. BRAND FOOTER BLOCK
  ========================================================================== */
.footer {
    background: #111111;
    padding: 70px 0 20px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-box h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #ffffff;
}

.footer-box p {
    color: #ccc;
    line-height: 1.8;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-box ul li a:hover {
    color: #2563EB;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563EB;
    color: #111;
    border-color: var(--color-cyan);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
}

.footer-bottom p {
    color: #aaa;
}

.footer-bottom a {
    color: #2563EB;
}

/*==========================================================================
  9. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
  ========================================================================== */
@media (max-width: 1024px) {
    .menu {
        gap: 20px;
    }
    .menu > li > a {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .top-bar, .menu, .header-btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header {
        padding: 12px 0;
    }

    .banner-slider {
        height: 480px;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-content h2 {
        font-size: 34px;
    }

    .split-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 420px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-header h2, 
    .services-header h2 {
        font-size: 1.75rem;
    }

    .solutions-grid, 
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


.service-dropdown{
    position:relative;
}

.service-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:260px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    padding:12px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:999;
}

.service-dropdown:hover .service-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.service-menu a{
    display:block;
    padding:12px 20px;
    color:#0F172A;
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
    border-bottom:1px solid #f1f1f1;
}

.service-menu a:last-child{
    border-bottom:none;
}

.service-menu a:hover{
    background:#2563EB;
    color:#fff;
    padding-left:28px;
}






.hero-slide-container{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    min-height:650px;
}

.hero-slide-content{
    flex:1;
    max-width:600px;
}

.hero-slide-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-slide-image img{
    max-width:100%;
    width:550px;
    animation:floatImage 4s ease-in-out infinite;
}



@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}



@media(max-width:991px){

.hero-slide-container{
    flex-direction:column;
    text-align:center;
    padding:100px 0;
}

.hero-slide-content{
    max-width:100%;
}

.hero-slide-image{
    margin-top:40px;
}

.hero-slide-image img{
    width:420px;
}

}

@media(max-width:576px){

.hero-slide-image img{
    width:280px;
}

}




</style>


   


.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    background-color: #0f172a;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1300px;
}

.hero-slide-content {
    max-width: 680px;
}

/* Typography & Animated Content Elements */
.slide-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #fdfeff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slide-content h2 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Active Entrance Animations */
.hero-slide.active .slide-badge,
.hero-slide.active .hero-slide-content h2,
.hero-slide.active .hero-slide-content p,
.hero-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.slide-prime-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.slide-prime-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.slide-sec-btn {
    display: inline-block;
    padding: 14px 24px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.slide-sec-btn i {
    font-size: 14px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.slide-sec-btn:hover {
    color: #3b82f6;
}

.slide-sec-btn:hover i {
    transform: translateX(4px);
}

/* Navigation Arrow Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.arrow-left { left: 40px; }
.arrow-right { right: 40px; }

/* Horizontal Pagination Line Indicators */
.slider-pagination-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-line-indicator {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slide-line-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-line-indicator.active {
    width: 60px;
    background: #2563eb;
}

/*==========================================================================
  RESPONSIVE BREAKPOINTS
  ========================================================================== */
@media (max-width: 991px) {
    .modern-hero-slider {
        height: 520px;
    }
    
    .hero-slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slider-arrow {
        display: none; /* Hide arrows on small displays, rely on indicators */
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        height: 480px;
    }

    .hero-slide {
        text-align: center;
    }

    .hero-slide-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-slide-content h2 {
        font-size: 2rem;
    }

    .hero-slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-actions {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .slide-prime-btn, .slide-sec-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


.integrations-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
}

.integrations-header {
    text-align: center;
    margin-bottom: 40px;
}

.integrations-header h2 {
    font-size: 2.25rem;
    color: #2c4a5e; 
    font-weight: 700;
    margin-bottom: 8px;
}

.header-underline {
    width: 60px;
    height: 3px;
    background-color: #06B6D4; 
    margin: 0 auto;
    border-radius: 2px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.integration-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.integration-card img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(10%); 
    transition: filter 0.3s ease;
}


.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.integration-card:hover img {
    filter: grayscale(0%);
}


@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    
    .integrations-header h2 {
        font-size: 1.75rem;
    }
}

.cta-section{
    position:relative;
    overflow:hidden;
    padding:90px 20px;
    background:linear-gradient(135deg,#071A35 0%,#0F3D7A 100%);
}

.cta-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,255,180,.12);
    top:-150px;
    right:-120px;
    filter:blur(40px);
}

.cta-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(37,99,235,.20);
    left:-120px;
    bottom:-120px;
    filter:blur(35px);
}

.cta-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

.cta-content{
    flex:1;
}

.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:rgba(255,255,255,.12);
    color:#fff;
    border-radius:40px;
    font-size:14px;
    margin-bottom:25px;
}

.cta-content h2{
    font-size:48px;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.cta-content p{
    color:#d5e3ff;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#06B6D4;
    color:#fff;
}

.btn-primary:hover{
    background:#0891b2;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#071A35;
}

.cta-stats{
    display:grid;
    gap:20px;
    width:320px;
}

.stat-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:28px;
}

.stat-card h3{
    color:#06B6D4;
    font-size:38px;
    margin-bottom:8px;
}

.stat-card span{
    color:#d8e2f1;
    font-size:15px;
}



@media(max-width:991px){

.cta-container{
    flex-direction:column;
    text-align:center;
}

.cta-content p{
    margin:auto auto 35px;
}

.cta-buttons{
    justify-content:center;
}

.cta-stats{
    width:100%;
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:767px){

.cta-section{
    padding:70px 20px;
}

.cta-content h2{
    font-size:34px;
}

.cta-content p{
    font-size:16px;
}

.cta-stats{
    grid-template-columns:1fr;
}

.btn-primary,
.btn-outline{
    width:100%;
    text-align:center;
}

}



.exclusive-features-section {
    padding: 90px 20px;
    background-color: #ffffff;
   
}

.features-main-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.features-tagline {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 12px;
}

.features-main-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.features-main-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* Modern Bento-Style Grid Architecture */
.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Base Feature Card Layout */
.modern-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.modern-feature-card h3 {
    font-size: 1.35rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}

.modern-feature-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Modern Minimalist Icon Enclosures */
.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-box i {
    font-size: 1.25rem;
    color: #2563eb;
}

/* Color Variant Overrides */
.feature-icon-box.variant-cyan { background-color: #ecfeff; }
.feature-icon-box.variant-cyan i { color: #06b6d4; }

.feature-icon-box.variant-purple { background-color: #faf5ff; }
.feature-icon-box.variant-purple i { color: #a855f7; }

.feature-icon-box.variant-emerald { background-color: #ecfdf5; }
.feature-icon-box.variant-emerald i { color: #10b981; }

.feature-icon-box.variant-amber { background-color: #fffbeb; }
.feature-icon-box.variant-amber i { color: #f59e0b; }

/* Interactive Hover States */
.modern-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05);
    background: #ffffff;
    border-color: #cbd5e1;
}

/* Highlighted Showcase Card Variant (Spans 2 Rows vertically) */
.feature-card-highlight {
    grid-row: span 2;
    background: #0f172a;
    border-color: #1e293b;
    color: #ffffff;
    justify-content: flex-start;
}

.feature-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.feature-card-highlight h3 {
    color: #ffffff;
    font-size: 1.65rem;
    margin-top: 10px;
}

.feature-card-highlight p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.65;
}

.feature-card-highlight .feature-icon-box {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.feature-card-highlight .feature-icon-box i {
    color: #3b82f6;
}

.feature-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-inline-specs {
    list-style: none;
    padding: 20px 0 0 0;
    margin-top: auto;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 20px;
}

.card-inline-specs li {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-dot {
    width: 6px;
    height: 6px;
    background-color: #3b82f6;
    border-radius: 50%;
}

.feature-card-highlight:hover {
    background: #0f172a;
    border-color: #2563eb;
    box-shadow: 0 25px 40px -10px rgba(15, 23, 42, 0.4);
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-card-highlight {
        grid-row: span 1;
        grid-column: span 2; 
    }
}

@media (max-width: 768px) {
    .features-main-header h2 {
        font-size: 1.85rem;
    }

    .features-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-highlight {
        grid-column: span 1;
    }

    .modern-feature-card {
        padding: 30px 24px;
    }
    
    .card-inline-specs {
        flex-direction: column;
        gap: 10px;
    }
}

.vertical-tabs-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    font-family: system-ui, -apple-system, sans-serif;
}

.tabs-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.tabs-tagline {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 12px;
}

.tabs-header h2 {
    font-size: 2.25rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
}


.tabs-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

.tabs-navigation {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-nav-btn {
    width: 100%;
    padding: 18px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-nav-btn i {
    font-size: 1.15rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.tab-nav-btn:hover {
    color: #2563eb;
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.tab-nav-btn.active {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25);
}

.tab-nav-btn.active i {
    color: #ffffff;
}

.tabs-content-display {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInPane 0.4s ease forwards;
}

.pane-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pane-text {
    flex: 1.2;
}

.pane-image {
    flex: 0.8;
}

.pane-text h3 {
    font-size: 1.75rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 16px;
}

.pane-text p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.pane-features {
    list-style: none;
    padding: 0;
}

.pane-features li {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pane-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
}

.pane-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991px) {
    .tabs-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs-navigation {
        flex: none;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .tab-nav-btn {
        white-space: nowrap;
        width: auto;
        padding: 14px 20px;
    }
    
    .tabs-content-display {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tabs-header h2 {
        font-size: 1.75rem;
    }

    .pane-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }

    .pane-image img {
        height: 220px;
    }
}

.modern-form-section {
    padding: 90px 20px;
    background-color: #f8fafc;
    font-family: system-ui, -apple-system, sans-serif;
}

.form-split-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left Side Copy Layout */
.form-info-side {
    flex: 1;
}

.form-tagline {
    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.form-info-side h2 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-info-side p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 40px;
}

.form-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 18px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.contact-detail-item h4 {
    font-size: 0.88rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-detail-item a {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #2563eb;
}

/* Right Side Modern Card Layout */
.form-input-side {
    flex: 1.2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.04);
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-grid-row {
    display: flex;
    gap: 24px;
}


.input-group {
    position: relative;
    flex: 1;
}

.input-group.full-width {
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.input-group textarea + label {
    top: 14px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563eb;
    background: #ffffff;
    padding: 0 6px;
}


.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.select-group {
    position: relative;
}

.select-group select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 14px;
}

/* Custom dropdown placeholder handling */
.select-group select:focus ~ .select-label,
.select-group select:valid ~ .select-label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563eb;
    background: #ffffff;
    padding: 0 6px;
}


.form-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover {
    background: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.form-submit-btn:hover i {
    transform: translateX(4px) translateY(-2px);
}

@media (max-width: 991px) {
    .form-split-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .form-info-side, .form-input-side {
        width: 100%;
        flex: none;
    }
    
    .form-info-side {
        text-align: center;
    }
    
    .form-contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .form-info-side h2 {
        font-size: 1.85rem;
    }
    
    .form-input-side {
        padding: 30px 20px;
    }
    
    .form-grid-row {
        flex-direction: column;
        gap: 28px;
    }
    
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
 
