/* 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 var(--accent-color);
        }

        .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: white;
            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; }
            
            .logo-desktop{
                
            }
        }
        
    @media (max-width: 478px){
        
       .icon-bars{
        color: black;
        position: absolute;
        left: 20px;
        top: 22px;
        font-size: 28px;
        } 
        
    .logo-desktop img{
    width: 180px;
    position: absolute;
    left: 103px!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;
}
    }

@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 */



/* home section started*/

: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: center; /* 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;
 }
 .highlight {
    color: var(--primary-blue);
}
.subtext {
    font-size: 16px;
    margin-bottom: 30px;
}

/* 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: 14px 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-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: 14px 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);
      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)
    }

    /* =============== CONTRAST / KPI BAND =============== */
    .contrast {
      margin-top: 50px;
      margin-bottom: 30px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: center;
      gap: 40px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
    }

    .contrast h3 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 10px
    }

    .contrast p {
      color: var(--muted);
      margin-bottom: 20px
    }

    .btn.outline {
      background: #fff;
      color: #111827;
      border: 2px solid #1118271a;
      box-shadow: none
    }

    .btn.outline:hover {
      border-color: #11182733;
      color: #000
    }

    .stats {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(3, 1fr)
    }

    .stat {
      background: linear-gradient(180deg, #f7f9ff 0, #fff 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 10px;
      text-align: center;
    }

    .stat .num {
      font-weight: 900;
      font-size: 40px;
      line-height: 1
    }

    .stat .desc {
      color: var(--muted);
      font-weight: 600;
      margin-top: 6px
    }
    
/* One platform. One subscription. */
.platform-section{
    background: linear-gradient(90deg,rgba(222, 234, 255, 0.75) 0%, rgba(255, 238, 238, 0.75) 100%); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0px -20px;
    
}
.btn-home-get-started-free{
    padding:15px 30px;
    background-color: #336DF4;
    border-radius: 56px;
    color:white;
    font-weight:bolder;
    font-size: 18px;
    margin-top:20px;
    margin-bottom:8px
    border: none; 
      }
.btn-home-get-started-free:hover{
    color:white;
}
.unlock-your-savings{
    padding:10px 20px;
    border-radius: 56px;
    color:black;
    font-weight:bolder;
    font-size: 14px;
    margin-top:20px;
    margin-bottom:8px
    border: 1px solid black; 
}
.unlock-your-savings:hover{
          color:black;
}
.get-free-demo{
    padding:10px 30px;
    background-color: #336DF4;
    border-radius: 56px;
    color:white;
    font-weight:bolder;
    font-size: 18px;
    margin-top:20px;
    margin-bottom:8px
    border: none; 
}
.get-free-demo:hover{
    color:white;
}

/* massage */
.platform-card{
    box-shadow: 0 2px 6px rgba(0,0,0,0.5); 
    align-items: center; 
    text-align:center; 
    background: white;
    border-radius: 10px; 
    padding:5px; height: 166px;
}
.platform-card:hover{
    border-top: 1px solid #517CFF;
	border-left: 1px solid #517CFF;
	border-bottom: 1px solid #F7466E;
	border-right: 1px solid #F7466E;
}
/* payment system home page started */
   
   .payment-button {
      background-color: #c0c2cd69;
      color: #fff;
      border-radius: 50px;
      padding: 6px;
      margin: 20px 510px;
      
    }
    .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-button .btn-payment:hover{
        background-color: #caceeb;
        color: white;
        border:none;
        transition: 3s;
    }
    .btn-payment{
      border: 1px solid #0381EB;
      background-color: #2C3A96;
    }
    
    
    .btn-home-try-free {
                padding:8px 70px;
                border-radius: 56px;
                border: 1px solid #336DF4;
                color:#336DF4;
                font-weight:bolder;
                font-size: 18px;
                margin-top:20px;
                margin-bottom:8px
            }
            .btn-home-try-free:hover{
                color:#336DF4;
            }
            
            .feature-list-service{
                list-style: none;
                padding-left: 0;
            }
            .feature-list-service li{
                font-size: 15px;
                color: black;
                padding-bottom: 10px;
            }
            
            .btn-contact-sales-center{
                padding:8px 10px;
                background-color: #336DF4;
                border-radius: 56px;
                color:white;
                font-weight:bolder;
                font-size: 18px;
                margin-top:20px;
                margin-bottom:8px
                border: none;
            }
            .btn-contact-sales-center:hover{
                color:white;
            }
            
            .btn-buy-contact-sales {
                padding:7px 10px;
                border-radius: 56px;
                border: 1px solid #336DF4;
                color:#336DF4;
                font-weight:bolder;
                font-size: 16px;
                margin-top:20px;
                margin-bottom:8px
            }
            .btn-buy-contact-sales:hover{
                color:#336DF4;
            }
            
            .feature-list-service{
                list-style: none;
                padding-left: 0;
            }
            .feature-list-service li{
                font-size: 15px;
                color: black;
                padding-bottom: 10px;
                text-align: left;
            }
            
            .buy-list-service-center{
                list-style: none;
                padding-left: 0;
            }
            .buy-list-service-center li{
                font-size: 15px;
                color: black;
                padding-bottom: 10px;
                text-align: left;
            }
            
            .talk-list-service{
                list-style: none;
                padding-left: 0;
            }
            .talk-list-service li{
                font-size: 15px;
                color: black;
                padding-bottom: 10px;
                text-align: left;
            }
            
            .btn-home-contact-sales {
                padding:8px 70px;
                border-radius: 56px;
                background-color: #336DF4;
                color:#fff;
                font-weight:bolder;
                font-size: 18px;
                margin-top:50px;
                margin-bottom:8px
                border: none;
            }
            .btn-home-contact-sales:hover{
                color:white;
            }
   
   /* payment system home page end */

/* brand started */

.loop-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin: 20px 20px;
}

.loop-track {
  display: flex;
  gap: 20px;
  width: calc(200%); 
  animation: scrollLoop 20s linear infinite;
}

.loop-track img {
  width: 180px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* KEYFRAME: perfect non-stop loop */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@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;
}
.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 */