/* Reset & base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f5f7fa;
    color: #0a0e2d;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: #feb200;
    text-decoration: none;
}
a {
    color: #feb200;
    text-decoration: none;
  }
  a:hover, .menu a.active {
    color: #e80054;
  }
  
a:hover {
    color: #e80054;
}

h1, h2, h3 {
    color: #042457;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

/* Navbar */
/* Navbar base */
.navbar {
    background: #042457;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #feb200;
    text-decoration: none;
    cursor: pointer;
}

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    margin-left: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #feb200;
}

/* Hamburger icon - hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #feb200;
    margin-bottom: 5px;
    border-radius: 2px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #042457;
        position: absolute;
        top: 56px; /* height of navbar */
        left: 0;
        padding: 1rem 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 999;
    }

    .menu a {
        margin: 1rem 0;
        margin-left: 2rem;
    }

    .menu.active {
        display: flex;
    }
}


/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 36, 87, 0.7);
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 900px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #feb200;
    color: #042457;
    box-shadow: 0 4px 15px rgba(254, 178, 0, 0.5);
}

.btn-primary:hover {
    background: #e80054;
    color: white;
    box-shadow: 0 4px 20px rgba(232, 0, 84, 0.7);
}

/* Features Section */
.features-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 15px rgb(4 36 87 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(232 0 84 / 0.3);
}

.feature-card img {
    max-width: 80px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.7rem;
    color: #042457;
}

.feature-card p {
    color: #0a0e2d;
}

/* About Section */
.page-header {
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    background: #f9fafb;
}

.about-content {
    max-width: 900px;
    margin: 2rem auto 5rem auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.about-content img {
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(4, 36, 87, 0.15);
}

.about-text {
    max-width: 520px;
    color: #0a0e2d;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-form-section {
    max-width: 900px;
    margin: 3rem auto 5rem auto;
    padding: 0 1rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    color: #042457;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #feb200;
}

.btn {
    align-self: flex-start;
}

/* Contact Info */
.contact-info {
    flex: 1 1 300px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgb(4 36 87 / 0.1);
    color: #042457;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: #042457;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-nav a {
    margin: 0 1rem;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #feb200;
}

/* Responsive */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-section .platform-feature {
        width: 45%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-section {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .menu a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
    }

    .platform-section .platform-feature {
        width: 100%;
    }
}
/* Reset and basics */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background: #f4f7fb;
    color: #0a0e2d;
    line-height: 1.6;
}
a {
    color: #00bcd4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* Navbar */
.navbar {
    background: #042457;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    z-index: 999;
}
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}
.menu a {
    color: white;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.menu a:hover, .menu a.active {
    color: #feb200;
}
/* Hero Section */
.hero-section {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4,36,87,0.75);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.btn {
    background: #feb200;
    color: #042457;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    border-radius: 40px;
    transition: background 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    background: #e59e00;
    color: #fff;
}
/* Features Section */
.features-section {
    padding: 4rem 3rem;
    background: white;
    text-align: center;
}
.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #042457;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    background: #e8f2fc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 10px rgb(4 36 87 / 0.15);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
}
.feature-card img {
    width: 60px;
    margin-bottom: 1rem;
}
.feature-card h3 {
    color: #042457;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #0a0e2d;
    font-weight: 500;
}
/* How It Works Section */
.how-it-works-section {
    background: #042457;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
}
.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}
.hiw-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}
.step {
    background: #00bcd4;
    flex: 1 1 200px;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 12px rgb(0 188 212 / 0.35);
    transition: background 0.3s ease;
}
.step:hover {
    background: #028ca6;
}
.step-number {
    background: #feb200;
    color: #042457;
    font-weight: 800;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    user-select: none;
}
.step h3 {
    margin-bottom: 1rem;
}
.step p {
    font-weight: 500;
}
/* Clients Section */
.clients-section {
    padding: 3rem 1rem;
    background: white;
    text-align: center;
}
.clients-section h2 {
    font-weight: 700;
    color: #042457;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.clients-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.clients-logos img {
    max-height: 60px;
    filter: grayscale(60%);
    transition: filter 0.3s ease;
    cursor: pointer;
}
.clients-logos img:hover {
    filter: grayscale(0%);
}
/* Footer */
footer {
    background: #042457;
    color: white;
    padding: 2rem 3rem;
    text-align: center;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-nav {
    margin-top: 1rem;
}
.footer-nav a {
    margin: 0 0.8rem;
    color: #feb200;
    font-weight: 600;
}
.footer-nav a:hover {
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .how-it-works-section .hiw-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .menu {
        display: none; /* You can add mobile hamburger menu later */
    }
}
@media(max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background: #042457;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 250px;
    text-align: left;
}

.footer-section h4 {
    color: #feb200;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: white;
    margin: 0.4rem 0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #feb200;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #ccc;
}

/* B2B Section */
.b2b-section {
    background: #f1f6fc;
    padding: 4rem 2rem;
    text-align: center;
}

.b2b-section h2 {
    color: #042457;
    margin-bottom: 1rem;
}

.b2b-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #0a0e2d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.b2b-section .btn {
    background-color: #e80054;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.b2b-section .btn:hover {
    background-color: #c10046;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }
}

.solutions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #042457;
}

.solution-card p {
    padding: 0 1rem 1.5rem;
    color: #444;
    font-size: 0.95rem;
}

.page-header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background-color: #f9fafb;
  color: #042457;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.platform-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1rem 4rem;
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
}

.platform-feature {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  color: #042457;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 8px rgb(4 36 87 / 0.1);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  background-color: #f4f8fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.platform-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgb(4 36 87 / 0.2);
}

.platform-feature img {
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 1px rgba(4,36,87,0.3));
}

.platform-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.platform-feature p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .platform-details {
    flex-direction: column;
    align-items: center;
  }
  .platform-feature {
    max-width: 100%;
    flex: none;
  }
}
