
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styles */
.home-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    padding: 0;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.home-navbar.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.home-navbar.scrolled .home-nav-link {
    color: black; /* change link color when scrolled */
}

.home-navbar.scrolled .home-logo {
    filter: brightness(120%) saturate(120%) sepia(0%) invert(0);
/* optional: make logo dark if needed */
}
.home-navbar.scrolled .home-mobile-menu-toggle span {
    background: black;
}

.home-nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.home-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.home-logo {
    filter: brightness(0) invert(1);
}

.home-anniversary-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.home-logo:hover,
.home-anniversary-logo:hover {
    transform: scale(1.05);
}

.home-nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.home-nav-item {
    position: relative;
}

.home-nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 17px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}
@media (max-width:768px) {
    .home-nav-link{
        color: black!important;
    }
    
}

.home-nav-link:hover {
    color: #3498db;
}

.home-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.home-nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles - FIXED POSITIONING */
.home-dropdown {
    position: relative;
}

.home-dropdown-content {
    position: fixed;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 800px;
    max-width: 90vw;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease;
}

.home-dropdown:hover .home-dropdown-content {
    display: grid;
    opacity: 1;
}

.home-dropdown-section h3 {
    color: #3498db;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.home-dropdown-section ul {
    list-style: none;
}

.home-dropdown-section li {
    margin-bottom: 8px;
}

.home-dropdown-section a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
}

.home-dropdown-section a:hover {
    color: #3498db;
    padding-left: 10px;
}

.home-dropdown-feature {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.home-dropdown-feature:hover {
    transform: translateY(-5px);
}

.home-dropdown-feature img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.home-dropdown-feature h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.home-dropdown-feature p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.home-discover-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-discover-btn:hover {
    background: #3498db;
    transform: scale(1.05);
}

/* Nav Actions */
.home-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-search-btn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-search-btn:hover {
    background: #f0f0f0;
    color: #3498db;
    transform: scale(1.1);
}

.home-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.home-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-left: 200px;
}

/* Search Modal */
.home-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
}

.home-search-modal.active {
    display: flex;
    opacity: 1;
}

.home-search-container {
    position: relative;
    max-width: 600px;
    width: 90%;
}

.home-search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 24px;
    border: none;
    border-radius: 50px;
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.home-search-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Hero Section */
.home-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.home-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) !important;

    z-index: 1;
}

.home-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Floating Icons */
.home-floating-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    animation: slideInRight 1s ease 1s both;
}

.home-floating-icon svg {
    width: 30px;
    height: 30px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.home-floating-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.home-floating-icon:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.home-floating-icon svg {
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    /* Navbar container fix */
    .home-nav-container {
        padding: 10px; /* Reduce padding to avoid overflow */
        gap: 10px; /* Prevent large gaps that push elements */
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    }

    /* Adjust dropdown sizing for smaller screens */
    .home-dropdown-content {
        min-width: auto; /* Prevent fixed wide dropdowns */
        max-width: 95vw;
    }

    /* Ensure hero section scales */
    .home-hero-content {
        padding: 0 15px;
    }

    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .home-nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .home-nav-menu.active {
        transform: translateX(0);
    }
    
    .home-nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }
    
    .home-nav-link {
        font-size: 18px;
        font-weight: 600;
        display: block;
        width: 100%;
    }
    
    .home-dropdown-content {
        position: static;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
        background: #f8f9fa;
        margin-top: 15px;
        display: none;
        grid-template-columns: 1fr;
        gap: 20px;
        max-height: 300px;
        overflow-y: auto;
        opacity: 1;
        transform: none;
    }
    
    .home-dropdown.active .home-dropdown-content {
        display: grid;
    }
    
    .home-dropdown-section {
        margin-bottom: 20px;
    }
    
    .home-dropdown-feature {
        margin-bottom: 20px;
    }
    
    .home-mobile-menu-toggle {
        display: flex;
    }
    
    .home-mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .home-mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .home-mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .home-floating-icons {
        right: 20px;
        gap: 10px;
    }
    
    .home-floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .home-hero-content {
        padding: 0 30px;
        margin-top: -50px;
    }
    
    .home-search-input {
        font-size: 20px;
        padding: 15px 50px 15px 15px;
    }
}

@media (max-width: 480px) {
    .home-nav-container {
        padding: 12px 15px;
    }
    
    .home-logo {
        height: 80px;
    }
    
    .home-anniversary-logo {
        height: 40px;
        width: 40px;
    }
    
    .home-logo-section {
        gap: 10px;
    }
    
    .home-floating-icons {
        right: 15px;
        gap: 8px;
    }
    
    .home-floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .home-floating-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .home-hero-content {
        padding: 0 20px;
    }
    
    .home-nav-menu {
        padding: 20px;
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .home-dropdown-content {
        padding: 15px;
        max-height: 250px;
    }
    
    .home-dropdown-section h3 {
        font-size: 16px;
    }
    
    .home-dropdown-section a {
        font-size: 13px;
    }
}
@media (max-width: 322px) {
    /* Navbar adjustments */
    .home-nav-container {
        padding: 8px 10px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .home-logo {
        height: 60px;
        max-width: 120px;
    }

    .home-mobile-menu-toggle span {
        margin-left: 0; /* Prevents overflow */
    }

    .home-nav-menu {
        padding: 15px;
        top: 65px;
        height: calc(100vh - 65px);
    }

    /* Hero section adjustments */
    .home-hero-content {
        padding: 0 10px;
        margin-top: -30px;
    }

    .home-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .home-hero-subtitle {
        font-size: 1rem;
    }

   
}


/* Loading Animation */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #58b4f1);
    z-index: 10000;
    animation: fadeOut 1.5s ease 0.5s both;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3498db}

/* Focus States for Accessibility */
.home-nav-link:focus,
.home-search-btn:focus,
.home-discover-btn:focus,
.home-floating-icon:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .home-navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .home-nav-link {
        color: #000;
    }
    
    .home-hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

.home-floating-icon.bounce {
    animation: bounce 0.8s ease;
}

#app {
  width: 100%;
  min-height: 100vh;
}

.home-who-we-are {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.home-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 500px;
}

/* Left Side - Image Section */
.home-image-section {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.home-image-section.home-animate {
  opacity: 1;
  transform: translateX(0);
}

.home-main-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.home-main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.home-team-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Right Side - Content Section */
.home-text-section {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.2s;
}

.home-text-section.home-animate {
  opacity: 1;
  transform: translateX(0);
}

.home-section-header {
  margin-bottom: 40px;
}

.home-section-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2196F3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.home-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
}


.home-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.5;
}

.home-about-text {
  margin-bottom: 50px;
}

.home-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 25px;
  font-weight: 400;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.home-stat-item {
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px 20px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.home-stat-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #2196F3;
}

.home-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2196F3;
  margin-bottom: 10px;
  line-height: 1;
}

.home-stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-cta-button {
  text-align: left;
}

.home-learn-more-btn {
  background: #2196F3;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-learn-more-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.home-learn-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
  .home-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .home-image-section {
    order: 2;
  }
  
  .home-text-section {
    order: 1;
    text-align: center;
  }
  
  .home-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .home-cta-button {
    text-align: center;
  }
  
  .home-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .home-who-we-are {
    padding: 80px 0;
  }
  
  .home-title {
    font-size: 2.2rem;
  }
  
  .home-subtitle {
    font-size: 1rem;
  }
  
  .home-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .home-container {
    padding: 0 15px;
  }
  
  .home-team-image {
    height: 400px;
  }
  
  .home-content-wrapper {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .home-title {
    font-size: 1.8rem;
  }
  
  .home-stat-number {
    font-size: 2rem;
  }
  
  .home-stat-item {
    padding: 25px 15px;
  }
  
  .home-learn-more-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .home-team-image {
    height: 350px;
  }
  
  .home-section-header {
    margin-bottom: 30px;
  }
  
  .home-about-text {
    margin-bottom: 40px;
  }
  
  .home-stats {
    margin-bottom: 40px;
  }
}

/* Our Solutions Section */
  .home-solutions-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out 0.3s forwards;
      }

      .home-section-title {
        text-align: center;
        margin-bottom: 3rem;
      }

      .home-section-title h2 {
        font-size: 3rem;
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
      }

      .home-section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
        border-radius: 2px;
        animation: expandLine 1s ease-out 1s forwards;
        transform-origin: center;
        scale: 0;
      }

      .home-solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .home-solution-card {
        position: relative;
        height: 280px;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        transform: translateY(30px);
        opacity: 0;
        animation: cardSlideUp 0.8s ease-out forwards;
      }

      .home-solution-card:nth-child(1) { animation-delay: 0.1s; }
      .home-solution-card:nth-child(2) { animation-delay: 0.2s; }
      .home-solution-card:nth-child(3) { animation-delay: 0.3s; }
      .home-solution-card:nth-child(4) { animation-delay: 0.4s; }
      .home-solution-card:nth-child(5) { animation-delay: 0.5s; }

      .home-solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
        transition: all 0.4s ease;
        z-index: 1;
      }

      .home-solution-card:hover::before {
        background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
      }

      .home-solution-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      }

      .home-solution-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
        z-index: 2;
      }

      .home-solution-text-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        z-index: 3;
        color: white;
        transform: translateY(20px);
        transition: transform 0.4s ease;
      }

      .home-solution-card:hover .home-solution-text-wrapper {
        transform: translateY(0);
      }

      .home-solution-text-wrapper h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }

      .home-solution-text-wrapper p {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        color: #f0f0f0;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
      }

      .home-solution-plus-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 4;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
      }

      .home-solution-plus-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      }

      .home-solution-plus-btn svg {
        color: white;
        transition: all 0.3s ease;
      }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes cardSlideUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes expandLine {
        to {
          scale: 1;
        }
      }

      @keyframes pulse {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .home-solution-card:hover .home-solution-plus-btn {
        animation: pulse 2s infinite;
      }

      @media (max-width: 768px) {
        .home-solutions-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }
        
        .home-section-title h2 {
          font-size: 2.2rem;
        }

        .home-solution-card {
          height: 250px;
        }

        .home-solution-text-wrapper {
          padding: 1.5rem;
        }

        .home-solution-text-wrapper h3 {
          font-size: 1.3rem;
        }
      }

      /* Additional floating animation for the section */
      .home-animate-load {
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0%, 100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }


/* Our Clients - Scrolling Slider */
.home-clients-section {
    background: #fff;
    padding: 35px 0 40px 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.home-client-slider-viewport {
    max-width: 1100px; /* Increased max-width */
    margin: 0 auto; /* Center the slider */
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 3px 18px 0 rgba(60,40,120,.07);
    background: #fff;
    padding: 20px 0;
}

.home-client-slider {
    display: flex;
    align-items: center;
    gap: 46px;
    animation: home-slider-scroll 20s linear infinite;
    width: max-content;
    padding: 0 40px;
}

.home-client-slider img {
    background: #fff;
    border-radius: 7px;
    padding: 10px 30px;
    height: 80px;
    max-width: 200px;
    box-shadow: 0 2px 8px 0 rgba(99,60,160,.07);
    object-fit: contain;
    user-select: none;
    transition: box-shadow .22s, transform .22s;
    display: block;
}

.home-client-slider img:hover {
    box-shadow: 0 7px 22px 0 rgba(99,60,160,.12);
    transform: scale(1.07);
}

@keyframes home-slider-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Featured Projects */
.home-projects-section {
    background: #fff;
    margin-top: 35px;
    padding: 0 0 40px 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(273px, 1fr));
    gap: 24px;
    max-width: 1000px; /* Reduced max-width */
    margin: 24px auto 0 auto; /* Center the grid */
    padding: 0 40px;
}

.home-project-card {
    background-size: cover;
    background-position: center;
    border-radius: 11px;
    box-shadow: 0 4px 18px 0 rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.23s, box-shadow 0.23s;
}

.home-project-card:hover {
    transform: translateY(-7px) scale(1.025);
    box-shadow: 0 10px 28px 0 rgba(89,58,117,0.12);
}

.home-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home-project-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-project-card h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.2;
}

/* Fade-in Animations */
.home-animate-load {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.7s cubic-bezier(.18,.89,.32,1.28), transform 0.7s cubic-bezier(.18,.89,.32,1.28);
}

.home-animate-loaded {
    opacity: 1;
    transform: translateY(0);
}




/* Responsive */
@media (max-width: 950px) {
    .home-who-container {
        flex-direction: column;
        align-items: stretch;
        padding-left: 18px;
        padding-right: 18px;
    }
    .home-who-img {
        text-align: left;
        margin-top: 23px;
        min-width: 0;
    }
    .home-solutions-grid, .home-projects-grid {
        padding: 0 10px;
    }
    .home-client-slider {
        padding: 0 10px;
    }
}

@media (max-width: 760px) {
    .home-stats {
        flex-direction: column;
        gap: 13px;
        padding: 15px 9px;
    }
    .home-stat:not(:last-child)::after {
        display: none;
    }
    .home-client-slider-viewport {
        padding: 10px 0;
    }
    .home-client-slider img {
        padding: 8px 18px;
        height: 60px;
        max-width: 150px;
    }
    .home-section-title {
        font-size: 1.35rem;
    }
    .home-who-content .home-section-title {
        text-align: center;
    }
    .home-who-content .home-title-underline {
        margin-left: auto;
    }
}

@media (max-width: 710px) {
    .home-solutions-grid, .home-projects-grid {
        grid-template-columns: 1fr;
    }
    .home-who-content, .home-who-img {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Main Section Layout */

        .home-partners-section {
            display: flex;
            flex-direction: column; /* Default to column for mobile */
            min-height: 100vh;
            width: 100%;
            overflow: hidden; /* Ensures content stays within bounds */
        }

        .home-image-column {
            flex: 1; /* Takes available space on mobile */
            position: relative;
            min-height: 300px; /* Minimum height for mobile image */
            overflow: hidden;
        }

        .home-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .home-content-column {
            flex: 1; /* Takes available space on mobile */
            background-color: #e9e9e9; /* Light grey background */
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative; /* For positioning social buttons */
            overflow: hidden; /* Important for carousel and social buttons */
        }

        .home-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            color: #333; /* Ensure dark text */
        }

      

        .home-description {
            font-size: 1rem;
            line-height: 1.8;
            max-width: 500px; /* Limit text width */
            margin-bottom: 40px;
            color: #555; /* Slightly lighter text */
        }

        .home-logos-wrapper {
            width: 100%;
            overflow: hidden; /* Hides logos outside the view */
            margin-bottom: 40px;
        }

        .home-logos-container {
            display: flex;
            gap: 20px; /* Space between logo cards */
            transition: transform 0.3s ease-in-out; /* Smooth transition for scrolling */
            padding-bottom: 10px; /* To prevent shadow clipping if any */
        }

        .home-logo-card {
            flex-shrink: 0; /* Prevent cards from shrinking */
            width: 200px; /* Fixed width for logo cards */
            height: 120px; /* Fixed height for logo cards */
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* Softer shadow */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            box-sizing: border-box;
        }

        .home-logo-card img {
            max-width: 100%!important;
            max-height: 100%;
            object-fit: contain;
        }

        .home-navigation-area {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between; /* Space out arrows and button */
        }

        .home-arrows-container {
            display: flex;
            gap: 15px;
        }

        .home-arrow {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333;
            transition: color 0.2s ease;
        }

        .home-arrow:hover {
            color: #000;
        }

        .home-arrow svg {
            width: 24px;
            height: 24px;
        }

        .home-view-all-button {
            padding: 12px 25px;
            border: 1px solid #333;
            border-radius: 25px;
            background-color: transparent;
            color: #333;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .home-view-all-button:hover {
            background-color: #333;
            color: #fff;
        }

        /* Social Buttons */
        .home-social-buttons-container {
            display: none; /* Hidden by default on mobile */
            flex-direction: column;
            gap: 15px;
            position: absolute;
            right: 40px; /* Distance from right edge of content column */
            top: 50%;
            transform: translateY(-50%);
            z-index: 10; /* Ensure it's above other content */
        }

        .home-social-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #3498db; /* Purple color from image */
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
        }

        .home-social-button:hover {
            transform: scale(1.05);
        }

        .home-social-button svg {
            width: 24px;
            height: 24px;
            color: #fff; /* White icons */
        }

        /* Responsive adjustments - FIXED FOR 50-50 SPLIT */
        @media (min-width: 768px) {
            .home-partners-section {
                flex-direction: row; /* Side-by-side for larger screens */
            }

            .home-image-column {
                flex: 0 0 50%; /* CHANGED: Exactly 50% width for image column */
                min-height: auto; /* Reset min-height */
            }

            .home-content-column {
                flex: 0 0 50%; /* CHANGED: Exactly 50% width for content column */
                padding: 60px 80px; /* More padding for larger screens */
            }

            .home-title {
                font-size: 3.5rem; /* Larger title */
            }

            .home-description {
                font-size: 1.1rem;
            }

            .home-social-buttons-container {
                display: flex; /* Show on larger screens */
            }
        }

        @media (min-width: 1024px) {
            .home-content-column {
                padding: 80px 100px;
            }
            .home-social-buttons-container {
                right: 60px; /* Adjust position for larger screens */
            }
        }
        /* Why Choose Us Section */
         .home-why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    min-height: 100vh;
}

.home-why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.home-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.home-section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.home-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8e44ad, #3498db);
    border-radius: 2px;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.home-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: homeCardFadeIn 0.6s ease forwards;
}

.home-feature-card:nth-child(1) { animation-delay: 0.1s; }
.home-feature-card:nth-child(2) { animation-delay: 0.2s; }
.home-feature-card:nth-child(3) { animation-delay: 0.3s; }
.home-feature-card:nth-child(4) { animation-delay: 0.4s; }
.home-feature-card:nth-child(5) { animation-delay: 0.5s; }
.home-feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes homeCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(142, 68, 173, 0.1), transparent);
    transition: all 0.6s ease;
}

.home-feature-card:hover::before {
    left: 100%;
}

.home-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(142, 68, 173, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.home-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8e44ad, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.home-feature-icon i {
    font-size: 2rem;
    color: white;
}

.home-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.home-feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .home-section-title h2 {
        font-size: 2.5rem;
    }
    
    .home-feature-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .home-why-choose-us {
        padding: 60px 0;
    }
    
    .home-container {
        padding: 0 15px;
    }
    
    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .home-section-title {
        margin-bottom: 40px;
    }
    
    .home-section-title h2 {
        font-size: 2rem;
    }
    
    .home-feature-card {
        padding: 30px 20px;
    }
    
    .home-feature-card h3 {
        font-size: 1.2rem;
    }
    
    .home-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .home-feature-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .home-why-choose-us {
        padding: 40px 0;
    }
    
    .home-section-title h2 {
        font-size: 1.8rem;
    }
    
    .home-feature-card {
        padding: 25px 15px;
    }
    
    .home-feature-card h3 {
        font-size: 1.1rem;
    }
    
    .home-feature-card p {
        font-size: 0.9rem;
    }
    
    .home-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .home-feature-icon i {
        font-size: 1.5rem;
    }
}
         
/* Testimonials Section */
.home-testimonials {
    padding: 100px 0;
    background: black;
    color: white;
    position: relative;
}

.home-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 80,100 0,100" fill="rgba(255,255,255,0.03)"/></svg>'); */
}

.home-testimonials .home-section-title h2 {
    color: white;
}

.home-testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.home-testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.home-testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    flex-shrink: 0;
}

.home-testimonial-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.home-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

.home-testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-author-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.home-author-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.home-author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.home-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.home-slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.home-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.home-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Footer */
.home-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.home-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.home-footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #3498db;
    position: relative;
}

.home-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3498db
}

.home-footer-section ul {
    list-style: none;
}

.home-footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.home-footer-section ul li:hover {
    transform: translateX(5px);
}

.home-footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-footer-section ul li a:hover {
    color: #3498db;
}

.home-company-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.home-company-logo img {
    width: 140px;
    height: 140px;
    filter: brightness(0) invert(1);
}

.home-company-logo h3 {
    margin: 0;
    font-size: 1.5rem;
}

.home-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.home-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.home-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.home-footer-bottom p {
    margin-bottom: 10px;
}

/* Ripple Effect */
.home-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: homeRipple 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes homeRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-section-title h2 {
        font-size: 2rem;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-feature-card {
        padding: 30px 20px;
    }

    .home-testimonial-card {
        padding: 30px 20px;
    }

    .home-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-company-logo {
        justify-content: center;
    }

    .home-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .home-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .home-feature-icon i {
        font-size: 1.5rem;
    }
    
    .home-testimonial-text {
        font-size: 1rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .home-feature-card {
        animation: none !important;
        transition: none !important;
    }
    
    .home-testimonial-container {
        transition: none !important;
    }
    
    .home-ripple {
        animation: none !important;
        display: none;
    }
}

/* Floating Icons */
.home-whatsapp-float,
.home-scroll-to-top-float {
    position: fixed;
    width: 55px; /* Medium size */
    height: 55px; /* Medium size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Icon size */
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000; /* Ensure it's on top */
    text-decoration: none; /* Remove underline for WhatsApp icon */
}

.home-whatsapp-float {
    bottom: 30px; /* Space from bottom */
    left: 30px; /* Space from left */
    background-color: #25D366; /* WhatsApp green */
    animation: home-pulse 2s infinite; /* Apply pulse animation */
}

.home-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px); /* Animation on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    animation: none; /* Stop pulse on hover */
}

.home-scroll-to-top-float {
    bottom: 30px; /* Space from bottom */
    right: 30px; /* Space from right */
    background-color: #3498db; /* Blue color */
    display: none; /* Hidden by default, shown by JS */
    border: none; /* Remove button default border */
}

.home-scroll-to-top-float:hover {
    transform: scale(1.1) translateY(-5px); /* Animation on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-section-title h2 {
        font-size: 2rem;
    }
    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .home-feature-card {
        padding: 30px 20px;
    }
    .home-testimonial-card {
        padding: 30px 20px;
    }
    .home-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .home-company-logo {
        justify-content: center;
    }
    .home-social-links {
        justify-content: center;
    }
    .home-footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    /* Adjust floating icons for smaller screens */
    .home-whatsapp-float,
    .home-scroll-to-top-float {
        width: 48px; /* Slightly smaller for mobile */
        height: 48px;
        font-size: 1.6rem;
        bottom: 20px; /* More space from bottom */
    }
    .home-whatsapp-float {
        left: 20px; /* Separate from right side */
        right: auto; /* Ensure it doesn't stick to right */
    }
    .home-scroll-to-top-float {
        right: 20px; /* Separate from left side */
        left: auto; /* Ensure it doesn't stick to left */
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple effect for buttons */
.home-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* WhatsApp Pulse Animation */
@keyframes home-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
