/* ===================================
   GLOBAL STYLES & CSS VARIABLES
   =================================== */
:root {
  
  --primary-color: #F82430;       
  --primary-dark: #A843C4;       
  --primary-light: #FFFFFF;       
  --secondary-color: #FF7339;     
  --secondary-dark: #3730a3;     
  --accent-color: #FE4F22;  

  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f3ff;       
  --bg-dark: #1e1b4b;           
  --border-color: #e5e7eb;
  --success: #22c55e;
   --orange: #ff8c42;
  --error: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

            --train-color: #F82430;
            --flight-color: #A843C4; 
            --bus-color: #FF7339; 
            --hotel-color: #FE4F22;
            
            --white: #FFFFFF;
            --off-white: #F8F9FA;
            --light-gray: #E9ECEF;
            --gray: #6C757D;
            --dark-gray: #343A40;
            --black: #1A1A2E;
            
            --font-display: 'Sora', sans-serif;
            --font-body: 'DM Sans', sans-serif;
}


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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

body.menu-open {
  overflow: hidden;
}
/* App Download Popup Styles */

/* Overlay Background */
.app-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.app-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.app-popup {
    background: #ffffff;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.app-popup-overlay.active .app-popup {
    transform: scale(1) translateY(0);
}

/* Close Button */
.app-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f3ff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #6b7280;
    font-size: 20px;
    font-weight: 600;
}

.app-popup-close:hover {
    background: #7c3aed;
    color: white;
    transform: rotate(90deg);
}

/* Header Section */
.app-popup-header {
    background:#F82430;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.app-popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.app-popup-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.app-popup-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Content Section */
.app-popup-content {
    padding: 30px;
}

.app-popup-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

/* Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.app-download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #1f2937;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.app-download-btn.app-download-primary {
    background: #FF7339;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 99, 21, 0.4);
}

.app-download-btn .icon {
    font-size: 24px;
}

.app-download-btn .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-download-btn .small-text {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
}

.app-download-btn .large-text {
    font-size: 16px;
    font-weight: 700;
}

/* Continue Button */
.app-continue-btn {
    width: 100%;
    padding: 14px 24px;
    background: #FE4F22;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.app-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Responsive Design */
@media (max-width: 600px) {
    .app-popup {
      height:90%;
        margin: 20px;
        max-width: 100%;
    }
    
    .app-popup-header {
        padding: 30px 20px 24px;
    }
    
    .app-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .app-popup-title {
        font-size: 20px;
    }
    
    .app-popup-subtitle {
        font-size: 13px;
    }
    
    .app-popup-content {
        padding: 24px 20px;
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Sticky Message Button & Form */

/* Floating Message Button */
.message-btn-sticky {
    position: fixed;
    top: 80px; /* Above go-to-top button */
    right: 10px;
    width: 60px;
    height: 60px;
    background: #FF7339;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    border: none;
}

.message-btn-sticky:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.message-btn-sticky:active {
    transform: translateY(-1px) scale(0.98);
}

.message-btn-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.message-btn-sticky.active .message-btn-icon {
    transform: rotate(180deg);
}

/* Badge/Notification Dot (Optional) */
.message-btn-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #ff8c42;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Message Form Container */
.message-form-container {
    position: fixed;
    top: 150px; /* Above the button */
    right: 30px;
    width: 360px;
    max-width: calc(100vw - 60px);
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.message-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Form Header */
.message-form-header {
    background: rgb(255, 115, 57);
    padding: 24px;
    text-align: center;
    position: relative;
}

.message-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.message-form-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.message-form-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.message-form-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.message-form-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Form Body */
.message-form-body {
    padding: 24px;
}

.message-form-group {
    margin-bottom: 16px;
}

.message-form-group label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.message-form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.message-form-input,
.message-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.message-form-input:focus,
.message-form-textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.message-form-input::placeholder,
.message-form-textarea::placeholder {
    color: #9ca3af;
}

.message-form-textarea {
    min-height: 10px;
    resize: vertical;
}

/* Submit Button */
.message-form-submit {
    width: 100%;
    padding: 14px 24px;
    background: #FF7B45;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.message-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.message-form-submit:active {
    transform: translateY(0);
}

.message-form-submit .submit-icon {
    font-size: 18px;
}

/* Success Alert Overlay */
.message-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 27, 75, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.message-alert-box {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: calc(100vw - 60px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.message-alert-overlay.active .message-alert-box {
    transform: scale(1);
}

.message-alert-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7c3aed, #c084fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.message-alert-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.message-alert-text {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.message-alert-btn {
    padding: 12px 32px;
    background: linear-gradient(135deg, #7c3aed, #c084fc);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .message-btn-sticky {
        bottom: 70px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .message-btn-icon {
        width: 24px;
        height: 24px;
    }
    
    .message-form-container {
        bottom: 135px;
        right: 20px;
        width: calc(100vw - 40px);
    }
    
    .message-form-header {
        padding: 20px;
    }
    
    .message-form-title {
        font-size: 16px;
    }
    
    .message-form-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .message-btn-sticky {
        width: 52px;
        height: 52px;
        bottom: 65px;
    }
    
    .message-form-container {
        bottom: 125px;
    }
    
    .message-alert-box {
        padding: 24px;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Go to Top button adjustment (if you have one) */
.go-to-top {
    bottom: 30px !important; /* Adjust your existing go-to-top button */
}











/* ===================================
   NAVBAR STYLES
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-brand {
    margin-left: 80px;
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
         width: 189px;
    height: 65px;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 2px solid var(--primary-color); */
    cursor: pointer;
    margin-bottom: -8px;
}

/* .brand-logo:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
} */


.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}
    .navbar-menu.active{
       padding:20px 40px 220px 20px;
    }
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 16px;
  border: 1px solid var(--border-color);
  z-index: 1000;
}

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

.services-dropdown {
  width: 800px;
  padding: 0;
}

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
}
.dropdown-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header icon image */
.dropdown-section h4 img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Links */
.dropdown-section a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.dropdown-section a:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Link icon image */
.dropdown-section a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}


.navbar-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
}

.btn-download:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-download span {
  display: none;
}

.btn-partner {
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-partner:hover {
  background: #FF7339;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   HERO SLIDER STYLES
   =================================== */
.hero-slider {
  position: relative;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-content {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
  position: relative;
}

.slide-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  font-weight: 600;
}

.slide-badge i {
  color: var(--primary-color);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 800;
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-title .hindi {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 700;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 420px;      
  height: auto;
  object-fit: contain;
  border-radius: 16px; 
  box-shadow: var(--shadow-lg);
}




/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}


/* ===================================
   RESPONSIVE - TABLET (1024px)
   =================================== */
@media (max-width: 1024px) {
     .hero-img {
    max-width: 360px;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-grid {
    gap: 40px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }
}

/* ===================================
   RESPONSIVE - TABLET (768px)
   =================================== */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 16px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    gap: 0;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 16px 0;
    width: 100%;
  }

  .nav-link.active::after {
    bottom: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 12px;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--bg-secondary);
  }

  .dropdown-content {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 20px;
  }

  .navbar-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
    gap: 12px;
  }

  .btn-download span {
    display: inline;
  }

  .btn-download,
  .btn-partner {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    height: 400px;
    order: -1;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .slider-btn {
    display: none;
  }

  .slide-content {
    padding: 60px 0;
  }
}

/* ===================================
   RESPONSIVE - MOBILE (480px)
   =================================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-item {
    flex: 1 1 45%;
  }

  .hero-img {
    height: 100%;
    max-width: 280px;
  }

  .slider-indicators {
    bottom: 20px;
  }

  .chat-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .chat-button i {
    font-size: 1.2rem;
  }
}


/* ===================================
   SERVICES SECTION STYLES
   =================================== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge i {
  color: var(--bg-primary);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 800;
}

.section-title .highlight {
  color: var(--primary-color);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Overview */
.services-overview {
  margin-bottom: 60px;
}

.overview-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.overview-image {
  position: relative;
}

.person-img {
  width: 100%;
  height: auto;
  /* border-radius: 50%; */
  border: 3px solid var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.overview-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Service Icons Grid */
.service-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.service-icons-grid a{
  text-decoration: none;
}
.service-icon-item {
  text-align: center;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
  overflow: hidden; /* keeps image inside the circle */
}

/* Image inside the circle */
.icon-circle img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}


.service-icon-item:hover .icon-circle {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.service-icon-item p {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.service-tab i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.service-tab:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.service-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.service-tab.active i {
  color: white;
}

/* Service Content */
.service-content-wrapper {
  position: relative;
  min-height: 500px;
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.service-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.content-text h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
}

.content-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.service-features li i {
  color: var(--success);
  font-size: 1.1rem;
}

.content-buttons {
  display: flex;
  gap: 16px;
}


/* ===================================
   SCROLL ANIMATIONS - SIMPLE & CLEAN
   =================================== */

/* Base state - hidden before scroll */
.fade-in,
.slide-left,
.slide-right,
.slide-up,
.zoom-in {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Fade In Animation */
.fade-in {
  transform: translateY(30px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from Left */
.slide-left {
  transform: translateX(50px);
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from Right */
.slide-right {
  transform: translateX(-50px);
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide Up */
.slide-up {
  transform: translateY(50px);
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom In */
.zoom-in {
  transform: scale(0.8);
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

/* Stagger effect for multiple items */
.zoom-in:nth-child(1) { transition-delay: 0.1s; }
.zoom-in:nth-child(2) { transition-delay: 0.2s; }
.zoom-in:nth-child(3) { transition-delay: 0.3s; }
.zoom-in:nth-child(4) { transition-delay: 0.4s; }
.zoom-in:nth-child(5) { transition-delay: 0.5s; }
.zoom-in:nth-child(6) { transition-delay: 0.6s; }


/* Responsive */
@media (max-width: 768px) {
  .service-tabs {
    gap: 12px;
  }

  .service-tab {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .content-text h3 {
    font-size: 1.5rem;
  }

  .content-buttons {
    flex-direction: column;
  }

  .content-buttons .btn-primary,
  .content-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .overview-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-tab span {
    font-size: 0.8rem;
  }

  .content-grid {
    padding: 20px;
  }

  .service-icons-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   OUR SERVICES SECTION - CAROUSEL
   =================================== */
.our-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.our-services-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.section-badge i {
  font-size: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel Wrapper */
.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Carousel Container */
.services-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Carousel Track */
.services-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Service Card */
.service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
/* Service Icon */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Image inside icon */
.service-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}


/* Service Card Text */
.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Carousel Navigation Buttons */
.carousel-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-nav:active {
  transform: scale(0.95);
}

.carousel-nav i {
  font-size: 20px;
}

.carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--border-color);
  color: var(--text-light);
}

.carousel-nav:disabled:hover {
  background: white;
  color: var(--text-light);
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .services-carousel-wrapper {
    gap: 12px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav i {
    font-size: 16px;
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 24px 20px;
  }

  .services-carousel-track {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-light);
}

.feature-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  filter: blur(15px);
  transform: scale(1.1);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
}

.feature-card:hover .feature-icon::after {
  transform: scale(1.3);
  opacity: 0.5;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--primary-color);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   STATISTICS COUNTER SECTION
   =================================== */
.stats-counter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.stats-counter-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-counter {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
}

.stat-counter.visible {
  animation: scaleIn 0.6s ease forwards;
}

/* Staggered animation */
.stat-counter:nth-child(1) { animation-delay: 0.1s; }
.stat-counter:nth-child(2) { animation-delay: 0.2s; }
.stat-counter:nth-child(3) { animation-delay: 0.3s; }
.stat-counter:nth-child(4) { animation-delay: 0.4s; }

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-counter:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.stat-counter:hover .stat-icon {
  background: white;
  transform: rotate(360deg);
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
  transition: color 0.4s ease;
}

.stat-counter:hover .stat-icon i {
  color: var(--primary-color);
}

.stat-content {
  position: relative;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-plus,
.counter-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-left: 4px;
  display: inline-block;
}

.stat-counter p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 8px;
}

/* Number counting animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-number.counting {
  animation: countUp 0.5s ease;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .counter-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0 50px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 24px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 1.7rem;
  }

  .stats-counter-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .counter-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .stat-counter {
    padding: 24px 16px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-plus,
  .counter-suffix {
    font-size: 1.5rem;
  }
}


/* ===================================
   PARTNERSHIP SECTION STYLES
   =================================== */
.partnership-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary);
}

.section-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.partnership-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 20px;
}

.partnership-image {
    flex: 0 0 400px;
    position: sticky;
    top: 100px;
}

.partnership-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: opacity 0.5s ease-in-out;
}

.partnership-content-wrapper {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.partnership-track {
    position: relative;
}

.partnership-card {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.partnership-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.partnership-card h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.partnership-card .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.earning-highlight {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.earning-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.earning-amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.earning-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.partner-description {
    margin-bottom: 32px;
}

.partner-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.partner-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.categories-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 32px;
}

.categories-list {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.categories-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.categories-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--bg-secondary);
}

.partnership-carousel-controls {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 0 20px;
}

.partnership-carousel-nav {
    display: flex;
    gap: 12px;
}

.partnership-nav-btn {
    width: 48px;
    border:2px solid var(--primary-dark);
    height: 48px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partnership-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.partnership-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--border-color);
    color: var(--text-light);
}

.partnership-nav-btn:disabled:hover {
    background: white;
    color: var(--text-light);
    transform: none;
}

.partnership-nav-btn i {
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: var(--primary-light);
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   RESPONSIVE - TABLET (1024px)
   =================================== */
@media (max-width: 1024px) {
    .partnership-container {
        flex-direction: column;
        gap: 40px;
    }

    .partnership-image {
        flex: 0 0 auto;
        width: 100%;
        position: relative;
        top: 0;
    }

    .partnership-image img {
        height: 400px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partnership-card h3 {
        font-size: 2rem;
    }

    .earning-amount {
        font-size: 2.5rem;
    }
}

/* ===================================
   RESPONSIVE - TABLET (768px)
   =================================== */
@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .partnership-container {
        padding: 0;
    }

    .partnership-image img {
        height: 350px;
    }

    .partnership-card h3 {
        font-size: 1.75rem;
    }

    .earning-highlight {
        padding: 20px;
    }

    .earning-amount {
        font-size: 2.2rem;
    }

    .categories-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .carousel-controls {
        margin-top: 40px;
        flex-direction: column;
        gap: 24px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (480px)
   =================================== */
@media (max-width: 480px) {
    .partnership-section {
        padding: 40px 12px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .partnership-image img {
        height: 280px;
        border-radius: 12px;
    }

    .partnership-card h3 {
        font-size: 1.5rem;
    }

    .partnership-card .subtitle {
        font-size: 0.95rem;
    }

    .earning-highlight {
        padding: 16px;
    }

    .earning-amount {
        font-size: 1.8rem;
    }

    .partner-description p {
        font-size: 0.95rem;
    }

    .categories-title {
        font-size: 1.1rem;
    }

    .categories-list li {
        font-size: 0.9rem;
    }

    .categories-list i {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn i {
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }
}



/* ===================================
   OUR PARTNERS SECTION
   =================================== */
.partners-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 800;
}

.partners-header .section-title .highlight {
  color: var(--primary-color);
}

.partners-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

.partners-subtitle strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Partners Slider Wrapper */
.partners-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

/* Gradient fade edges */
.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.partners-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* Partners Slider */
.partners-slider {
  display: flex;
  gap: 60px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

/* Pause animation on hover */
.partners-slider:hover {
  animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partner Logo Container */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 120px;
  padding: 20px 30px;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  opacity: 1;
  transform: scale(1.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .partners-slider {
    gap: 50px;
  }

  .partner-logo {
    min-width: 160px;
    height: 70px;
    padding: 15px 25px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-header .section-title {
    font-size: 2rem;
  }

  .partners-subtitle {
    font-size: 1rem;
  }

  .partners-slider {
    gap: 40px;
    animation-duration: 25s;
  }

  .partner-logo {
    min-width: 140px;
    height: 60px;
    padding: 12px 20px;
  }

  .partners-slider-wrapper::before,
  .partners-slider-wrapper::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
    footer {
    padding-bottom: 200px;
  }
  .partners-header .section-title {
    font-size: 1.75rem;
  }

  .partners-subtitle {
    font-size: 0.9rem;
  }

  .partners-slider {
    gap: 30px;
    animation-duration: 20s;
  }

  .partner-logo {
    min-width: 90px;
    height: 90px;
    padding: 10px 15px;
  }

  .partners-slider-wrapper::before,
  .partners-slider-wrapper::after {
    width: 30px;
  }
}

/* Optional: Add alternative scrolling direction */
.partners-slider.reverse {
  animation-name: scroll-right;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Optional: Fade-in animation when section comes into view */
.partners-slider-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlider 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInSlider {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===================================
   NEWSLETTER SECTION STYLES
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
    background: #f8f9fa;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    padding: 60px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;  background: var(--primary-color); color: white;
}

.social-links a:hover {
    transform: translateY(-10px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.partner-login-btn {
    margin-top: 24px;
    padding: 12px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.partner-login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Contact Column */
.contact-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.office-info h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.office-name {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.office-address {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 40px;
    background: white;
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.brand-logo-footer img {
    width: 137px;
    height: 67px;
    margin-left: 78px;
}

/* ===================================
   RESPONSIVE - TABLET (1024px)
   =================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-column {
        grid-column: 1 / -1;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-text {
        text-align: center;
    }
    .brand-logo-footer img {
    width: 137px;
    height: 67px;
    margin-left: 19px;
}
}

/* ===================================
   RESPONSIVE - TABLET (768px)
   =================================== */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .newsletter-form {
        padding: 32px 24px;
    }

    .input-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-column {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (480px)
   =================================== */

@media (max-width: 480px) {
  .navbar-brand{
    margin-left: 2px;
  }
  .service-icons-grid{
    grid-template-columns: repeat(3, 1fr);
  }
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-text h2 {
        font-size: 1.75rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .newsletter-form {
        padding: 24px 20px;
    }

    .input-group input {
        padding: 14px 16px;
    }

    .subscribe-btn {
        padding: 14px 24px;
    }

    .footer-main {
        padding: 32px 16px;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .office-info h4 {
        font-size: 0.85rem;
    }

    .office-address {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom-content {
        text-align: center;
        align-items: center;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }

    .brand-logo-footer img {
        height: 60px;
    }
}