@font-face {
    font-family: 'geowf3';
    src: url('/fonts/geo-wf-3.woff2') format('woff2'),
         url('/fonts/geo-wf-3.woff2') format('woff'),
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}
@font-face {
    font-family: 'geowf4';
    src: url('/fonts/geo-wf-4.woff2') format('woff2'),
         url('/fonts/geo-wf-4.woff2') format('woff'),
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

@font-face {
    font-family: 'geowf7';
    src: url('/fonts/geo-wf-7.woff2') format('woff2'),
         url('/fonts/geo-wf-7.woff2') format('woff'),
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
}


.centeralign{text-align:center;}

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

/* Navigation */
.navbar {
  /* position: fixed; */
  top: 0;
  width: 100%;
  background: #fbfbfb;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  justify-content: space-between;
  text-align: center;
  padding: 1rem 20px;
}

.nav-brand h2 {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link.cta-nav {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link.cta-nav:hover {
  background: #1d4ed8;
  color: white;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #374151;
  margin: 3px 0;
  transition: 0.3s;
}

.logowrap{
    
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.hero {
  padding: 50px 0 50px;
  background: url(/images/growthbannerbg.png) no-repeat;
  background-size: cover;
  min-height: 65vh;
  display: flex;
  align-items: center;
}
/*
.hero-content {
  display: block; 
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
*/



.hero-content {
  display: block; 
  align-items: center;
  color: #fff;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: geowf4;
}

.hero-title-blue {
  color: cornflowerblue;
}

.hero-subtitle{
  font-size: 3rem;
  color: #929697;
  margin-bottom: 2rem;
  line-height: 1.9;
  font-family: geowf4;

}

.hero-desc{
  color: #929697;
font-size: 1.7rem;

}

/*
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
*/
.hero-cta-wrap{
border: 1px solid #666;
    width: fit-content;
    margin: auto;
    border-radius: 10px;
}
.hero-cta a{
background-color: cornflowerblue !important;    
color: #fff !important;  
border: 5px solid #fff;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background-color: #ffcc00 !important
}

.btn-primary {
  background-color: #ffcc00 !important
  color: white;
}



.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: #ffcc00 !important
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Who We Help Section */
.who-we-help {
  padding: 80px 0;
  background: white;
  display:none;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.help-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.help-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.help-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.3rem;
}

.service-card {
  background: #f1f5f9;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.service-card li strong {
  color: #2563eb;
  font-weight: 600;
}



/* Traffic Channels Section */
.traffic-channels {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.channel-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.channel-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.channel-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.channel-card p {
  color: #64748b;
  line-height: 1.6;
}


/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #2563eb;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: #2563eb;
}

.cta-section .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-card ul {
  list-style: none;
}

.contact-card li {
  margin-bottom: 0.75rem;
  color: #64748b;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #60a5fa;
}

.footer-brand p {
  color: #94a3b8;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-column a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    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: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }
/*
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
*/
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.7rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

.testimonial{
margin-bottom:-45px;    
}

.testimonial .container{
    
    display: flex;
    align-items: center;
    background-color: #002c66;
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    
}
.testimonial img{
    width: 150px;
    height:150px;
    border-radius: 50%;
    margin:30px;
    border: 3px solid #fff;
    
}

.testimonial p{
font-size: 1.5em;
padding: 30px;
    
}

.case-study .container{
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0px 0px 10px 10px;
    margin-top: 2rem;
    margin-bottom:3rem;
}
.case-study form{
    display:block;
}

.case-study form input{
        padding: 11px;
    border-radius: 5px;
    width: 70%;
}
 

.case-study ul li:before {
  content: '\2713';
  display: inline-block;
  color: blue;
  padding: 0 6px 0 0;
}

.case-study ul li {
  list-style-type: none;
    font-size:1.2em;
    line-height: 2em;
    
}




@media (max-width: 480px) {
    
    section{
        padding-top:50px !important;
    }
    section.testimonial{
        padding-top:0px !important;
    }
    
    .case-study form input {
        width: 100%;
        margin-bottom:10px;
    }
    .case-study ul li {
        font-size:1em;
    }
    
    .testimonial .container{
    
        display: block;
    }   
    
    .testimonialhead{
        text-align: center;
    }
    .testimonialhead img{
        margin-bottom:0px;
    }    
    .testimonialtext{
        text-align: center;
        font-size:12px;
    }
    .hero{
        min-height:1vh;
        background-size:cover;
    }
  .logowrap {
    margin-bottom:20px;
  }  
  .logowrap img {
    width:150px;
    height:auto;
  }
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom:10px;
  }
    .hero-desc {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .service-card,
  .help-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

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

.hero-content,
.service-card,
.help-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}