*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    
}
 html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

  
  h1, h2, h3 {
    font-family: 'poppins', sans-serif; 
  }
  
  p {
    font-family: 'roboto', sans-serif; 
  }
  
  button {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
  }

.head-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation Styles */
/* Header */
/* Header */
header {
    background-color: #f9f9ff;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
   
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
  }
   
  /* Logo Styles */
  .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
  }
   
  .logo img {
    width: 124px;
    height: auto;
  }
   
  .logo-text {
    background: linear-gradient(45deg, #4285f4, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: bold;
  }
   
  .logo-subtitle {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
  }
   
  /* Navigation Menu */
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }
   
  .nav-item {
    position: relative;
  }
   
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
  }
   
  .nav-link:hover {
    color: #4285f4;
  }
   
  .nav-link.active {
    color: #333;
    font-weight: 500;
  }
   
  /* Dropdown Arrow */
  .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
   
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
   
  /* Dropdown Menu */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
  }
   
  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
   
  .dropdown-item {
    list-style: none;
  }
   
  .dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
   
  .dropdown-link:hover {
    background-color: #f8f9ff;
    color: #4285f4;
    padding-left: 25px;
  }
   
  /* Contact Button */
  .contact-btn {
    background: transparent;
    border: 2px solid #4285f4;
    color: #4285f4;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
   
  .contact-btn:hover {
    background-color: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  }
   
  /* Mobile Menu Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
   
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
   
  .mobile-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
   
  .mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
   
  .mobile-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
   
  /* Tablet Responsive - 768px to 1024px */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .logo img {
        width: 110px;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
  }
   
  /* Mobile and Small Tablet Responsive - up to 768px */
  @media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    header {
        padding: 0 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
   
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
   
    .nav-menu.active {
        left: 0;
    }
   
    .nav-item {
        width: 100%;
        margin: 10px 0;
    }
   
    .nav-link {
        padding: 15px 20px;
        justify-content: center;
        border-bottom: 1px solid #f0f0f0;
    }
   
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9ff;
        margin-top: 10px;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
   
    .nav-item.dropdown-open .dropdown {
        max-height: 300px;
    }
   
    .nav-item:hover .dropdown {
        max-height: 0;
    }
   
    .nav-item.dropdown-open:hover .dropdown {
        max-height: 300px;
    }
   
    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
   
    .dropdown-link:hover {
        padding-left: 40px;
        background-color: #f0f0ff;
    }
   
    .contact-btn {
        margin: 20px auto 10px auto;
        padding: 14px 40px;
        font-size: 16px;
        display: block;
        text-align: center;
        width: fit-content;
        min-width: 140px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
  }
   
  /* Small Mobile - up to 480px */
  @media screen and (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 0 15px;
    }
   
    nav {
        height: 60px;
    }
   
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .logo img {
        width: 80px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .contact-btn {
        padding: 12px 35px;
        font-size: 15px;
        margin: 15px auto 5px auto;
        display: block;
        width: fit-content;
        min-width: 120px;
    }
  }
   
  /* Very Small Screens - up to 360px */
  @media screen and (max-width: 360px) {
    header {
        padding: 0 10px;
    }
    
    .logo img {
        width: 70px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hamburger {
        width: 20px;
        height: 2px;
    }
  }
   
  /* Landscape Mobile Optimization */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 10px 0;
        max-height: calc(100vh - 50px);
    }
    
    .nav-link {
        padding: 10px 20px;
    }
    
    .nav-item {
        margin: 5px 0;
    }
  }
   
  /* High DPI Screens */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
  }
   
  /* Focus States for Accessibility */
  .nav-link:focus,
  .dropdown-link:focus,
  .contact-btn:focus,
  .mobile-toggle:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
  }
   
  /* Print Styles */
  @media print {
    header {
        position: static;
        box-shadow: none;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        gap: 20px;
        padding: 0;
    }
  }

  .hero-section {
    background-color: #d5d6d6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    min-height: 100vh;
    flex-wrap: wrap;
  }

  .hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
  }

  .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* was var(--spacing-xs) */
    padding: 12px 20px; /* was var(--spacing-md) var(--spacing-lg) */
    background-color: #3b82f6; /* was var(--color-primary) */
    color: #ffffff; /* was var(--color-text-light) */
    border-radius: 8px; /* was var(--border-radius-md) */
    font-weight: 600;
    font-size: 18px; /* was var(--font-size-lg) */
    transition: all 0.3s ease; /* was var(--transition-base) */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* was var(--shadow-md) */
  }
  
  .hero__cta:hover,
  .hero__cta:focus-visible {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); /* was var(--shadow-lg) */
    outline: 2px solid #3b82f6; /* was var(--color-primary) */
    outline-offset: 2px;
  }
  
  .hero__cta-icon {
    transition: all 0.3s ease; /* was var(--transition-base) */
  }
  
  .hero__cta:hover .hero__cta-icon {
    transform: translateX(4px);
  }
  

  .hero-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
    }
    .hero-text {
      padding-right: 0;
      margin-bottom: 30px;
    }
    .hero-text h1 {
      font-size: 34px;
    }
  }

  @media (max-width: 600px) {
    .hero-text h1 {
      font-size: 26px;
    }
    .hero-text p {
      font-size: 14px;
    }
    .hero-btn {
      font-size: 14px;
      padding: 12px 24px;
    }
  }


/*second section*/
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.content-wrapper {
    flex: 1;
    max-width: 500px;
    padding-right: 40px;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.mobile-image {
    max-width: 100%;
    height: auto;
}

/* Responsive styles */
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .content-wrapper {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .image-wrapper {
        width: 100%;
    }

    .mobile-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .mobile-image {
        max-width: 220px;
    }
}

/*third section*/
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;  
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.hidden-content {
    display: none;
    margin-top: 10px;
}

.read-more-btn {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}

.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.section-description {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.process-grid-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background-color: #ffeded;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.process-description {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive styles */
@media screen and (max-width: 900px) {
    .process-grid, .process-grid-second {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .process-grid, .process-grid-second {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .process-card {
        padding: 20px;
    }
}

.why-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px;
    background-color: #e6e6e6;
    margin-bottom: 100px;
    /* Remove fixed height for responsiveness */
    /* height: 650px; */ 
    box-sizing: border-box;
}

.section-header {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 48px;
    color: #222;
    font-weight: 700;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-number {
    display: inline-block;
    background-color: #857daa;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin: 10px;
    align-self: flex-start;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-container {
        padding: 40px 30px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .card-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .why-container {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .card-image {
        height: 140px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 20px 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .card-image {
        height: 130px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12.5px;
    }
}


/* Base styles */
.how-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.how-header {
    text-align: center;
    margin-bottom: 40px;
}

.sectionhow-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.sectionhow-description {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.ios-app-content-section {
    background-color: #f2f0ff;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.ios-app-image-container {
    flex: 1;
    min-width: 300px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ios-app-image-wrapper {
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 550px;
    width: 100%;
    transform-style: preserve-3d;
    border-radius: 15px;
    overflow: hidden;
}

.ios-app-image-wrapper:hover {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.ios-app-image-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
    transition: filter 0.5s ease;
}

.ios-app-image-wrapper:hover img {
    filter: brightness(1.05);
}

.ios-app-accordion-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.ios-app-accordion-item {
    background-color: #E3E3E3;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ios-app-accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ios-app-accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.ios-app-accordion-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.ios-app-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ios-app-arrow svg {
    width: 16px;
    height: 16px;
}

.ios-app-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.ios-app-accordion-content p {
    padding-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.ios-app-active .ios-app-accordion-content {
    max-height: 200px;
}

.ios-app-active .ios-app-arrow {
    transform: rotate(180deg);
}

/* Add a subtle glow effect on image hover */
.ios-app-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ios-app-image-wrapper:hover::after {
    opacity: 1;
}

/* RESPONSIVE BREAKPOINTS */

/* Large tablets and small desktops (1024px and down) */
@media screen and (max-width: 1024px) {
    .how-section {
        padding: 50px 15px;
    }
    
    .sectionhow-title {
        font-size: 42px;
    }
    
    .ios-app-content-section {
        padding: 30px;
        gap: 30px;
    }
    
    .ios-app-accordion-header h3 {
        font-size: 26px;
    }
}

/* Tablets (768px and down) */
@media screen and (max-width: 768px) {
    .how-section {
        padding: 40px 15px;
    }
    
    .how-header {
        margin-bottom: 30px;
    }
    
    .sectionhow-title {
        font-size: 36px;
    }
    
    .sectionhow-description {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .ios-app-content-section {
        border-radius: 20px;
        padding: 25px;
        gap: 25px;
        flex-direction: column;
    }
    
    .ios-app-image-container {
        min-width: 250px;
        order: 1;
    }
    
    .ios-app-accordion-container {
        min-width: 250px;
        gap: 30px;
        order: 2;
    }
    
    .ios-app-accordion-header {
        padding: 18px;
    }
    
    .ios-app-accordion-header h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .ios-app-accordion-content p {
        font-size: 15px;
        padding-bottom: 18px;
    }
    
    /* Reduce hover effects on tablets */
    .ios-app-image-wrapper:hover {
        transform: translateZ(15px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Large phones (480px and down) */
@media screen and (max-width: 480px) {
    .how-section {
        padding: 30px 10px;
    }
    
    .how-header {
        margin-bottom: 25px;
    }
    
    .sectionhow-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .sectionhow-description {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .ios-app-content-section {
        border-radius: 15px;
        padding: 20px;
        gap: 20px;
    }
    
    .ios-app-image-container {
        min-width: 200px;
    }
    
    .ios-app-accordion-container {
        min-width: 200px;
        gap: 20px;
    }
    
    .ios-app-accordion-header {
        padding: 15px;
    }
    
    .ios-app-accordion-header h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .ios-app-accordion-content {
        padding: 0 15px;
    }
    
    .ios-app-accordion-content p {
        font-size: 14px;
        padding-bottom: 15px;
        line-height: 1.5;
    }
    
    .ios-app-arrow {
        width: 18px;
        height: 18px;
    }
    
    .ios-app-arrow svg {
        width: 14px;
        height: 14px;
    }
}

/* Small phones (360px and down) */
@media screen and (max-width: 360px) {
    .how-section {
        padding: 25px 8px;
    }
    
    .sectionhow-title {
        font-size: 24px;
    }
    
    .sectionhow-description {
        font-size: 0.85rem;
    }
    
    .ios-app-content-section {
        border-radius: 12px;
        padding: 15px;
        gap: 15px;
    }
    
    .ios-app-accordion-header {
        padding: 12px;
    }
    
    .ios-app-accordion-header h3 {
        font-size: 18px;
    }
    
    .ios-app-accordion-content {
        padding: 0 12px;
    }
    
    .ios-app-accordion-content p {
        font-size: 13px;
        padding-bottom: 12px;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .ios-app-image-wrapper:hover {
        transform: none;
        box-shadow: none;
    }
    
    .ios-app-image-wrapper:hover img {
        filter: none;
    }
    
    .ios-app-image-wrapper:hover::after {
        opacity: 0;
    }
    
    .ios-app-accordion-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ios-app-image-container img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .how-section {
        padding: 20px 15px;
    }
    
    .ios-app-content-section {
        flex-direction: row;
        gap: 20px;
    }
    
    .ios-app-image-container,
    .ios-app-accordion-container {
        flex: 1;
        min-width: 250px;
    }
    
    .ios-app-accordion-container {
        gap: 15px;
    }
}

/* === Main Investment Section === */
/* Base styles */
.invest-container {
    max-width: 1000px;
    padding: 40px;
    border-radius: 10px;
    margin-left: 150px;
    margin-right: auto;
}

.heading {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    margin-left: 50px;
    margin-top: 100px;
    line-height: 1.2;
}

.subheading {
    text-align: center;
    color: #666;
    margin: 10px 0 30px;
    margin-bottom: 70px;
    font-size: 16px;
    line-height: 1.5;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.image-section {
    flex: 1;
    min-width: 500px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-section img:hover {
    transform: scale(1.05);
}

.text-section {
    flex: 1;
    min-width: 320px;
    margin-left: 80px;
}

.text-section h3 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.text-section p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* RESPONSIVE BREAKPOINTS */

/* Large tablets and small desktops (1200px and down) */
@media screen and (max-width: 1200px) {
    .invest-container {
        margin-left: 100px;
        max-width: 900px;
    }
    
    .heading {
        margin-left: 30px;
        font-size: 44px;
    }
    
    .text-section {
        margin-left: 60px;
    }
    
    .text-section h3 {
        font-size: 34px;
    }
}

/* Tablets (1024px and down) */
@media screen and (max-width: 1024px) {
    .invest-container {
        margin-left: 50px;
        padding: 30px;
        max-width: 800px;
    }
    
    .heading {
        margin-left: 20px;
        margin-top: 80px;
        font-size: 40px;
    }
    
    .subheading {
        margin-bottom: 50px;
    }
    
    .image-section {
        min-width: 400px;
    }
    
    .text-section {
        margin-left: 40px;
        min-width: 280px;
    }
    
    .text-section h3 {
        font-size: 30px;
    }
    
    .text-section p {
        font-size: 15px;
    }
}

/* Small tablets (768px and down) */
@media screen and (max-width: 768px) {
    .invest-container {
        margin-left: 20px;
        margin-right: 20px;
        padding: 25px;
        max-width: none;
    }
    
    .heading {
        margin-left: 0;
        margin-top: 60px;
        font-size: 36px;
    }
    
    .subheading {
        margin-bottom: 40px;
        font-size: 15px;
        padding: 0 10px;
    }
    
    .content {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-section {
        min-width: 250px;
        order: 1;
    }
    
    .text-section {
        margin-left: 0;
        min-width: 250px;
        order: 2;
        text-align: center;
    }
    
    .text-section h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .text-section p {
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Large phones (480px and down) */
@media screen and (max-width: 480px) {
    .invest-container {
        margin: 0 10px;
        padding: 20px;
    }
    
    .heading {
        margin-top: 40px;
        font-size: 28px;
        line-height: 1.1;
    }
    
    .subheading {
        margin-bottom: 30px;
        font-size: 14px;
        padding: 0 5px;
    }
    
    .content {
        gap: 25px;
    }
    
    .image-section {
        min-width: 200px;
    }
    
    .text-section {
        min-width: 200px;
    }
    
    .text-section h3 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .text-section p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .image-section img {
        border-radius: 8px;
    }
}

/* Small phones (360px and down) */
@media screen and (max-width: 360px) {
    .invest-container {
        margin: 0 5px;
        padding: 15px;
    }
    
    .heading {
        margin-top: 30px;
        font-size: 24px;
    }
    
    .subheading {
        margin-bottom: 25px;
        font-size: 13px;
    }
    
    .content {
        gap: 20px;
    }
    
    .text-section h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .text-section p {
        font-size: 14px;
    }
    
    .image-section img {
        border-radius: 6px;
    }
}

/* Very small phones (320px and down) */
@media screen and (max-width: 320px) {
    .invest-container {
        margin: 0;
        padding: 12px;
    }
    
    .heading {
        margin-top: 25px;
        font-size: 22px;
    }
    
    .subheading {
        margin-bottom: 20px;
        font-size: 12px;
    }
    
    .text-section h3 {
        font-size: 20px;
    }
    
    .text-section p {
        font-size: 13px;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .image-section img:hover {
        transform: none;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .invest-container {
        padding: 20px;
    }
    
    .heading {
        margin-top: 30px;
        font-size: 32px;
    }
    
    .subheading {
        margin-bottom: 30px;
    }
    
    .content {
        flex-direction: row;
        gap: 20px;
    }
    
    .image-section,
    .text-section {
        flex: 1;
        min-width: 250px;
    }
    
    .text-section {
        text-align: left;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .image-section img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Extra large screens (1400px and up) */
@media screen and (min-width: 1400px) {
    .invest-container {
        margin-left: 200px;
        max-width: 1200px;
    }
    
    .heading {
        margin-left: 80px;
        font-size: 52px;
    }
    
    .text-section {
        margin-left: 100px;
    }
    
    .text-section h3 {
        font-size: 42px;
    }
    
    .text-section p {
        font-size: 16px;
    }
}

/* === Features Section === */
.feature-container {
    max-width: 1000px;
    width: 100%;
    margin-left: 300px;
    margin-top: 0px;
}

.feature {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 40px;
}

.feature-text h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-text p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-image img:hover {
    transform: scale(1.05);
}

/* === Tablet Devices (768px - 1024px) === */
@media (max-width: 1024px) {
    .invest-container {
        margin-left: 50px;
        padding: 30px;
    }

    .heading {
        font-size: 36px;
        margin-left: 0;
    }

    .text-section {
        margin-left: 30px;
    }

    .text-section h3 {
        font-size: 28px;
    }

    .feature-container {
        margin-left: 50px;
        padding: 0 20px;
    }

    .feature-text h3 {
        font-size: 24px;
    }
}

/* === Mobile Devices (Below 768px) === */
@media (max-width: 768px) {
    .invest-container {
        margin-left: 0;
        padding: 20px;
    }

    .heading {
        font-size: 28px;
        text-align: center;
        margin-left: 0;
    }

    .subheading {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .image-section {
        min-width: auto;
        margin-bottom: 20px;
    }

    .text-section {
        margin-left: 0;
    }

    .text-section h3 {
        font-size: 24px;
    }

    .text-section p {
        font-size: 13px;
    }

    .feature-container {
        margin-left: 0;
        margin-top: 60px;
        padding: 0 15px;
    }

    .feature {
        flex-direction: column !important;
        padding: 15px;
        text-align: center;
    }

    .feature-text {
        padding: 20px 10px;
    }

    .feature-text h3 {
        font-size: 20px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

/* === Extra Small Mobile Devices (Below 480px) === */
@media (max-width: 480px) {
    .heading {
        font-size: 24px;
        margin-top: 50px;
    }

    .text-section h3 {
        font-size: 20px;
    }

    .feature-text h3 {
        font-size: 18px;
    }
}


.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f5f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    position: relative;
}

.faq-question-text {
    font-size: 16px;
    padding-right: 40px;
    color: #0D0D12;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 16px;
    transform: rotate(90deg);
}

.faq-toggle::after {
    width: 16px;
    height: 2px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 30px auto;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question-text {
        font-size: 15px;
        padding-right: 30px;
    }

    .faq-toggle {
        right: 15px;
        width: 16px;
        height: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* footer section*/
/* Footer Styles */
.footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f8f9ff;
    padding: 60px 20px;
}

   
  .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
   
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
   
  /* Company Info Section */
  .footer-company {
    grid-column: span 1;
  }
   
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
   
  .footer-logo img {
    width: 120px;
    height: auto;
    margin-right: 10px;
  }
   
  .company-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
   
  /* Social Media Icons */
  .social-media {
    display: flex;
    gap: 15px;
    align-items: center;
  }
   
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
  }
   
  .social-icon.linkedin {
    background-color: #0077b5;
  }
   
  .social-icon.twitter {
    background-color: #000;
  }
   
  .social-icon.facebook {
    background-color: #1877f2;
  }
   
  .social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
   
  .social-icon.threads {
    background-color: #000;
  }
   
  .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
   
  /* Footer Sections */
  .footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
   
  .footer-links {
    list-style: none;
  }
   
  .footer-links li {
    margin-bottom: 12px;
  }
   
  .footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
  }
   
  .footer-links a:hover {
    color: #4285f4;
    padding-left: 5px;
  }
   
  /* Contact Section */
  .contact-infos {
    list-style: none;
  }
   
  .contact-infos li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
  }
   
  .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #4285f4;
  }
   
  .contact-text {
    line-height: 1.5;
  }
   
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
  }
   
  .copyright {
    color: #666;
    font-size: 14px;
    font-weight: 500;
  }
   
  /* Tablet Styles */
  @media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
   
    .footer-company {
        grid-column: span 1;
    }
   
    .footer-container {
        padding: 0 30px;
    }
  }
   
  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
   
    .footer-container {
        padding: 0 20px;
    }
   
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
   
    .footer-company {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }
   
    .company-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
   
    .social-media {
        justify-content: center;
    }
   
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
   
    .footer-links a {
        font-size: 14px;
    }
   
    .contact-infos li {
        font-size: 14px;
        margin-bottom: 15px;
    }
   
    .contact-icon {
        width: 18px;
        height: 18px;
    }
  }
   
  /* Small Mobile Styles */
  @media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
   
    .footer-container {
        padding: 0 15px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
   
    .footer-company {
        grid-column: span 1;
        margin-bottom: 15px;
    }
   
    .footer-logo img {
        width: 100px;
    }
   
    .company-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
   
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
   
    .footer-section {
        text-align: center;
    }
   
    .footer-links a {
        padding: 8px 0;
    }
   
    .contact-infos li {
        justify-content: flex-start;
        text-align: left;
    }
   
    .copyright {
        font-size: 13px;
        padding: 0 10px;
    }
  }
   
  /* Very Small Screens */
  @media screen and (max-width: 360px) {
    .footer-container {
        padding: 0 10px;
    }
   
    .social-media {
        gap: 10px;
    }
   
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
   
    .contact-infos li {
        margin-bottom: 12px;
    }
  }
   
  /* Landscape Mobile */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 20px 0 10px 0;
    }
   
    .footer-content {
        margin-bottom: 15px;
    }
   
    .footer-section h3 {
        margin-bottom: 15px;
    }
  }