
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full height layout */
html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* makes footer push down when content is short */
}

.main-content {
  flex: 1; /* take up remaining space */
  padding: 40px 20px;
  background: white;
}

/* Footer styles */
.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-links {
  margin-top: 10px;
}

.site-footer .footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
}

.site-footer .footer-links a:hover {
  color: #fff;
}








/* Admin Category  styles */

        <style>
       body.randomBody_a1b2c3 {
            font-family: 'Segoe UI', sans-serif;
            background-color: white;
            padding: 30px;
            margin: 0;
            color: #333;
            min-height: 100vh;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: white;
            padding: 20px;
            border-radius: 8px;
        }

        h2.randomTitle_c9d8e7 {
            font-size: 1.8rem;
            color: #222;
            margin-bottom: 24px;
            text-align: center;
        }

        .table-container_g7h8i9 {
            width: 100%;
            overflow-x: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        table.randomTable_g7h8i9 {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            overflow: hidden;
            min-width: 600px;
        }

        table.randomTable_g7h8i9 th,
        table.randomTable_g7h8i9 td {
            padding: 14px 18px;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }

        table.randomTable_g7h8i9 th {
            background: #f4f6f8;
            font-weight: 600;
            color: #444;
        }

        .randomBtnMenu_b4c3d2 {
            position: relative;
            display: inline-block;
        }

        .randomActionBtn_t1y2z3 {
            background: white;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s;
        }

        .randomActionBtn_t1y2z3:hover {
            background: #0056b3;
        }

        .randomDropdown_d3e4f5 {
            display: none;
            position: absolute;
            right: 0;
            top: 40px;
            background: #fff;
            border: 1px solid #ddd;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.08);
            z-index: 100;
            border-radius: 8px;
            overflow: hidden;
        }

        .randomDropdown_d3e4f5 button {
            background: none;
            border: none;
            padding: 12px 18px;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-size: 0.95rem;
            color: #333;
        }

        .randomDropdown_d3e4f5 button:hover {
            background: #f5f5f5;
        }

        .randomForm_hiddenEdit_r4s5t6 {
            display: none;
            background: white;
            padding: 24px;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        }

        .randomForm_hiddenEdit_r4s5t6 input,
        .randomForm_hiddenEdit_r4s5t6 select {
            padding: 10px 12px;
            margin: 8px 0;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }

        .randomSubmitBtn_u7v8w9 {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 18px;
            cursor: pointer;
            border-radius: 6px;
            font-size: 1rem;
            margin-top: 10px;
            transition: background 0.3s;
        }

        .randomSubmitBtn_u7v8w9:hover {
            background: #218838;
        }

        .randomCancelBtn_y1z2x3 {
            background: #dc3545;
            color: white;
            border: none;
            padding: 10px 18px;
            margin-left: 12px;
            cursor: pointer;
            border-radius: 6px;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .randomCancelBtn_y1z2x3:hover {
            background: #c82333;
        }

        @media (max-width: 768px) {
            h2.randomTitle_c9d8e7 {
                font-size: 1.5rem;
            }

            table.randomTable_g7h8i9 {
                font-size: 0.9rem;
            }

            .randomForm_hiddenEdit_r4s5t6 {
                padding: 16px;
            }
        }
   

       </style>

















.game-container {
    text-align: center;
    margin-top: 50px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.slot {
    width: 100px;
    height: 100px;
    font-size: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #000;
    background: #fff;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.result-container {
    margin-top: 20px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    display: none;
}






body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #b1b504;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h2, h3 {
    text-align: center;
}

.result-box, .seed-box {
    padding: 10px;
    background: #f9f9f9;
    margin: 10px 0;
    border-left: 4px solid #007bff;
}

.history-list {
    list-style: none;
    padding: 0;
}

.history-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .result-box, .seed-box {
        font-size: 14px;
    }
}


















/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4f46e5;
  --secondary-color: #6366f1;
  --text-color: #1f2937;
  --light-color: #f9fafb;
  --dark-color: #111827;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar styles */
.navbar {
  background-color: #949b0e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
    
    
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: #eef2ff;
  transform: translateY(-2px);
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 100px 30px;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .navbar.scrolled .hamburger span {
    background-color: var(--text-color);
  }
}

/* Hero section */
.hero {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  
     margin-top: -90px;
    padding-top: 50px;

}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 130px;
  color: var(--dark-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 200px;
  }
}


/* Hero Slider Styles */
.hero-slider {
  width: 100%;
  height: 468px;
  position: relative;
  overflow: hidden;
  margin-top: -81px; /* To account for fixed navbar */
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  z-index: 3;
}




/* Services Section Styles */
.service-area {
  width: 100%;
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Standalone Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.section-header-title {
  margin-bottom: 30px;
}

.section-header-title h3 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header-title h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: white;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header-title p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Content Styles */
.service-content {
  margin-top: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-4 {
  width: 33.333%;
  padding: 0 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.single-service {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.single-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.service-img img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  padding: 15px;
  border: 5px solid #f1f1f1;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-title h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.service-description p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #4e54c8;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn a:hover {
  background: #333;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .col-lg-4 {
    width: 50%;
  }
  
  .section-header-title h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .col-lg-4 {
    width: 100%;
  }
  
  .section-header-title h3 {
    font-size: 28px;
  }
  
  .section-header-title p {
    font-size: 15px;
  }
  
  .single-service {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .section-header-title h3 {
    font-size: 26px;
  }
  
  .section-header-title p {
    font-size: 14px;
  }
  
  .single-service {
    padding: 20px;
  }
  
  .service-img img {
    width: 100px;
    height: 100px;
  }
  
  .service-title h4 {
    font-size: 20px;
  }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: white;
    padding: 50px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.common-title {
    text-align: center;
    margin-bottom: 50px;
}

.common-title h2 {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
}

.common-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #4e54c8;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-single {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 15px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.code_quality { background-color: #4e54c8; }
.customer_support { background-color: #ff6b6b; }
.customizability { background-color: #20c997; }

.testimonial-title h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.testimonial-info-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-cloent-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-cloent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h6 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #666;
    font-size: 14px;
}

.swiper-container {
    padding: 20px 0 40px;
}

.swiper-slide {
    height: auto;
}

.testimonial-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
}

.testimonial-shape img {
    max-width: 100px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .common-title h2 {
        font-size: 34px;
    }
    
    .testimonial-title h4 {
        font-size: 20px;
    }
    
    .testimonial-description p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 30px 0;
    }
    
    .common-title h2 {
        font-size: 28px;
    }
    
    .testimonial-single {
        padding: 25px;
    }
    
    .testimonial-info h6 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .common-title h2 {
        font-size: 24px;
    }
    
    .testimonial-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-cloent-image {
        width: 50px;
        height: 50px;
    }
}



/* Panel Tabs Section */
.pt-panel-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    width: 100%;
}

.pt-panel-container {
    background: #fff0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgb(255 251 251 / 0%);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 600px;
    display: flex;
}

.pt-panel-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.pt-panel-tabs {
    border: none;
    flex-direction: column;
    height: 100%;
    background: #120000f0;
    width: 250px;
    flex-shrink: 0;
}

.pt-tab-btn {
    border: none;
    padding: 88px 25px;
    color: #6c757d;
    font-weight: 600;
    text-align: left;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.pt-tab-btn i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.pt-tab-btn.active {
    color: #4e54c8;
    background-color: rgba(78, 84, 200, 0.08);
    border-right: 4px solid #23141e;
}

.pt-tab-btn:hover:not(.active) {
    color: #4e54c8;
    background-color: rgba(78, 84, 200, 0.05);
}

.pt-tab-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-panel-content {
    padding: 40px;
    background: linear-gradient(66deg, #ffffff4a 0%, #f8f9fa 100%);
    color: #6750e1;
    height: 200px;
    display: flex;
    align-items: center;
}

.pt-panel-content-inner {
    max-width: 800px;
}

.pt-panel-content h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.3;
}

.pt-content-description {
    opacity: 0.9;
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
}

.pt-single-item {
    padding: 30px;
    background: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-single-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: contain;
}

.pt-single-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .pt-panel-content h3 {
        font-size: 24px;
    }
    .pt-panel-content {
        padding: 30px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .pt-panel-section {
        padding: 60px 0;
    }
    
    .pt-panel-container {
        flex-direction: column;
        height: auto;
    }
    
    .pt-panel-tabs {
        flex-direction: row;
        border-bottom: 1px solid #dee2e6;
        width: 100%;
        height: auto;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .pt-tab-btn {
        padding: 15px 20px;
        font-size: 14px;
        border-bottom: 3px solid transparent;
        border-right: none;
        justify-content: center;
        white-space: nowrap;
    }
    
    .pt-tab-btn.active {
        border-bottom: 3px solid #4e54c8;
        border-right: none;
    }
    
    .pt-panel-content {
        padding: 25px;
        height: 160px;
    }
    
    .pt-single-item {
        padding: 25px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .pt-panel-section {
        padding: 40px 0;
    }
    
    .pt-panel-content h3 {
        font-size: 22px;
    }
    
    .pt-content-description {
        font-size: 15px;
    }
    
    .pt-panel-content {
        height: 140px;
        padding: 20px;
    }
    
    .pt-tab-btn {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .pt-panel-section {
        padding: 30px 0;
    }
    
    .pt-tab-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    .pt-tab-btn i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    .pt-panel-content {
        padding: 20px 15px;
        height: 120px;
    }
    
    .pt-panel-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .pt-single-item {
        padding: 20px;
        min-height: 250px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pt-panel-container {
    animation: fadeIn 0.6s ease-out forwards;
}

.pt-tab-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Resources Section */
.hs-resources-section {
    padding: 80px 0;
    position: relative;
}

.hs-section-header {
    margin-bottom: 60px;
    text-align: center;
}

.hs-subtitle {
    display: inline-block;
    font-size: 18px;
    color: #4e54c8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hs-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hs-title-accent {
    color: #4e54c8;
}

.hs-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* Resources Grid */
.hs-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hs-resource-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    height: 100%;
}

.hs-resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hs-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

.hs-card-icon {
    padding: 40px 0 25px;
    font-size: 60px;
    color: #4e54c8;
    transition: all 0.3s ease;
}

.hs-resource-card:hover .hs-card-icon {
    transform: scale(1.1);
    color: #8f94fb;
}

.hs-card-content {
    padding: 0 25px 35px;
}

.hs-card-content h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.hs-resource-card:hover .hs-card-content h4 {
    color: #4e54c8;
}

.hs-card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hs-resources-section {
        padding: 70px 0;
    }
    
    .hs-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .hs-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hs-section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hs-resources-section {
        padding: 60px 0;
    }
    
    .hs-title {
        font-size: 32px;
    }
    
    .hs-subtitle {
        font-size: 16px;
    }
    
    .hs-card-icon {
        padding: 30px 0 20px;
        font-size: 50px;
    }
    
    .hs-card-content {
        padding: 0 20px 30px;
    }
}

@media (max-width: 576px) {
    .hs-resources-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hs-resources-section {
        padding: 50px 0;
    }
    
    .hs-title {
        font-size: 28px;
    }
    
    .hs-card-icon {
        font-size: 45px;
    }
    
    .hs-card-content h4 {
        font-size: 20px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hs-resource-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hs-resource-card:nth-child(1) { animation-delay: 0.1s; }
.hs-resource-card:nth-child(2) { animation-delay: 0.2s; }
.hs-resource-card:nth-child(3) { animation-delay: 0.3s; }
.hs-resource-card:nth-child(4) { animation-delay: 0.4s; }

/* Affiliate Program Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Section Styles */
.affiliate-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
}

.affiliate-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.affiliate-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.affiliate-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.affiliate-content-col {
    width: 50%;
    padding: 0 15px;
}

.affiliate-image-col {
    width: 50%;
    padding: 0 15px;
}

/* Header Styles */
.affiliate-header {
    margin-bottom: 50px;
}

.affiliate-subtitle {
    display: block;
    font-size: 18px;
    color: #4e54c8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.affiliate-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.affiliate-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    margin-top: 20px;
    border-radius: 3px;
}

/* Feature Items */
.affiliate-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.affiliate-feature:hover {
    background-color: rgba(78, 84, 200, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
    transition: all 0.3s ease;
}

.affiliate-feature:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.affiliate-feature:hover .feature-title {
    color: #4e54c8;
}

.feature-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Image Styles */
.affiliate-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.affiliate-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 84, 200, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.affiliate-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.affiliate-image-wrapper:hover .affiliate-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    padding: 20px;
    color: white;
}

.overlay-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.affiliate-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #4e54c8;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.affiliate-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .affiliate-title {
        font-size: 36px;
    }
    
    .feature-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .affiliate-section {
        padding: 80px 0;
    }
    
    .affiliate-content-col,
    .affiliate-image-col {
        width: 100%;
    }
    
    .affiliate-image-col {
        margin-top: 50px;
    }
    
    .affiliate-title {
        font-size: 32px;
    }
    
    .affiliate-shape {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .affiliate-section {
        padding: 60px 0;
    }
    
    .affiliate-title {
        font-size: 28px;
    }
    
    .affiliate-subtitle {
        font-size: 16px;
    }
    
    .affiliate-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .affiliate-shape {
        width: 80%;
    }
}

@media (max-width: 575px) {
    .affiliate-title {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-desc {
        font-size: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animation Effects */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.affiliate-content-col {
    animation: fadeInLeft 0.6s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.affiliate-image-col {
    animation: fadeInRight 0.6s ease-out forwards;
    animation-delay: 0.2s;
}


/* Transactions Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.transactions-section {
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-size: 18px;
    color: #4e54c8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    margin: 0 auto;
    border-radius: 3px;
}

/* Table Container */
.table-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Transaction Table */
.transaction-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 16px;
}

.transaction-table thead {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
}

.transaction-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    position: relative;
}

.transaction-table th i {
    margin-right: 10px;
    font-size: 16px;
}

.transaction-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.transaction-table tbody tr:last-child td {
    border-bottom: none;
}

.transaction-table tbody tr:hover {
    background-color: rgba(78, 84, 200, 0.05);
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Amount Styles */
.amount-positive {
    color: #28a745;
    font-weight: 600;
}

.amount-negative {
    color: #dc3545;
    font-weight: 600;
}

/* Action Button */
.action-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #4e54c8;
    color: white;
    border-color: #4e54c8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #f1f1f1;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    border-color: #4e54c8;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .section-title {
        font-size: 36px;
    }
    
    .transaction-table {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .transactions-section {
        padding: 80px 0;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .transaction-table {
        min-width: 800px;
    }
}

@media (max-width: 767px) {
    .transactions-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .transaction-table td[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        color: #4e54c8;
        display: block;
        margin-bottom: 5px;
    }
    
    .transaction-table {
        display: block;
        min-width: 100%;
    }
    
    .transaction-table thead {
        display: none;
    }
    
    .transaction-table tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: 2px solid #eee;
    }
    
    .transaction-table td {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px dotted #ddd;
    }
    
    .transaction-table td:last-child {
        border-bottom: none;
    }
    
    .user-info {
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .transactions-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pagination-btn {
        width: 35px;
        height: 35px;
        margin: 0 3px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transaction-table tbody tr {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.transaction-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.transaction-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.transaction-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.transaction-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.transaction-table tbody tr:nth-child(5) { animation-delay: 0.5s; }



/* Newsletter Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-section {
    padding: 120px 0;
    position: relative;
}

.newsletter-card {
    position: relative;
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    opacity: 0.05;
    z-index: -1;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    min-width: 300px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 84, 200, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 36px;
    color: #4e54c8;
}

.newsletter-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.form-group {
    position: relative;
    display: flex;
    width: 100%;
}

.newsletter-form input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 25px;
    font-size: 16px;
    color: #111827;
    background: white;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #8f94fb;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.1);
}

.submit-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn i {
    font-size: 16px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4348b8 0%, #7a80e8 100%);
    transform: translateY(-50%) scale(1.02);
}

.newsletter-decoration {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: -1;
}

.decoration-element {
    width: 100px;
    height: 100px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 30px;
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .newsletter-text h3 {
        font-size: 28px;
    }
    
    .newsletter-icon {
        width: 70px;
        height: 70px;
    }
    
    .newsletter-icon i {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .newsletter-card {
        padding: 50px;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .newsletter-decoration {
        display: none;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 80px 0;
    }
    
    .newsletter-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    .newsletter-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
    
    .submit-btn span {
        display: none;
    }
    
    .submit-btn {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon i {
        font-size: 28px;
    }
    
    .newsletter-form input {
        padding: 15px 20px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-card {
    animation: fadeInUp 0.6s ease-out forwards;
}










/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* ===== Container Styles ===== */
.container {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}






/* ===== Footer Section ===== */
.footer-section {
    position: relative;
    background-color: white;
    color: white;
    padding-top: 80px;
    overflow: hidden;
    z-index: 2;
    
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Center the full-width element */
    left: -1%;
    right: 50%;

    
}

.footer-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 9.1;
}

/* ===== Footer Top Area ===== */
.footer-top-area {
    padding: 40px 0;
}

.footer-top-wrapper {
    width: 100%;
}

.footer-top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Footer Intro */
.footer-intro {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 39px;
    width: auto;
}

.footer-description {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer Social */
.footer-social-wrapper {
    margin-top: 25px;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.footer-social-list img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social-list img:hover {
    transform: translateY(-5px);
}

/* Footer Action */
.footer-action-wrapper {
    margin-top: 30px;
}

.footer-action-wrapper img {
    height: 46px;
    width: auto;
}

/* Footer Widgets */
.footer-top-inner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-widget {
    min-width: 200px;
}

.widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #8f94fb;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list li {
    color: #9ca3af;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-list li:hover {
    color: white;
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-list i {
    color: #8f94fb;
    font-size: 18px;
}

.product-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.product-icon img {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom-area {
    border-top: 1px solid #374151;
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #9ca3af;
    font-size: 15px;
}

.copyright a {
    color: #8f94fb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.footer-bottom-list li {
    color: #9ca3af;
    font-size: 15px;
    padding-left: 20px;
    border-left: 1px solid #4b5563;
}

.footer-bottom-list li:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-bottom-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-list a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .footer-top-inner {
        gap: 30px;
    }
    
    .footer-top-inner-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
    }
    
    .footer-top-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-widget {
        min-width: 100%;
    }
    
    .widget-title {
        font-size: 20px;
    }
    
    .footer-list {
        gap: 12px;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social-list {
        gap: 10px;
    }
    
    .footer-social-list img {
        width: 35px;
        height: 35px;
    }
    
    .footer-list a {
        font-size: 15px;
    }
    
    .copyright, .footer-bottom-list li {
        font-size: 14px;
    }
}



/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    
    overflow-x: hidden; /* Prevent horizontal scroll */


}

/* ===== Counter Section ===== */
.counter-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    

 
   
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Center the full-width element */
    left: -1%;
    right: 50%;


}



.counter-area {
    background-image: url('https://monkey.amcoders.com/uploads/2020-06-02-5ed617087bb25.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.counter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.counter-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(78, 84, 200, 0.7);
}

.counter-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.counter-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.counter-content {
    color: white;
}

.counter-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-item {
        padding: 25px 20px;
    }
    
    .counter-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
    }
    
    .counter-area {
        padding: 80px 0;
    }
    
    .counter-item {
        flex-direction: column;
        text-align: center;
    }
    
    .counter-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .counter-number {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-item {
        padding: 20px 15px;
    }
    
    .counter-number {
        font-size: 28px;
    }
    
    .counter-title {
        font-size: 16px;
    }
}




/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Brands Section ===== */
.brands-section {
    padding: 80px 0;

    position: relative;
    
    background-color: #f8f9fa00;

    margin-top: -90px;
    padding-top: 50px;

}

.brands-area {
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
}

/* Owl Carousel Custom Styles */
.brands-carousel {
    position: relative;
}

.brand-item {
   
 
    
    
    background: #ffffff00;
    padding: 44px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 74%);
    margin: 0 -36px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 113px;
    
    
    
    
    transition: all 0.3s ease;
    
    
    
}





.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prev, .owl-next {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #4e54c8 !important;
    pointer-events: all;
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background: #4e54c8 !important;
    color: white !important;
}

.owl-prev {
    margin-left: -25px;
}

.owl-next {
    margin-right: -25px;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #4e54c8 !important;
    transform: scale(1.2);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    
    .brand-item {
        height: 130px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .brand-item {
        height: 110px;
        padding: 20px;
    }
    
    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .brand-item {
        height: 90px;
        padding: 15px;
    }
    
    .owl-dots {
        margin-top: 20px;
    }
}

:root {
    --primary-color: #6c63ff;
    --secondary-color: #4d44db;
    --silver-color: #95a5a6;
    --gold-color: #f1c40f;
    --platinum-color: #3498db;
    --success-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.plan-section {
    padding: 5rem 0;
    background-color: #fff;
}

.section-heading {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.heading-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.plan-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-item__header {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
}

.return-title {
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-item__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.plan-item__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

.plan-item__body {
    padding: 1.5rem;
}

.plan-item__info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

.plan-item__time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plan-item__amount {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-item__list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-item__list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.plan-item__list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.invest-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.invest-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Plan Specific Styles */
.silver-plan {
    border-top-color: var(--silver-color);
}

.silver-plan .plan-icon {
    color: var(--silver-color);
    background: rgba(149, 165, 166, 0.1);
}

.silver-plan .plan-item__title {
    color: var(--silver-color);
}

.silver-plan .invest-btn {
    background: var(--silver-color);
}

.silver-plan .invest-btn:hover {
    background: #7f8c8d;
}

.gold-plan {
    border-top-color: var(--gold-color);
}

.gold-plan .plan-icon {
    color: var(--gold-color);
    background: rgba(241, 196, 15, 0.1);
}

.gold-plan .plan-item__title {
    color: var(--gold-color);
}

.gold-plan .invest-btn {
    background: var(--gold-color);
    color: #333;
}

.gold-plan .invest-btn:hover {
    background: #f39c12;
    color: #333;
}

.platinum-plan {
    border-top-color: var(--platinum-color);
}

.platinum-plan .plan-icon {
    color: var(--platinum-color);
    background: rgba(52, 152, 219, 0.1);
}

.platinum-plan .plan-item__title {
    color: var(--platinum-color);
}

.platinum-plan .invest-btn {
    background: var(--platinum-color);
}

.platinum-plan .invest-btn:hover {
    background: #2980b9;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .plan-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .plan-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .plan-item__title {
        font-size: 1.8rem;
    }
    
    .plan-item__name {
        font-size: 1.3rem;
    }
}


