*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif; 
    
  }

  html, body {
    width: 100%;
    overflow-x: hidden; /* 🚫 Prevent horizontal scroll */
  }
  
  
  h1, h2, h3 {
    font-family: 'poppins', sans-serif; 
  }
  
  p {
    font-family: 'roboto', sans-serif; 
  }
  
  button {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
  }
  
  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;
    }
  }

/* Main Content Area */
.main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.content-text {
    padding: 0 2rem;
    animation: slideInLeft 1s ease-out;
}

.heading {
    font-family: 'Poppins', sans-serif;
    color: #FF2C04;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF2C04 0%, #FF6B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-family: 'Roboto', sans-serif;
    color: #5E6570;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FF2C04 0%, #FF4B2E 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 44, 4, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e6250a 0%, #e6412a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 44, 4, 0.4);
}

.cta-button::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.mobile-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 44, 4, 0.2));
    transition: transform 0.3s ease;
}

.mobile-img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Wave Background */
.wave {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.6;
}

.wave img {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}



/* Tablet Styles - 1024px and down */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .nav-links ul {
        gap: 1rem;
    }

    .nav-links ul li a {
        font-size: 14px;
        padding: 0.4rem 0.8rem;
    }

    .contact-btn {
        padding: 0.6rem 1.5rem;
        font-size: 14px;
    }

    .main-content {
        padding: 1.5rem;
        gap: 2rem;
    }

    .content-text {
        padding: 0 1rem;
    }

    .mobile-img {
        max-height: 450px;
    }
}

/* Mobile Styles - 768px and down */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        padding: 1rem;
        border-radius: 0 0 15px 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #FFEFEC 0%, #FFF5F3 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-links ul li a {
        font-size: 18px;
        padding: 1rem 2rem;
    }

    .contact-btn {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 16px;
    }

    .main-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
        gap: 2rem;
    }

    .content-text {
        padding: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .mobile-img {
        max-height: 350px;
    }

    .wave img {
        left: -30%;
        width: 160%;
    }
}

/* Small Mobile Styles - 480px and down */
@media (max-width: 480px) {
    nav {
        padding: 0.75rem;
    }

    .logo img {
        width: 100px;
    }

    .main-content {
        padding: 0.75rem;
        gap: 1.5rem;
    }

    .heading {
        margin-bottom: 1rem;
    }

    .description {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 16px;
    }

    .mobile-img {
        max-height: 280px;
    }
}

/* Close button for mobile menu */
.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333333;
    cursor: pointer;
    display: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: rgba(255, 44, 4, 0.1);
    color: #FF2C04;
}

.nav-links.active .close-menu {
    display: block;
}



  /* Second section */
/* ================== Base Section ================== */
.uber-clone-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  margin: 100px auto 0;
  color: #fff;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  gap: 40px;
}

/* Text Content */
.text-contents {
  text-align: left;
}

.text-contents h1 {
  font-size: 2.25rem; /* ~36px */
  margin-bottom: 20px;
  font-weight: bold;
  color: #111827;
  line-height: 1.2;
}

.text-contents p {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: #5E6570;
  margin-bottom: 15px;
}

/* Image */
.phone-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

/* ================== Responsive ================== */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .uber-clone-section {
    padding: 50px 30px;
    margin-top: 80px;
  }

  .content-container {
    gap: 30px;
  }

  .text-contents h1 {
    font-size: 2rem; /* ~32px */
  }

  .phone-image {
    max-width: 400px;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-contents {
    text-align: center;
  }

  .text-contents h1 {
    font-size: 1.75rem; /* ~28px */
  }

  .text-contents p {
    font-size: 0.95rem;
  }

  .phone-image {
    max-width: 350px;
  }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px) {
  .uber-clone-section {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .text-contents h1 {
    font-size: 1.5rem; /* ~24px */
  }

  .text-contents p {
    font-size: 0.9rem;
  }

  .phone-image {
    max-width: 280px;
    border-radius: 20px;
  }
}


  /* third section */
.ai-section-wrapper {
  max-width: 1440px;
  margin: 100px auto;
  padding: 40px 20px;
}

/* Section Tag & Heading */
.ai-section-tag {
  color: #FF2C04;
  font-size: 0.875rem; /* 14px */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.ai-section-heading {
  font-size: 2rem; /* 32px */
  color: #1a2b4e;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

/* ================== Content Layout ================== */
.ai-content-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Benefits Column */
.ai-benefits-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Benefit Box */
.ai-benefit-box {
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background-color: #fff;
}

.ai-benefit-box.ai-active {
  background-color: #FF2C04;
  color: white;
}

.ai-benefit-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.ai-benefit-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #89939e;
}

.ai-benefit-box.ai-active .ai-benefit-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.ai-benefit-name {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
}

.ai-benefit-description {
  color: #667085;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
}

.ai-benefit-box.ai-active .ai-benefit-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Hidden Content */
.ai-hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.ai-hidden-content.ai-visible {
  max-height: 120px;
  margin-top: 10px;
}

/* Visual Column */
.ai-visual-column {
  flex: 1;
}

.ai-showcase-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ================== Default Active State ================== */
#ai-ordering {
  background-color: #FF2C04;
  color: white;
}

#ai-ordering .ai-benefit-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

#ai-ordering .ai-benefit-description {
  color: white;
}

/* ================== Responsive ================== */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .ai-section-wrapper {
    margin: 80px auto;
    padding: 30px 20px;
  }

  .ai-section-heading {
    font-size: 1.75rem; /* 28px */
  }

  .ai-content-grid {
    gap: 30px;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .ai-content-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ai-section-tag,
  .ai-section-heading {
    text-align: center;
  }

  .ai-benefit-row {
    justify-content: center;
  }

  .ai-benefits-column {
    width: 100%;
    max-width: 500px;
  }

  .ai-visual-column {
    width: 100%;
    max-width: 500px;
  }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px) {
  .ai-section-wrapper {
    margin: 60px auto;
    padding: 20px 15px;
  }

  .ai-section-heading {
    font-size: 1.5rem; /* 24px */
  }

  .ai-benefit-name {
    font-size: 1rem; /* 16px */
  }

  .ai-benefit-description {
    font-size: 0.8rem;
  }

  .ai-showcase-image {
    border-radius: 10px;
  }
}


/*Benefits section*/
/* ================== Base ================== */
.benefits-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  position: relative;
}

/* Curve Background */
.curve-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -80px;
}

.curve-image {
  width: 40%;
  height: auto;
  display: inline-block;
  margin-bottom: -20px;
}

/* Headings */
.section-benefits-title {
  font-size: 3rem; /* 48px */
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-subwords {
  font-size: 1rem;
  font-weight: normal;
  color: #747980;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Benefits Grid */
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card */
.benefit-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #FF8585;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  flex: 1 1 300px;
  max-width: 320px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon */
.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit-card .icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFDDBA;
  border-radius: 10px;
}

/* Text */
.benefit-card h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #38404A;
  line-height: 1.6;
}

/* ================== Responsive ================== */

/* Large Screens (Desktop) */
@media (min-width: 1025px) {
  .benefits-container {
    gap: 60px;
  }
}

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .section-benefits-title {
    font-size: 2.5rem; /* 40px */
  }

  .section-subwords {
    font-size: 0.95rem;
  }

  .benefits-container {
    gap: 30px;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 30px);
    max-width: 100%;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .section-benefits-title {
    font-size: 2rem; /* 32px */
  }

  .section-subwords {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .benefits-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .benefit-card {
    flex: 1 1 100%;
    max-width: 90%;
    text-align: center;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px) {
  .section-benefits-title {
    font-size: 1.6rem; /* 26px */
  }

  .section-subwords {
    font-size: 0.85rem;
  }

  .benefit-card {
    padding: 20px;
    border-radius: 15px;
  }

  .benefit-card .icon {
    height: 45px;
    width: 45px;
    font-size: 1.5rem;
  }
}


/* why choose section page*/
/* whychoose Section Styling*/
/* ================== Base ================== */
.why-section {
  max-width: 1440px;
  margin: 50px auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Text Content */
.text-content {
  text-align: left;
}

.subheading-why {
  color: #FF2C04;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.main-heading-why {
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description-why {
  font-size: 1.125rem; /* 18px */
  color: #5E6570;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Offer List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list1st-box li {
  background-color: #FFF0F0;
  padding: 20px;
  border-radius: 10px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.list-number {
  color: #38404A;
  font-weight: bold;
  font-size: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFE0E0;
  margin-right: 12px;
}

.list-content p {
  color: #38404A;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Image Section */
.why-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: flex-end;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* ================== Responsive ================== */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .why-container {
    gap: 30px;
  }

  .main-heading-why {
    font-size: 2rem; /* 32px */
  }

  .description-why {
    font-size: 1rem;
  }
}

/* Small Tablets & Large Mobiles (<=768px) */
@media (max-width: 768px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }

  .why-list li {
    justify-content: center;
  }

  .why-image {
    justify-content: center;
    margin-top: 30px;
    max-width: 90%;
  }
}

/* Small Mobiles (<=480px) */
@media (max-width: 480px) {
  .why-section {
    padding: 50px 15px;
  }

  .subheading-why {
    font-size: 12px;
  }

  .main-heading-why {
    font-size: 1.6rem; /* 26px */
  }

  .description-why {
    font-size: 0.9rem;
  }

  .why-list li {
    margin-bottom: 20px;
  }

  .list-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}


/*global Section Styling*/
/* Base Styles */
.revenue-growth {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
}

/* Image Wrapper */
.image-wrap {
  flex: 1;
  max-width: 600px;
}

.image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Text Content */
.text-page {
  flex: 1;
  max-width: 600px;
}

.subheading-text {
  color: #FF2C04;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-text {
  font-size: 36px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description-page {
  font-size: 18px;
  color: #5E6570;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===========================
   Responsive Breakpoints
   =========================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .content-wrap {
    gap: 40px;
  }

  .main-heading-text {
    font-size: 32px;
  }

  .description-page {
    font-size: 16px;
  }
}

/* Tablets & Large Mobiles (≤768px) */
@media (max-width: 768px) {
  .content-wrap {
    flex-direction: column;
    text-align: center;
  }

  .image-wrap,
  .text-page {
    max-width: 100%;
  }

  .main-heading-text {
    font-size: 28px;
  }

  .description-page {
    font-size: 15px;
  }
}

/* Small Mobiles (≤320px) */
@media (max-width: 320px) {
  .revenue-growth {
    padding: 30px 15px;
  }

  .subheading-text {
    font-size: 12px;
  }

  .main-heading-text {
    font-size: 22px;
    line-height: 1.3;
  }

  .description-page {
    font-size: 14px;
  }
}

   .offer-section {
    max-width: 1440px;
    margin: 50px auto;
    padding: 80px 20px;
  }
  
  .offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  /* Text Content */
  .text-content {
    text-align: left;
  }
  
  .subheading-offer {
    color: #FF2C04;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  
  .main-heading-offer {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .description-offer {
    font-size: 18px;
    color: #5E6570;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  /* Offer List */
  .offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 18px;
    border-radius: 10px;
  }
  
  .list-number {
    color: #38404A;
    font-weight: bold;
    font-size: 14px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0;
  }
  
  .list-content p {
    color: #38404A;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Image Section */
  .offer-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
  }
  
  .offer-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }
  
  /* ===========================
     Responsive Breakpoints
     =========================== */
  
  /* Large Screens ≤ 1024px */
  @media (max-width: 1024px) {
    .offer-container {
      gap: 30px;
    }
  
    .main-heading-offer {
      font-size: 32px;
    }
  
    .description-offer {
      font-size: 16px;
    }
  
    .offer-list li {
      margin-bottom: 20px;
      padding: 16px;
    }
  }
  
  /* Tablets ≤ 768px */
  @media (max-width: 768px) {
    .offer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .text-content {
      text-align: center;
    }
  
    .main-heading-offer {
      font-size: 28px;
    }
  
    .description-offer {
      font-size: 15px;
    }
  
    .offer-list {
      margin-top: 20px;
    }
  
    .offer-list li {
      justify-content: center;
      text-align: left;
    }
  
    .offer-image {
      max-width: 100%;
    }
  }
  
  /* Small Mobiles ≤ 480px */
  @media (max-width: 480px) {
    .offer-section {
      padding: 50px 15px;
    }
  
    .main-heading-offer {
      font-size: 24px;
      line-height: 1.3;
    }
  
    .description-offer {
      font-size: 14px;
    }
  
    .offer-list li {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 14px;
    }
  
    .list-number {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }
  
    .list-content p {
      font-size: 14px;
    }
  }
  
  /* Extra Small Mobiles ≤ 320px */
  @media (max-width: 320px) {
    .main-heading-offer {
      font-size: 20px;
    }
  
    .description-offer {
      font-size: 13px;
    }
  
    .offer-list li {
      padding: 12px;
    }
  }
  

/* Features section*/

/* ===========================
   Base Styles
   =========================== */
   .extra-section {
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }
  
  .curve-container2 {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: -60px;
  }
  
  .curve-image2 {
    width: 35%;
    height: auto;
    display: inline-block;
    margin-bottom: -30px;
  }
  
  /* Section Title and Description */
  .section-title-extra {
    font-size: 42px;
    color: #111827;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .section-description-extra {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Features Grid */
  .extra-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Extra Box */
  .extra-box {
    background: #fff;
    border: 1px solid #FFB469;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    flex: 1 1 300px;
    max-width: 400px;
    min-height: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .extra-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Icon Styling */
  .icon-container {
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  /* Title and Description */
  .extra-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
  }
  
  .extra-description {
    font-size: 15px;
    color: #747980;
    line-height: 1.6;
  }
  
  /* ===========================
     Responsive Breakpoints
     =========================== */
  
  /* Large Screens ≤ 1024px */
  @media (max-width: 1024px) {
    .section-title-extra {
      font-size: 36px;
    }
    .section-description-extra {
      font-size: 15px;
    }
    .extra-box {
      flex: 1 1 280px;
      min-height: 220px;
    }
  }
  
  /* Tablets ≤ 768px */
  @media (max-width: 768px) {
    .curve-image2 {
      width: 50%;
      margin-bottom: -20px;
    }
    .section-title-extra {
      font-size: 30px;
    }
    .section-description-extra {
      font-size: 14px;
      margin-bottom: 30px;
    }
    .extra-container {
      gap: 15px;
    }
    .extra-box {
      max-width: 100%;
      flex: 1 1 100%;
      text-align: center;
    }
    .extra-title {
      font-size: 16px;
    }
    .extra-description {
      font-size: 14px;
    }
  }
  
  /* Small Mobiles ≤ 480px */
  @media (max-width: 480px) {
    .extra-section {
      padding: 40px 15px;
    }
    .section-title-extra {
      font-size: 24px;
      line-height: 1.3;
    }
    .section-description-extra {
      font-size: 13px;
      margin-bottom: 25px;
    }
    .feature-icon {
      width: 40px;
      height: 40px;
    }
    .extra-box {
      padding: 18px;
      min-height: auto;
    }
    .extra-title {
      font-size: 15px;
    }
    .extra-description {
      font-size: 13px;
    }
  }
  
  /* Extra Small Mobiles ≤ 320px */
  @media (max-width: 320px) {
    .section-title-extra {
      font-size: 20px;
    }
    .section-description-extra {
      font-size: 12px;
    }
    .extra-box {
      padding: 15px;
    }
  }
  

/*Extra-Addons section*/
/* ===========================
   Base Styles
   =========================== */
   .addons-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #fff;
  }
  
  .section-title2 {
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: #747980;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  
  /* Grid Layout */
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  /* Curve decoration */
  .curve-container3 {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: -70px;
  }
  
  .curve-image3 {
    width: 30%;
    height: auto;
    display: inline-block;
    margin-bottom: -15px;
  }
  
  /* Addon Item */
  .addon-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .addon-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }
  
  /* Image */
  .addon-image {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  /* Title & Description */
  .addon-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 15px 0 8px;
  }
  
  .addon-description {
    font-size: 14px;
    color: #747980;
    line-height: 1.5;
  }
  
  /* ===========================
     Responsive Breakpoints
     =========================== */
  
  /* Large screens ≤ 1024px */
  @media (max-width: 1024px) {
    .section-title2 {
      font-size: 36px;
    }
  
    .addons-grid {
      gap: 25px;
    }
  }
  
  /* Tablets ≤ 768px */
  @media (max-width: 768px) {
    .addons-section {
      padding: 70px 15px;
    }
  
    .section-title2 {
      font-size: 30px;
    }
  
    .section-subtitle {
      font-size: 14px;
      margin-bottom: 30px;
    }
  
    .addons-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .addon-title {
      font-size: 15px;
    }
  
    .addon-description {
      font-size: 13px;
    }
  }
  
  /* Small Mobiles ≤ 480px */
  @media (max-width: 480px) {
    .section-title2 {
      font-size: 24px;
      line-height: 1.3;
    }
  
    .section-subtitle {
      font-size: 13px;
    }
  
    .addons-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .addon-item {
      padding: 20px 15px;
    }
  
    .addon-title {
      font-size: 14px;
    }
  
    .addon-description {
      font-size: 12px;
    }
  }
  
  /* Extra Small Mobiles ≤ 320px */
  @media (max-width: 320px) {
    .section-title2 {
      font-size: 20px;
    }
  
    .section-subtitle {
      font-size: 12px;
    }
  
    .addon-item {
      padding: 15px;
    }
  }
  

  .faq-section {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 100px;
    box-sizing: border-box;
  }
  
  .faq-header {
    width: 100%;
    max-width: 320px;
    margin-right: 80px;
    flex-shrink: 0;
  }
  
  .faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #11151e;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .faq-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  .faq-content {
    flex: 1 1 0;
    min-width: 300px;
    margin-left: 80px;
  }
  
  .faq-item {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 0.5rem;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #11151e;
    transition: color 0.3s ease;
    font-size: 1rem;
  }
  
  .faq-question:hover {
    color: #ff6b6b;
  }
  
  .faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .faq-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-toggle {
    background-color: #ff6b6b;
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-toggle svg {
    stroke: #fff;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.25rem 0;
  }
  
  /* Desktop Large Screens */
  @media (max-width: 1200px) {
    .faq-section {
      max-width: 1000px;
      padding: 1.5rem;
      margin-top: 80px;
      gap: 1.5rem;
    }
    .faq-header {
      max-width: 280px;
      margin-right: 60px;
    }
    .faq-content {
      margin-left: 60px;
      min-width: 260px;
    }
  }
  
  /* Tablets: 768px - 1024px */
  @media (max-width: 1024px) {
    .faq-section {
      max-width: 92vw;
      padding: 1.25rem;
      gap: 1.25rem;
      flex-direction: column;
      margin-top: 56px;
    }
    .faq-header {
      max-width: 100%;
      margin: 0 0 1.25rem 0;
    }
    .faq-content {
      margin-left: 0;
      min-width: 200px;
    }
    .faq-title {
      font-size: 1.6rem;
    }
    .faq-question {
      font-size: 0.95rem;
      padding: 1rem 0;
    }
  }
  
  /* Mobiles: 320px - 767px */
  @media (max-width: 768px) {
    .faq-section {
      max-width: 98vw;
      padding: 1rem;
      gap: 1rem;
      flex-direction: column;
      margin-top: 32px;
    }
    .faq-header {
      max-width: 100%;
      margin: 0 0 1rem 0;
    }
    .faq-title {
      font-size: 1.35rem;
      margin-bottom: 0.65rem;
    }
    .faq-subtitle {
      font-size: 0.85rem;
    }
    .faq-content {
      margin-left: 0;
      min-width: 120px;
    }
    .faq-item {
      margin-bottom: 0.35rem;
    }
    .faq-question {
      font-size: 0.95rem;
      padding: 0.85rem 0;
    }
    .faq-answer {
      font-size: 0.85rem;
      line-height: 1.5;
    }
  }
  
  /* Small Phones: up to 320px */
  @media (max-width: 350px) {
    .faq-section {
      padding: 0.5rem;
      gap: 0.5rem;
    }
    .faq-title {
      font-size: 1rem;
    }
    .faq-header {
      max-width: 100%;
      margin-bottom: 0.5rem;
    }
    .faq-content {
      min-width: 80px;
    }
    .faq-question {
      font-size: 0.85rem;
      padding: 0.65rem 0;
    }
    .faq-answer {
      font-size: 0.75rem;
    }
  }
  


/* Footer Styles */
.footer {
  background-color: #f8f9ff;
  padding: 60px 0 30px 0;
  color: #333;
}
 
.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;
  }
}
