/* header section started */

/* --- HEADER TOP (Logo, Search, Icons) --- */
.top-header {
    background-color: #F2F4F8;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-header .container {
    padding: 0;
}
.container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Placeholder */
.logo-desktop{
    color: var(--text-white);
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
}
.logo-desktop img{
    width: 150px;
    position: relative;
    right: 60px;
}
.logo span { color: #2984F8; } /* Mimicking Star Tech Logo colors */

/* Search Bar */
.search-bar {
    flex-grow: 1;
    max-width: 600px;
    position: relative;
    margin: 0 20px;
}
.search-bar a{
  font-size: 12px;
  font-weight: bold;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    cursor: pointer;
}

/* Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-white);
    font-size: 13px;
    position: relative;
    left: 60px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.action-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.contact-sales-top-btn {
    border: 1px solid #336DF4;
    color: #336DF4;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-sales-top-btn:hover { 
    color: #336DF4;
    background-color: #EAF0FE;
}
.try-for-free-top-btn{
    background-color: #336DF4;
    color: white;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}
.try-for-free-top-btn:hover { 
    color: white;
    background-color: #336df4ab;
}

/* Mobile Hamburger & Cart (Hidden on Desktop) */
.mobile-toggle, .mobile-cart {
    display: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* --- DESKTOP NAVIGATION --- */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}
.top-main-nav {
    position: relative;
    z-index: 999;
}

.top-main-nav a{
  font-size: 14px;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: 0.2s;
    margin-bottom: -8px;
}

.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--accent-color);
}

/* Dropdown Menu (Desktop) */
.top-dropdown{
    width: 150px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dropdown {
    position: absolute;
    top: 130%;
    left: 14px;
    background: white;
    width: 240px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid #024985;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
    border-bottom: 1px solid #f1f1f1;

}

.dropdown-link {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.dropdown-link:hover {
    color: var(--accent-color);
    background-color: #f9f9f9;
}

/* Sub Dropdown (Level 2) */
.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    border-left: 1px solid #eee;
}

.dropdown-item:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* --- MOBILE MENU (SIDEBAR) --- */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2001;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container.active {
    left: 0;
}

/* Mobile Header inside Sidebar */
.mobile-menu-header {
    background: var(--primary-bg);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-close-btn {
    color: black;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Menu Items */
.mobile-nav-list {
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/*.mobile-nav-link.highlight {
    color: var(--accent-color);
}*/

.mobile-toggle-icon {
    color: #999;
    font-weight: 300;
    font-size: 18px;
}

/* Accordion Logic */
.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
}

.mobile-nav-item.open > .mobile-sub-menu {
    max-height: 1000px; /* Arbitrary large height */
}

.mobile-nav-item.open > .mobile-nav-link .mobile-toggle-icon {
    transform: rotate(0); 
}

/* Change + to - logic via content replacement or rotation. 
   Here we swap icons via JS logic or simpler CSS tricks. 
   Let's use the content swap visually for exact "Same to Same" look. */

/* Responsive Breakpoints */
@media (max-width: 991px) {
    /* Hide Desktop Elements */
    .main-nav, .header-actions, .search-bar {
        display: none;
    }

    /* Show Mobile Elements */
    .mobile-toggle, .mobile-cart {
        display: block;
    }

    .container {
        justify-content: space-between;
    }
    
    .logo { font-size: 20px; margin: 0; }
    
}
@media (max-width: 768px){
    .mobile-toggle.icon-bars {
    position: relative;
    left: -50px;
    font-size: 24px;
}
.logo-desktop{
    margin-right: 330px;
    }  
i.fa.fa-shopping-basket.shopping-cart-basket {
    font-size: 24px;
}

.payment-option .payment-button {
    background-color: #c0c2cd69;
    color: #fff;
    border-radius: 50px;
    padding: 6px;
    margin: 20px 200px;
    text-align: center;
}

.payment-option .card-package .price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    margin-top: 22px;
}
.col-md-3.customer-service-footer {
    position: relative;
    left: 300px;
    top: -180px;
}
.col-md-3.extras-footer {
    position: relative;
    top: -100px;
}
.col-md-3.address-footer {
    position: relative;
    top: -210px;
    left: 300px;
}
    
}

@media (max-width: 470px){

.icon-bars{
color: black;
position: absolute;
left: 20px;
top: 22px;
font-size: 28px;
} 
.logo-desktop img{
position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
top: 20px;
}

.shopping-cart-basket{
position: absolute;
top: 22px;
right: 30px;
font-size: 20px;
}
.top-header {
background-color: #F2F4F8;
padding: 35px 0;
position: sticky;
top: 0;
z-index: 1000;
}
}

/* Mobile */
@media (max-width: 788px){

  .icon-bars{
    color: black;
    position: absolute;
    left: 20px;
    top: 22px;
    font-size: 28px;
  } 

  .logo-desktop img{
    position: absolute;
  left: 50%;
  transform: translateX(-50%);
  }

  .shopping-cart-basket{
    position: absolute;
    top: 22px;
    right: 30px;
    font-size: 20px;
  }

  .top-header {
    background-color: #F2F4F8;
    padding: 35px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}


/* Desktop */
@media (max-width: 991px){

  .icon-bars{
    color: black;
    position: absolute;
    left: 20px;
    top: 22px;
    font-size: 28px;
  } 

  .logo-desktop img{
    position: absolute;
    left: 400px;
    top: 20px;
  }

  .shopping-cart-basket{
    position: absolute;
    top: 22px;
    right: 30px;
    font-size: 20px;
  }

  .top-header {
    background-color: #F2F4F8;
    padding: 35px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}


@media (min-width: 1400px) {
.container-fluid {
width: 1400px;

}
.search-bar {
flex-grow: 1;
max-width: 390px;
position: relative;
margin: 0 20px;
}
.logo-desktop img {
width: 150px;
position: relative;
right: 110px;
}

}
/* header section end */


:root {
--primary-blue: #4278f5; /* For the main button and highlight text */
--light-blue: #e8f0fe;  /* For the primary button hover/active (optional) */
--text-dark: #202020;
--text-grey: #4e5963;
--white: #ffffff;
--ink: #0f172a;
--muted: #64748b;
--brand: #1a73e8;
--brand-ink: #0b57d0;
--surface: #ffffff;
--soft: #f7f8fb;
--ring: rgba(26, 115, 232, .25);
--card: #ffffff;
--border: #e5e7eb;
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body {
font-family: var(--font-family);
margin: 0;
padding: 0;
background-color: var(--white); /* Ensure a white background */
text-align: left; /* Center everything */
}

.main-heading{
font-size: 40px;
font-weight: 800; /* Extra bold */
line-height: 1.1;
color: var(--text-dark);
margin: 20px 0 20px 0;
text-align:center;
}
.highlight {
color: var(--primary-blue);
}
.subtext {
font-size: 16px;
margin-bottom: 30px;
text-align:center;
line-height: 1.5;
}

/* Buttons (shared) */
.actions {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 28px
}

.btn {
/*border: 2px solid transparent;*/
border-radius: 999px;
padding: 8px 24px;
font-weight: 700;
font-size: 16px;
display: inline-flex;
align-items: center;
gap: 10px;
cursor: pointer;
text-decoration: none;
transition: .18s ease;
}

.btn.primary {
background: var(--brand);
color: #fff;
box-shadow: 0 10px 22px var(--ring)
}

.btn.primary:hover {
transform: translateY(-1px);
background: var(--brand-ink)
}

.btn.secondary {
background: #fff;
border-color: #dbe4f0;
color: var(--ink)
}

.btn.secondary:hover {
border-color: #c8d3e3;
transform: translateY(-1px)
}

.btn .arrow {
display: inline-grid;
place-items: center;
width: 28px;
height: 28px;
border-radius: 999px;
background: #fff;
color: var(--brand);
}

/* Rating row */
.meta {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-wrap: wrap;
color: #0f172a;
font-size: 15px;
}

.stars {
display: inline-flex;
gap: 3px
}

.stars svg {
width: 18px;
height: 18px;
fill: #f59e0b
}

.score {
font-weight: 700;
margin-left: 4px
}

.divider {
opacity: .35
}

.store-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
border-radius: 8px;
background: #e9f0ff;
color: #1a73e8;
font-weight: 700;
font-size: 13px
}

.store-badge svg {
width: 16px;
height: 16px
}
/* =============== VIDEO (full width of container) =============== */
.video-section {
width: 100%;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}

.video-section video {
width: 100%;
height: auto;
display: block;
object-fit: cover;
border: none;
outline: none
}

/* =============== USE CASE INTRO =============== */
.uc-intro {
text-align: center;
margin-bottom: 48px
}

.uc-title {
/*font-size: clamp(28px, 4.2vw, 44px);*/
font-size:34px;
font-weight: 800;
margin-bottom: 12px
}

.uc-sub {
color: var(--muted);
font-size: 16px;
line-height: 1.7;
max-width: 700px;
margin: 0 auto 22px
}

.btn.grad {
padding: 7px 26px;
background: linear-gradient(90deg, #4f7cf7 0%, #3aa0ff 100%);
color: #fff;
border-radius: 999px;
box-shadow: 0 10px 24px rgba(59, 130, 246, .25);
transition: transform .15s ease, filter .15s ease;
}

.btn.grad:hover {
transform: translateY(-2px);
filter: brightness(.95)
}

/* =============== 4-CARD GRID =============== */
.wrap{
margin:0px 20px;
}
.uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px;
}

.uc-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
padding: 24px;
transition: transform .2s ease, box-shadow .2s ease;
}

.uc-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.uc-card .thumb {
width: auto;
height: auto;
margin-bottom: 14px
}

.uc-card .title {
font-size: 20px;
font-weight: 700;
margin-bottom: 8px
}

.uc-card .desc {
color: var(--muted);
font-size: 15px;
line-height: 1.6;
flex-grow: 1;
margin-bottom: 18px
}

.uc-card .link {
text-decoration: none;
color: #2563eb;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px
}

.uc-card .arrow {
background: #e8f1ff;
border-radius: 50%;
width: 22px;
height: 22px;
display: inline-grid;
place-items: center;
transition: transform .15s ease
}

.uc-card:hover .arrow {
transform: translateX(2px)
}

   /* Build an In-House Team Started */
   
   .super-grid .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    max-width: 1280px;
    margin: 40px 20px 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    box-sizing: border-box;
}
.super-grid .particle-canvas {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    opacity: 1;
    z-index: 1; 
    pointer-events: none;
}
.super-grid .card-content { 
    position: relative; 
    z-index: 2; 
    padding: 20px; 
    text-align: center; 
}

.super-grid .particle-card {
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dddbdb47;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /*box-shadow: 0px 3px rgb(60 52 52 / 5%);*/
    box-sizing: border-box;
}

.super-grid .particle-card:hover {
    border-color: #024985;
    box-shadow: 0 0 15px rgb(10 28 151 / 40%);
    transform: translateY(-5px);
}

.super-grid .large-card { grid-row: span 2; }

.super-grid .particle-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    opacity: 0;
    transition: opacity 0.5s;
}
.super-grid .particle-card:hover .particle-canvas {
    opacity: 1;
}
.super-grid .card-content { position: relative; z-index: 2; padding: 20px; text-align: center; color: white; }


.super-grid .count { font-size: 24px; margin-bottom:40px; background: linear-gradient(#000, #000); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.super-grid .super-text { background: linear-gradient(to right, #ff4e50, #f9d423); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.super-grid .recorded { color: #00d2ff; }
.super-grid .solve-card { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.super-grid .card-content .btn-outline {
    background: transparent;
    border: 1.5px solid #0B57D0;
    color: #0B57D0;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 80%;
    margin-top: 20px;
    transition: 0.3s;
}
.super-grid .grid-container p{
    color: black;
}

@media (max-width: 768px) {
    .super-grid .grid-container { grid-template-columns: 1fr; }
    .super-grid .large-card { grid-row: span 1; }
}

@media (max-width: 1400px) {
    .super-grid .grid-container {
    max-width: 1324px;
}
}
   
   /* Build an In-House Team End */
   
   /* One platform. One subscription started */
   
   .platform-section .platform-grid {
 background: radial-gradient(circle at top, #1e3c72, #020617);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0px 20px;
  
  border-radius: 5px;
}

/* CARD */
.platform-section .platform-card {
  border-radius: 10px;
  padding: 20px 20px;
  text-align: center;
  color: #fff;
}

/* TITLE */
.platform-section .platform-card h2 {
  color: #5da9ff;
  font-size: 28px;
  margin-bottom: 18px;
}


/* DESCRIPTION */
.platform-section .platform-desc {
  font-size: 17px;
  line-height: 1.4;
  color: #e5e7eb;
  margin-bottom: 30px;
}

/* STORAGE */
.platform-section .platform-storage {
  margin-bottom: 25px;
  font-size: 13px;
}


/* BUTTON */
.platform-section .platform-card .btn {
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platform-section .primary {
  background: #1a73e8;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .platform-section .platform-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
    
  .platform-section .platform-card-img img {
    width: 220px !important;
    height: 220px !important;
}
.platform-section .platform-grid {
    margin: 0px 3px;
}
.platform-section .platform-section {
    margin-top: -12px;
}
.platform-section .payment-option .payment-button {
    margin: 20px 10px !important;
    
}

}
/* One platform. One subscription end */

 /* Messenger started */
 
 /* Carousel Main Container */
        .main-wrapper .carousel-container-flash { position: relative; display: flex; align-items: center; background: #fff;
            padding: 20px 20px;
            margin-bottom: 20px;
            position: relative;
            border-radius: 8px;}

        .main-wrapper .viewport { overflow: hidden; width: 100%; border-radius: 8px; }

        .main-wrapper .track2 { 
            display: flex; 
            gap: 20px;
            transition: transform 0.5s ease-in-out; 
            padding: 10px 0;
        }

        
        .main-wrapper .card-carousel {
            flex: 0 0 calc(20% - 16px); 
            min-width: calc(20% - 16px);
            
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            box-sizing: border-box;
        }

        .main-wrapper .card-carousel img { width: 100%; height: 100px; object-fit: contain; margin-bottom: 10px; }
        .main-wrapper .card-carousel h3 { font-size: 16px; margin: 10px 0; color: #333; font-weight:700; }
        .main-wrapper .card-carousel p { font-size: 13px; color: #666; line-height: 1.6; text-align: justify; }

        /* Buttons on Sides */
        .main-wrapper .carousel-container-flash .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .main-wrapper .carousel-container-flash .nav-btn:hover { background: #0066ff; color: #fff; border-color: #0066ff; }
        .main-wrapper .carousel-container-flash .prev-btn { left: -25px; }
        .main-wrapper .carousel-container-flash .next-btn { right: -25px; }

        /* Responsive: Mobile View 1 Item */
        @media (max-width: 768px) {
            .main-wrapper .card-carousel {
                flex: 0 0 100%;
                min-width: 100%;
            }
            .main-wrapper .carousel-container-flash .prev-btn { left: -10px; }
            .main-wrapper .carousel-container-flash .next-btn { right: -10px; }
            .main-wrapper .carousel-container-flash .nav-btn { width: 35px; height: 35px; }
        }
 
 /* Messenger end */

/* Smart Combo Packages Started */

.payment-option .main-wrapper-package { 
            max-width: 1280px; 
            margin: 0 auto; 
            position: relative; 
        }

        /* Carousel Main Container */
        .payment-option .carousel-container-package { 
            position: relative; 
            display: flex; 
            align-items: center; 
        }
        .payment-option .viewportpackage {
            overflow: hidden; 
            width: 100%; 
            border-radius: 8px; 
        }
        .payment-option .trackPkg { 
            display: flex; 
            gap: 20px; 
            transition: transform 0.5s ease-in-out; 
            padding: 10px 0;
        }

        .payment-option .card-package {
            flex: 0 0 calc(25% - 15px); /* 100/4 = 25% */
            min-width: calc(25% - 15px);
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            box-sizing: border-box;
        }
        /* Buttons on Sides */
        .payment-option .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .payment-option .nav-btn:hover { background: #0066ff; color: #fff; border-color: #0066ff; }
        .payment-option .prev-btn { left: -25px; }
        .payment-option .next-btn { right: -25px; }

    .payment-option .top-payment-section{
        height: 260px;
    }
    .payment-option .card-package h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.payment-option .card-package .subtitle {
    font-size: 14px;
    color: #666;
    height: 40px;
    margin-bottom: -10px;
}
.payment-option .card-package .price {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.payment-option .card-package .price span {
    font-size: 18px;
    color: #666;
}

.payment-option .card-package .best-choice {
    font-size: 13px;
    font-weight: bold;
    margin: 15px 0;
}

.payment-option .card-package .billing-tag {
    background: #e0e0e0;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Buttons */
.payment-option .card-package .btn-outline {
    background: transparent;
    border: 1.5px solid #3b71fe;
    color: #3b71fe;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 80%;
    margin-top: 20px;
    transition: 0.3s;
}
.payment-option .card-package .btn-solid {
    background: #3b71fe;
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.payment-option .card-package .btn-solid.wide { width: 80%; margin-top: 20px; }

.card-package .btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.payment-option .card-package .user-limit {
    font-size: 14px;
    color: #666;
    margin: 15px 0 30px;
    font-weight: 500;
}
/* Features List */
.payment-option .card-package .feature-title {
    text-align: left;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.payment-option .card-package .features {
    list-style: none;
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;

}
.payment-option .card-package .features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.payment-option .card-package .features i {
    color: #3b71fe;
    margin-top: 3px;
}
.payment-option .card-package hr{
    margin: 0px 10px;
}

.payment-option .active-first-card {
        border: 1px solid transparent !important; 
        border-radius: 15px; 
        background-image: linear-gradient(white, white), 
                          linear-gradient(135deg, #4285F4 25%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
.payment-option .payment-button {
background-color: #c0c2cd69;
color: #fff;
border-radius: 50px;
padding: 6px;
margin: 20px 490px;
text-align: center;

}
.payment-option .payment-button .btn-payment {
background-color: #F1F4FE;    
padding: 10px 20px;
margin: 0px 0px;
color: black;
font-weight: bolder;
font-size: 14px;
border:none;
border-radius: 50px;
}

.payment-option .payment-button .btn-payment:hover{
background-color: #caceeb;
color: white;
border:none;
transition: 3s;
}
.payment-option .btn-payment{
border: 1px solid #0381EB;
background-color: #2C3A96;
 /* Responsive: Mobile View 1 Item */
        @media (max-width: 768px) {
            .payment-option .card-package {
                flex: 0 0 100%;
                min-width: 100%;
            }
           .payment-option .prev-btn { left: -10px; }
           .payment-option .next-btn { right: -10px; }
           .payment-option .nav-btn { width: 35px; height: 35px; }
        }
        @media (max-width: 360px) {
            .payment-option .card-package {
            flex: 0 0 calc(100% - 15px);
            min-width: calc(100% - 15px);
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            box-sizing: border-box;
            }
    }

/* Smart Combo Packages End */

/* brand started */

@media (max-width:1100px) {
      .uc-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    /* 900px ↓ : 3 → 2 columns, contrast stacks */
    @media (max-width:900px) {
      .uc-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .contrast {
        grid-template-columns: 1fr
      }
    }

    /* 768px ↓ : container padding & hero size */
    @media (max-width:768px) {
      .container {
        padding: 20px 20px;
        border-radius: 16px
      }

      .main-heading {
        font-size: 42px
      }

      .subtext {
        font-size: 16px
      }

      .logo-row {
        gap: 32px
      }

      .logo-row img {
        height: 36px
      }
    }

    /* 580px ↓ : 2 → 1 columns */
    @media (max-width:580px) {
      .uc-grid {
        grid-template-columns: 1fr
      }
    }

/* 520px ↓ : stats 3 → 2 columns */
@media (max-width:520px) {
     .stats {
    grid-template-columns: 1fr 1fr
     }
}
@media (max-width:476px) {
.container-fluid {
    padding: 0;
    border-radius: 16px
    }
.main-heading{
        font-size: 40px;
}
.subtext{
    font-size: 14px;
}  
.loop-slider{
  width: 100%;
  margin:0px 10px;
}
.contrast{
    margin-top: 20px;
}
.col-md-6.platform-sub-body {
    padding-left: 45px;
}
.platform-sub-body h1{
    font-size: 30px;
}
.platform-sub-body p{
    font-size: 16px;
}
.platform-img{
    display: none;
}
.btn-home-get-started-free{
    margin-left:30px;
    margin-bottom:20px;
}
.platform-section{
    margin-top:-30px;
    margin-bottom:20px;
}
.social .social-file{
    margin-bottom:15px;
}
 .payment-option h2{
     font-size: 28px;
     margin:0px 0px;
     
 }
 .payment-button {
      margin: 20px 10px;
    }
 .started-package{
     margin:20px 0px;
 }   
 .started-list ul{
     padding:0px 10px;
 }   
 .started-package .payment-card{
     height: 900px;
 }  
    }

/* home section end*/







/* category section started */

.cat-container{
    padding:0px;
}
.top-header .container{
    padding:0;
}
    .btn-premium {
      background-color: #e3e8ff;
      color: #3b4cca;
      font-weight: 600;
      border-radius: 25px;
      font-size: 14px;
    }
    .feature-list {
      list-style: none;
      padding-left: 0;
    }
    .feature-list li {
      margin-bottom: 8px;
      color: #333;
    }
    .feature-list i {
      color: #287bff;
      margin-right: 8px;
    }
    .light-box {
      background-color: #024985;
      color: #fff;
      border-radius: 15px;
      padding: 15px 25px;
      margin-top: 20px;
    }
    .light-box .btn-book {
     background-color: white;    
      padding: 10px 40px;
      margin-right: 17px;
      color: black;
      font-weight: bolder;
      font-size: 14px;
      border:none;
    }
    
    .light-box .btn-book:hover{
        background-color: #264FA4;
        color: #fff;
        border:none;
        transition: 3s;
    }
    .btn-book:hover{
      border: 1px solid #0381EB;
      background-color: #2C3A96;
    }
    .align-items-center{
        margin: 20px;
        
    }
    .align-items-center .badge{
        padding: 10px; background-color: #B2BEED;
        border: 1px solid #9DADEB;
        color: #3730A3;
        margin-right: 20px;
    }
    .icon-box {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
      text-align: center;
      font-size: 14px;
    }
    .align-items-center{
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .book-service{
      padding: 10px;  
    }
    .book-service:hover{
      color:red;  
    }
    body{
        background: radial-gradient(circle,rgba(235, 239, 255, 1) 0%, rgba(247, 249, 255, 1) 100%);
    }
    
    /* Working Step Procedure */
    
.timeline-container {
   
    margin: auto;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #FF722E;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.circle {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #FF722E;
    border-radius: 50%;
    position: absolute;
    left: -39px;
    top: 5px;
    transition: 0.3s;
}

.timeline-item:hover .circle {
    background: white;
}

.content h3 {
    margin: 0;
    font-size: 14px;
    color: black;
    font-weight: 600;
}


.content p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    line-height: 22px;
}
/* Project Timeline  */


 .custom-table{
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .custom-table thead{
        background: linear-gradient(135deg,#4b79ff,#683bff);
        color: #fff;
    }
    .custom-table th, .custom-table td{
        padding: 14px 10px;
        text-align: left;
        font-size: 15px;
    }
    .custom-table tbody tr{
        border-bottom: 1px solid #eef0f6;
        transition: 0.3s;
    }
    .custom-table tbody tr:hover{
        background: #f0f4ff;
    }
    .total-row{
        font-weight: bold;
        background: #f9f9f9;
        
    }

/* video section started */

/* Image Wrapper */
.video-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid gray;
    border-bottom: 3px solid gray;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: #FF0033;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-out;
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.3);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-popup {
    background: #000;
    padding: 10px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-video {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* video section end */

/* breadcrumb section started */
.breadcrumb {
    border: TRANSPARENT;
    background-color: transparent;
    text-align:left;
}
.breadcrumb a {
    color:#081621;
    font-weight: bolder;
    font-size: 14px;
}
.breadcrumb > li:after {
    top: 4px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    
}

.dropdown-menu li > a:hover {
    text-decoration: none;
    color: red;
    background-color: #024985;
    background-image: linear-gradient(to bottom, #024985, #024985);
    border-bottom: 1px solid red;
}
/* breadcrumb section end */


@media (max-width: 476px){
   .row.align-items-center {
    margin: 20px 0px;
}
.service-card h2{
    font-size: 20px;
    margin-top: -15px;
}
.align-items-center .badge {
    margin-top: 12px;
    margin-right: 5px;
}
.light-box.d-flex.justify-content-between.align-items-center.mt-4.flex-wrap {
    margin: 0 -5px;
}
.light-box .btn-book {
    padding: 8px 20px;
    margin-top:10px;
}

.video-wrapper{
    margin-top: -10px;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: -45px;
}
.what-you-get-body .what-you-get-sub-body h2{
    padding: 10px 0px 0px 0px;
}
.col-md-8.what-you-get-sub-body {
    margin: 20px -15px;
}
.working-step-procedure {
    margin: 0 -30px;
}
.col-md-8.faqs-body {
    margin: -30px -10px;
}
.col-md-8.faqs-body h2{
    padding-top: 10px;
}
.col-md-4.timeline-body {
    margin: 0px -25px;
    margin-top:45px;
}
span.badge {
    font-size: 11px;
}
.payment-system{
    margin: 15px;
}

.col-md-7.reporting-sub-body {
    margin: -25px -10px;
}
.col-md-7.reporting-sub-body h2{
    padding-top: 10px;
}

.col-md-5.terms-and-conditions {
    margin: 45px -25px -30px -25px;
}
   

}

/* category section end */

/* contact section started*/

.get-started-contact-form{
     box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
     background-color: white; 
     border-radius: 5px;
     margin-bottom:25px;
}
legend {
    font-size: 20px;
    font-weight: bold;
    padding:10px;
}
.form-horizontal .control-label {
    font-size: 14px;
    font-weight: bolder;
    text-align: start;
    display: inline-grid;
    width: 50%;
    margin-bottom: 8px;
}
        
.get-started-contact-form .form-horizontal .form-group{
    margin-left: 40px;
}

.get-started-pull-right {
    /*float: left !important;*/
    padding-bottom:20px;
    margin-left:55px; 
}
.get-started-pull-right .btn-get-started-pull-left{
    padding: 6px 40px;
    border-radius: 5px;
    font-size: 16px;
    color:white;
    background-color: #336DF4;
    border:none;
}
.btn-get-started-pull-left:hover{
   color:white;
}
/* breadcrumb section started */
.breadcrumb {
    border: TRANSPARENT;
    background-color: transparent;
    margin: -20px 0 10px 0;
}
.breadcrumb a {
    color:#081621;
    font-weight: bolder;
    font-size: 14px;
}
.breadcrumb > li:after {
    top: 4px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    
}

.dropdown-menu li > a:hover {
    text-decoration: none;
    color: red;
    background-color: #024985;
    background-image: linear-gradient(to bottom, #024985, #024985);
    border-bottom: 1px solid red;
}
/* breadcrumb section end */

@media (max-width: 476px){
    .get-started-contact-form .form-horizontal .form-group{
            margin-left: -5px;
        }
    .form-horizontal{
        margin:19px;
    } 
    .contact-right-title{
        padding-top:10px;
    }
    .contact-us-main-part{
        margin:0px 10px;
        margin-bottom:40px;
        
    }
    .get-started-contact-form {
    margin: 0 -20px;
}
.col-md-6.contact-us-main-part {
    margin: 0px -10px;
}
    .breadcrumb {
    border: TRANSPARENT;
    background-color: transparent;
    margin: -20px 0 0 -45px;
}

}

@media (min-width: 1400px) {
  .contact-us-main-part{
      width:46%;
  }
}

/* contact section end*/




/* information pages started */

.information-all-page{
     box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
     background-color: white; 
     border-radius: 5px;
     margin:15px;
}
.breadcrumb {
    border: TRANSPARENT;
    background-color: transparent;
    margin: 10px 0 10px 0;
}
.breadcrumb a {
    color:#081621;
    font-weight: bolder;
    font-size: 14px;
}
.breadcrumb > li:after {
    top: 4px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    
}



@media (max-width:476px){
   .row.information-all-page {
    margin: 0px 0px;
    margin-bottom: 20px;
} 
}

/* information pages end */

/* sitemap started*/
.information-sitemap-page{
     box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
     background-color: white; 
     border-radius: 5px;
     margin:15px;
}
.breadcrumb {
    border: TRANSPARENT;
    background-color: transparent;
    margin: 10px 0 10px 0;
}
.breadcrumb a {
    color:#081621;
    font-weight: bolder;
    font-size: 14px;
}
.breadcrumb > li:after {
    top: 4px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    
}

/* sitemap end*/










/* footer section started */
footer{
  background: #081621;
  margin-top: 0px !important;
  padding-top: 0px !important;
}   
.main-footer{
    margin: 15px;
}
.get-againtheme-footer{
    text-align: left;
}
.customer-service-footer{
    text-align: left;
}
.extras-footer{
    text-align: left;
}
.address-footer{
    text-align: left;
}
.address .address-icon{
    border: 2px solid #354564; 
    border-radius: 70px; 
    width: 30px; 
    height: 30px; 
    padding-left: 9px; 
    padding-top: 6px;
}
.list-get-today a .start-icon{
    color: #FABF00;
}
.list-get-today a{
    font-size: 15px;
    margin-bottom: 10px;
}
.list-get-today .link-apple{
   margin-top:-80px;
}
.list-get-today a{
   font-size: 15px;
   margin-bottom: 10px;
}
.list-get-today .link-apple{
   margin-top:-80px;
}
   
@media (max-width:476px){
footer {
  margin-top: -20px;
}
.main-footer{
   margin:1px 5px;
   margin-bottom: 20px;
}

.main-footer .customer-service-footer{
   float: right;
    }
.main-footer .get-againtheme-footer{
   margin-bottom:30px;
}
.main-footer .address-footer{
   margin-top:40px;
}
.get-againtheme-footer .btn-download{
   position: absolute;
   top: 33px;
   right: -15px;
   margin-right:30px;
   padding: 2px 2px;
   font-size: 14px;
} 
.get-againtheme-footer .btn-contact-us{
   padding: 2px 2px;
   font-size: 14px;
}

   }
/* footer section end */