* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
    background: #5ec5ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url(images/herobackground.png);
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    padding: 40px;
    gap: 30px;
}

/* Left Text */
.hero-left h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
}

/* Center Image */
.hero-center img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: auto;
}

/* Right Text */
.hero-right h1 {
    color: #fff;
    font-size: 64px;
    margin-bottom: 10px;
}

.hero-right p {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
}

/* Animation Base */
.animate-left,
.animate-right,
.animate-top {
    opacity: 0;
    transition: all 1s ease;
}

/* Initial Positions */
.animate-left {
    transform: translateX(-100px);
}

.animate-right {
    transform: translateX(100px);
}

.animate-top {
    transform: translateY(-100px);
}

/* Active Animation */
.animate-show {
    opacity: 1;
    transform: translate(0, 0);
}



.community-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Headings */
.section-title {
    font-size: 44px;
    color: #1588ff;
    font-weight: 700;
}

.section-subtitle {
    font-size: 20px;
    margin-top: 10px;
    color: #000;
}
.logo a{
  text-decoration: none;
}
.logo a h1{
  color: #1588ff;
}

/* Cards */
.community-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.community-card {
    /* background: linear-gradient(135deg, #6fd0ff, #2f9bff); */
    border-radius: 28px;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-card img {
    width: 100%;
    display: block;
}

/* Hover */
.community-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Partner Logos */
.partner-title {
    font-size: 40px;
    color: #1588ff;
    margin: 80px 0 40px;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.brand-logos img {
    max-height: 60px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.85; */
    transition: 0.3s;
}

.brand-logos img:hover {
    /* filter: grayscale(0); */
    opacity: 1;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 900px) {
    .community-cards {
        grid-template-columns: 1fr;
    }
}

/* Logo Marquee */
.logo-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.logo-track img {
    max-height: 60px;
    margin: 0 40px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.85; */
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Pause on hover (optional) */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #6fd0ff, #2f9bff);
    padding: 100px 20px 160px;
    overflow: hidden;
}

/* Inner Layout */
.cta-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Text */
.cta-content h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #eaf6ff;
    max-width: 520px;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: #2f9bff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Image */
.cta-image img {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    display: block;
}

/* Waves */
.cta-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.cta-waves img {
    width: 100%;
    display: block;
}


.reach-section {
    padding: 20px 20px 100px;
    background: #fff;
    text-align: center;
}

.reach-container {
    max-width: 1200px;
    margin: auto;
}

.reach-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #1f2d3d;
}

/* Items */
.reach-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.reach-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #000;
}

.reach-item p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
}

/* Icon */
.reach-icon {
    width: 100px;
    height: 100px;
    background: #2f9bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.reach-icon img {
    width: 110px;
}

.network-section {
  padding: 90px 0;
  background: #ffffff;
}

.network-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

.network-content {
  flex: 1;
  color: #1f2b4d;
}

.network-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1588ff;
  margin-bottom: 25px;
}

.network-bold {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.network-highlight {
  font-size: 18px;
  font-weight: 600;
  /* color: #1588ff; */
  line-height: 1.6;
  margin-bottom: 30px;
}

.network-growth {
  font-size: 18px;
  font-weight: 600;
  /* color: #1588ff; */
  margin-bottom: 40px;
}

.network-cta {
  font-size: 34px;
  font-weight: 600;
  color: #1588ff;
}

.network-cta span {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000;
}

.network-image {
  flex: 1;
  text-align: right;
}

.network-image img {
  max-width: 100%;
  height: auto;
}

.site-footer {
  background: linear-gradient(90deg, #0b8cff, #59c3ff);
  padding: 70px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0 30px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 18px;
  background: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-link a {
  font-weight: 600;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-text i,
.footer-contact i {
  margin-right: 8px;
}

.footer-contact {
  margin-top: 12px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0b8cff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social:hover {
  transform: translateY(-3px);
}

.newsletter-label {
  display: block;
  margin-bottom: 8px;
}

.newsletter-input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
}

.newsletter-btn {
  background: #ffd55a;
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-btn i {
  margin-right: 6px;
}


.site-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
}

.nav ul li a:hover {
  color: #0b8cff;
}

.btn-link a {
  background: #0b8cff;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}








/* Responsive */
@media (max-width: 768px) {
    .hero{
        min-height: unset;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right h1 {
        font-size: 48px;
    }
    .reach-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image img {
        margin: 40px auto 0;
    }

    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .community-section{
        padding: 30px 20px;
    }
    .section-title{
        font-size: 30px;
    }
    .community-cards {
        grid-template-columns: 1fr;
        gap:20px;
        margin-top: 30px;
    }
    .community-card img{
        width:70%;
        margin: auto;
    }
    .community-card{
        padding: 0;
    }
    .partner-title{
        font-size: 30px;
    }
    .cta-content h2{
        font-size: 30px;
    }
    .reach-section{
        padding: 0px 20px 30px;
    }
    .reach-title{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .network-section{
        padding: 30px 0;
    }
    .network-content{
        text-align: start;
    }
    .network-content h2{
        font-size: 30px;
    }
    .network-bold{
        font-size: 16px;
    }
    .network-highlight{
        font-size: 14px;
    }
    .network-growth{
        font-size: 14px;
    }
    .network-container {
    flex-direction: column;
    text-align: center;
  }
  .network-image img{
    max-width: 50%;
  }

  .network-image {
    text-align: center;
  }

  .network-cta span {
    display: inline;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .nav.active {
    max-height: 300px;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: start;
  }

  .btn-link a {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

