 /* :root {
      --primary: #4f46e5;
      --primary-light: #6366f1;
      --secondary: #f43f5e;
      --dark: #1e293b;
      --light: #f8fafc;
      --gray: #94a3b8;
  } */


:root {
  --primary: #004D80;       /* Deep Blue */
  --primary-light: #1790C8; /* Bright Blue */
  --secondary: #4CAF50;     /* Leaf Green */
  --dark: #002B5B;          /* Dark Navy */
  --light: #F2F2F2;         /* Background */
  --gray: #94A3B8;          /* Bright Green (as accent gray) */
}


html {
    scroll-behavior: smooth;
}
  

  body {
      font-family: "Inter", sans-serif;
      color: var(--dark);
      line-height: 1.6;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
  }

  .navbar {
        padding: 1rem 0;
        background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar-scrolled {
      background: #ffffff;
      /* or any color you want */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      width: 200px;
  }

  .navbar-brand span:first-child {
      color: var(--primary);
  }

  .navbar-brand span:last-child {
      color: var(--secondary);
  }

  .nav-link {
      font-weight: 500;
      padding: 0.5rem 1rem;
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
      padding: 4rem 0 5rem;
      position: relative;
      overflow: hidden;
  }

  .hero-title {
      font-size: 3rem;
      line-height: 1.2;
  }

  .hero-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      max-width: 600px;
  }

  .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      padding: 0.75rem 1.5rem;
      font-weight: 600;
  }

  .btn-primary:hover {
      background-color: var(--primary-light);
      border-color: var(--primary-light);
  }

  .btn-outline-primary {
      border-color: var(--primary);
      color: var(--primary);
      padding: 0.75rem 1.5rem;
      font-weight: 600;
  }

  .btn-outline-primary:hover {
      background-color: var(--primary);
      color: white;
  }

  .hero-image {
      border-radius: 12px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      transform: perspective(1000px) rotateY(-10deg);
      transition: transform 0.3s ease;
  }

  .hero-image:hover {
      transform: perspective(1000px) rotateY(0deg);
  }

  /* Human Traffic Section */
  .human-traffic {
      padding: 6rem 0;
      background-color: white;
  }

  /* Targeted Traffic Section */
  .targeted-traffic {
      padding: 6rem 0;
      background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  }

  /* CTR Improvement Section */
  .ctr-improvement {
      padding: 6rem 0;
      background-color: white;
  }

  .section-title {
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
  }

  .section-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 3rem;
      text-align: center;
  }

  .feature-card {
      padding: 2rem;
      border-radius: 12px;
      background-color: #f8fafc;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background-color: rgba(79, 70, 229, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
  }

  .feature-icon i {
      color: var(--primary);
      font-size: 1.5rem;
  }

  @media (max-width: 992px) {

      .hero-title,
      .section-title {
          font-size: 2.5rem;
      }

      .hero-image {
          margin-top: 3rem;
          transform: none;
      }
  }

  @media (max-width: 768px) {

      .hero-title,
      .section-title {
          font-size: 2rem;
      }

      .hero-subtitle,
      .section-subtitle {
          font-size: 1.1rem;
      }

      .human-traffic,
      .targeted-traffic,
      .ctr-improvement,
      .hero {
          padding: 4rem 0;
      }
  }

  .globe-badge {
      display: inline-flex;
      align-items: center;
      background-color: rgba(79, 70, 229, 0.1);
      color: var(--primary);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.5rem;
  }

  .globe-badge i {
      margin-right: 0.5rem;
  }

  .country-flag {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 0.5rem;
  }

  .country-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 1.5rem;
  }

  .country-item {
      display: flex;
      align-items: center;
      background-color: #f8fafc;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
  }

  .google-badge {
      display: inline-flex;
      align-items: center;
      background-color: rgba(66, 133, 244, 0.1);
      color: var(--primary);
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.5rem;
  }

  .google-badge i {
      margin-right: 0.75rem;
      color: var(--primary);
  }

  /* Footer Styles */
  .footer {
      background-color: var(--dark);
      color: white;
      padding: 5rem 0 2rem;
  }

  .footer-title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      width: 200px;
  }

  .footer-title span {
      color: var(--secondary);
  }

  .footer-links h5 {
      color: white;
      margin-bottom: 1.5rem;
      font-weight: 600;
  }

  .footer-links ul {
      list-style: none;
      padding-left: 0;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--primary-light);
  }

  .footer-contact-info {
      color: var(--gray);
  }

  .footer-contact-info i {
      color: var(--primary);
      width: 20px;
      margin-right: 10px;
  }

  .footer-contact-item {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
  }

  .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: var(--dark-light);
      color: white;
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s ease;
  }

  .social-icons a:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
  }

  .newsletter-input:focus {
    box-shadow: none;
    border-color: none;
  }
  .newsletter-input {
      border: none;
      color: white;
  }

  .newsletter-input::placeholder {
      color: var(--gray);
  }

  .newsletter-btn {
      background-color: var(--primary);
      color: white;
      font-weight: 500;
      border: none;
  }

  .newsletter-btn:hover {
      background-color: var(--primary-light);
  }

  .footer-divider {
      border-color: var(--dark-light);
      opacity: 0.2;
      margin: 3rem 0;
  }

  .footer-bottom {
      color: var(--gray);
      font-size: 0.9rem;
  }

  .footer-bottom-links a {
      color: var(--gray);
      text-decoration: none;
      margin-left: 1rem;
      transition: color 0.3s ease;
  }

  .footer-bottom-links a:hover {
      color: var(--primary-light);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .footer-links {
          margin-bottom: 2rem;
      }

      .footer-bottom-links a {
          margin-left: 0;
          margin-right: 1rem;
      }
  }

  /* Testimonial Section */
  .testimonial-section {
      padding: 6rem 0;
      background-color: #f8fafc;
  }

  .testimonial-card {
      background: white;
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
      margin: 1rem;
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.1);
  }

  .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--dark);
      margin-bottom: 2rem;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
  }

  .testimonial-author .w60px {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 1rem;
  }

  .testimonial-author .w60px img{
      border-radius: 50%;
  }

  .client-name {
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--dark);
  }

  .client-position {
      color: var(--gray);
      font-size: 0.9rem;
  }

  .rating {
      color: gold;
      margin-top: 0.5rem;
      font-size: 0.9rem;
  }

  /* Owl Carousel Custom Styles */
  /* .owl-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .owl-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white !important;
            color: var(--primary) !important;
            font-size: 1.5rem !important;
            margin: 0 10px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .owl-nav button:hover {
            background-color: var(--primary) !important;
            color: white !important;
        }
        
        .owl-dots {
            display: none;
        } */

  