* {
    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: #000;
    overflow-x: hidden;
    padding-top: 75px;
}

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

/* ========================= */
/* NAVBAR STYLES */
/* ========================= */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    margin-top: 10px;
    height: 30px;
    width: auto;
    transition: 0.3s ease-in-out;
}

.nav-logo img:hover {
    transform: scale(1.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-item {
    position: relative;
}

#home {
    background: none;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #349dd1 0%, #2e21bd 100%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4280d1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

/* Enforce consistent navbar logo on tablets / iPad sizes */
@media (min-width: 760px) and (max-width: 1024px),
       (max-width: 768px) {
  .nav-container {
    padding: 0 20px !important;
    height: 75px !important;
    align-items: center !important;
  }

  .nav-logo,
  .nav-logo a { display: flex; align-items: center; }

  .nav-logo img {
    height: 30px !important;
    width: auto !important;
    margin-top: 10px !important;
    display: block !important;
    transform: none !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

:root {
    --white: #ffffff;
    --blue-dark: #05478a;
    --blue-accent: #048cfc;
    --blue-light: #5694de;
    --gray-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #657e98;
    --border-radius: 16px; /* Increased for modern look */
    --shadow: 0 15px 40px rgba(4, 140, 252, 0.12); /* Softer, larger shadow */
    --spacing-sm: 1.5rem; /* Consistent small spacing */
    --spacing-md: 3rem; /* Medium spacing */
    --spacing-lg: 4rem; /* Large spacing for sections */
}



/* Updated Hero Section (Full Width) */
.hero-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    min-height: calc(100vh - 75px);
    margin-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-right {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}



.hero-heading {
    font-size: 3.5rem; /* Larger heading */
    color: var(--blue-dark);
    margin-bottom: 1.5rem; /* More space */
    line-height: 1.2;
    font-weight: 800; /* Bolder weight */
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subheading {
    font-size: 1.25rem; /* Slightly larger */
    color: var(--text-muted);
    margin-bottom: 3rem; /* More space below */
    line-height: 1.8; /* Better line height */
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* New Hero Features Grid - 4 Cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 2rem; /* Balanced spacing */
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(4, 140, 252, 0.1);
    border: 1px solid rgba(4, 140, 252, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 140, 252, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--blue-accent);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 10px rgba(4, 140, 252, 0.2);
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Information Section (Full Width) */
.info-section {
    padding: var(--spacing-lg) 0; /* More padding */
    background: var(--white);
    width: 100%;
}

.info-container {
    width: 100%;
    margin: 0;
    padding: 0 var(--spacing-md);
    max-width: none;
}

.info-header {
    text-align: center;
    margin-bottom: 5rem; /* More space */
    padding: 0 2rem;
}

.info-heading {
    font-size: 3.2rem; /* Larger */
    color: var(--blue-dark);
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.info-heading::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
    border-radius: 2px;
}

.info-subtext {
    font-size: 1.3rem; /* Larger */
    color: var(--text-muted);
    max-width: none;
    margin: 0 auto;
    line-height: 1.9; /* Better line height */
    padding: 0 2rem;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Wider cards */
    gap: 3rem; /* More gap */
    margin-bottom: 5rem; /* More space */
    padding: 0 2rem;
}

.info-card {
    text-align: center;
    padding: 3rem 2.5rem; /* More internal padding */
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow);
    border: 1px solid rgba(4, 140, 252, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(4, 140, 252, 0.2);
}

.icon-large {
    font-size: 4rem; /* Larger icons */
    color: var(--blue-accent);
    margin-bottom: 2rem; /* More space */
    display: block;
    text-shadow: 0 2px 10px rgba(4, 140, 252, 0.3);
}

.info-card h3 {
    font-size: 1.8rem; /* Larger */
    color: var(--blue-dark);
    margin-bottom: 1.5rem; /* More space */
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: var(--blue-accent);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8; /* Better line height */
    font-size: 1.1rem;
}

.info-benefits {
    width: 100%;
    margin: 0 auto 6rem; /* More space below */
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 4rem 3rem; /* More padding */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(4, 140, 252, 0.1);
}

.info-benefits h3 {
    font-size: 2.5rem; /* Larger */
    color: var(--blue-dark);
    margin-bottom: 2.5rem; /* More space */
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Wider items */
    gap: 2rem; /* More gap */
    padding: 0 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; /* More space between icon and text */
    color: var(--text-muted);
    line-height: 1.8;
    padding: var(--spacing-sm); /* Add padding to each item */
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--blue-light);
}

.benefits-list li:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(4, 140, 252, 0.1);
}

.benefits-list i {
    color: var(--blue-accent);
    font-size: 1.4rem; /* Larger icon */
    margin-top: 0.3rem;
    flex-shrink: 0;
    min-width: 20px;
}

/* Updated How AEPS Works Section - Left Aligned, Simple Heading */
.aeps-works-section {
    text-align: left; /* Left alignment for entire section */
    margin-top: 4rem; /* More space from previous section */
    padding: 0 2rem;
    max-width: none;
}

.works-heading {
    font-size: 2.5rem; /* Clean, simple size */
    color: var(--blue-dark);
    margin-bottom: 2.5rem; /* Ample space below heading */
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: none; /* No background */
    text-align: left; /* Left aligned heading */
    line-height: 1.2;
    padding: 0; /* No padding for simple look */
}

.works-heading::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0; /* Starts from left */
    width: 80px;
    height: 3px;
    background: var(--blue-accent); /* Simple solid line, no gradient */
    border-radius: 2px;
    transition: width 0.3s ease;
}

.process-list {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 3rem; /* More padding */
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    list-style-position: inside;
    width: 100%;
    max-width: none;
    box-shadow: var(--shadow);
    border: 1px solid rgba(4, 140, 252, 0.1);
    text-align: left; /* Ensure left alignment for list content */
    counter-reset: step-counter; /* Initialize counter */
}

.process-list li {
    font-size: 1.2rem; /* Larger text */
    color: var(--text-muted);
    margin-bottom: 1.5rem; /* More space between items */
    padding: 1.5rem; /* Padding for each item */
    border-left: none; /* Remove left border for clean look */
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-align: left; /* Left align each list item */
    list-style-type: none; /* Remove default numbering to control with ::before */
    counter-increment: step-counter; /* Custom numbering */
}

.process-list li::before {
    content: counter(step-counter) "."; /* Simple numbered prefix */
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background: var(--blue-accent);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1rem;
}

.process-list li strong {
    color: var(--blue-dark);
    margin-left: 3rem; /* Space after number */
    display: inline-block;
    min-width: 200px; /* Ensure bold text has space */
}

.process-list li:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(4, 140, 252, 0.1);
}

/* Features Section (Full Width) */
.features-section {
    padding: var(--spacing-lg) 0; /* More padding */
    /* background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-accent) 100%); */
    color: var(--blue-dark);
    width: 100%;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.features-container {
    width: 100%;
    margin: 0;
    padding: 0 var(--spacing-md);
    text-align: center;
    max-width: none;
}

.features-heading {
    font-size: 3.2rem; /* Larger */
    margin-bottom: 5rem; /* More space */
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0 2rem;
    position: relative;
}

.features-heading::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Wider cards */
    gap: 3rem; /* More gap */
    padding: 0 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem; /* More padding */
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px); /* Stronger blur */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.icon-medium {
    font-size: 3rem; /* Larger */
    margin-bottom: 2rem; /* More space */
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: block;
}

.feature-item h3 {
    font-size: 1.6rem; /* Larger */
    margin-bottom: 1.5rem; /* More space */
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--blue-dark);
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.8; /* Better line height */
    font-size: 1.1rem;
}




/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

/* Tablet and below */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 3rem;
  }

  .hero-subheading {
    font-size: 1.2rem;
  }

  .hero-container {
    padding: 0 2rem;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .info-heading {
    font-size: 2.5rem;
  }

  .features-heading {
    font-size: 2.5rem;
  }
}
/* ========================= */
/* FOOTER SECTION */
/* ========================= */
.footer {
    background: linear-gradient(135deg, #001f3f, #004b8d, #0074d9);
    padding: 40px 6% 25px;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-col {
    flex: 0 0 280px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
}

.footer-company {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 1rem;
    color: #b8d4ff;
    margin: 0;
}

.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #aee0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col ul li a {
    color: #e0ecff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: #00e1ff;
    transform: translateX(4px);
}

.bottom {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 15px;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-links a {
    color: #cde9ff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #00e1ff;
}

.bottom p {
    font-size: 0.8rem;
    color: #b8d4ff;
    margin-top: 8px;
}
.bottom {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 20px;
    width: 100%;
    display: block;
}

.bottom p {
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 8px;
    white-space: normal !important;
    overflow-wrap: break-word;
}

/* Footer Responsive */
/* Tablet: Adjust footer columns */
@media screen and (max-width: 1200px) {
    .footer-main {
        gap: 10px;
    }

    .footer-logo-col {
        flex: 0 0 240px;
        min-width: 220px;
    }

    .footer-columns {
        gap: 30px;
    }
}

/* Tablet layout (761px–1024px): logo fixed on left, three columns on right */
@media (min-width: 761px) and (max-width: 1024px) {
  .footer-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 20px;
  }

  .footer-logo-col {
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    grid-template-areas:
      "head navigation"
      "follow follow";
    width: 100%;
    justify-items: start;
    text-align: left;
    column-gap: 28px;
    row-gap: 24px;
  }

  .footer-columns .footer-col:nth-child(1) { grid-area: head; }
  .footer-columns .footer-col:nth-child(2) { grid-area: navigation; }
  .footer-columns .footer-col:nth-child(3) { grid-area: follow; margin-top: 4px; }
}

@media (max-width: 760px) {
    .footer {
        padding: 40px 5% 20px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-logo-col {
        align-items: center;
        flex: 1;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }

    .footer-col h3 {
        font-size: 0.85rem;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 35px 4% 18px;
    }

    .footer-logo {
        width: 120px;
    }

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

    .footer-links {
        gap: 10px;
    }

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

    .footer-bottom p {
        font-size: 0.75rem;
    }
}



/* Mobile Menu Responsive */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 75px;
    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: 24px 0;
    gap: 0;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 12px 0;
    padding: 0 24px;
  }

  .nav-link {
    font-size: 17px;
    display: block;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tablets (768px and below) */
@media (max-width: 760px) {
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }

  .nav-logo img {
    height: 28px;
    margin-top: 10px;
  }

  /* Hero section tablet */
  .hero-section {
    min-height: auto;
    padding: var(--spacing-md) 0;
    margin-top: 70px;
  }

  .hero-container {
    padding: 0 1.5rem;
  }

  .hero-right {
    text-align: center;
  }

  .hero-heading {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

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

  /* Info section mobile */
  .info-container {
    padding: 0 1.5rem;
  }

  .info-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .info-heading {
    font-size: 2rem;
  }

  .info-subtext {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .info-card h3 {
    font-size: 1.4rem;
  }

  .info-card p {
    font-size: 1rem;
  }

  .icon-large {
    font-size: 3rem;
  }

  /* Benefits mobile */
  .info-benefits {
    padding: 2.5rem 1.5rem;
    margin-bottom: 3rem;
  }

  .info-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .benefits-list li {
    padding: 1rem;
    gap: 1rem;
  }

  .benefits-list i {
    font-size: 1.2rem;
  }

  /* AEPS Works mobile */
  .aeps-works-section {
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .works-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .process-list {
    padding: 2rem 1.5rem;
  }

  .process-list li {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 3.5rem;
  }

  .process-list li::before {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
    left: 1rem;
    top: 1rem;
  }

  .process-list li strong {
    margin-left: 0;
    min-width: auto;
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Features section mobile */
  .features-section {
    padding: var(--spacing-md) 0;
  }

  .features-container {
    padding: 0 1.5rem;
  }

  .features-heading {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .feature-item {
    padding: 2rem 1.5rem;
  }

  .feature-item h3 {
    font-size: 1.3rem;
  }

  .feature-item p {
    font-size: 1rem;
  }

  .icon-medium {
    font-size: 2.5rem;
  }

  /* Footer mobile */
  .footer {
    padding: 40px 5% 20px;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-logo-col {
    align-items: center;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    height: 65px;
  }

  .nav-logo img {
    margin-top: 10px;
    height: 26px;
  }

  /* Hero section mobile */
  .hero-section {
    padding: var(--spacing-sm) 0;
    margin-top: 65px;
    min-height: auto;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

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

  .info-heading {
    font-size: 1.75rem;
  }

  .features-heading {
    font-size: 1.75rem;
  }

  .works-heading {
    font-size: 1.5rem;
  }

  .info-benefits h3 {
    font-size: 1.5rem;
  }
}
/* Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 12px;
        height: 60px;
    }

    .nav-logo img {
        height: 24px;
    }

    
}

/* Tablet navbar logo alignment (760px–1024px) */
@media (min-width: 760px) and (max-width: 1024px) {
  .nav-container { padding: 0 40px; height: 75px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 30px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Mid-range tablets/large phones (500px–760px) navbar logo alignment */
@media (min-width: 500px) and (max-width: 760px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Exact 600px tablet width tweak */
@media (width: 600px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}
/* Tablets (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo img {
        height: 28px;
        margin-top: 10px;
    }
}




/* Mobile: justify hero/intro and nearby paragraph text (keep headings centered) */
@media screen and (max-width: 480px) {
  /* Justify body text blocks */
  .hero-subheading,
  .hero-subheading p,
  .info-subtext,
  .hero-right p,
  .feature-card p,
  .info-card p,
  .hero-section p {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    line-height: 1.6 !important;
  }

  /* Keep hero heading centered */
  .hero-heading,
  .hero-heading h1 {
    text-align: center !important;
  }
}

/* Very small phones (320px) */
@media screen and (max-width: 320px) {
  .hero-subheading,
  .hero-subheading p,
  .info-subtext,
  .hero-right p,
  .feature-card p,
  .info-card p,
  .hero-section p {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    line-height: 1.5 !important;
  }

  .hero-heading,
  .hero-heading h1 {
    text-align: center !important;
  }

  /* Slightly reduce horizontal padding on very small screens */
  .hero-section,
  .info-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}



/* Mobile: justify only feature/info paragraph text (keep headings centered) */
@media screen and (max-width: 480px) {
  .feature-item p,
  .feature-card p,
  .info-card p,
  .features-container p,
  .features-section p,
  .timeline-content p,
  .hero-subheading,
  .hero-subheading p,
  .info-subtext {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    line-height: 1.6 !important;
  }

  /* Ensure headings remain centered */
  .features-heading,
  .feature-item h3,
  .info-heading,
  .hero-heading {
    text-align: center !important;
  }
}

/* Very small phones (320px) */
@media screen and (max-width: 320px) {
  .feature-item p,
  .feature-card p,
  .info-card p,
  .features-container p,
  .features-section p,
  .timeline-content p,
  .hero-subheading,
  .hero-subheading p,
  .info-subtext {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    line-height: 1.5 !important;
  }

  .features-heading,
  .feature-item h3,
  .info-heading,
  .hero-heading {
    text-align: center !important;
  }
}



