/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}
/* Navbar Base */
.internetgraph-navbar {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Container */
.internetgraph-navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.internetgraph-navbar .logo img {
  height: 50px;
  margin-bottom: 10px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00cc88; /* Not blue! */
  transition: width 0.3s;
}

.nav-links li a:hover::before {
  width: 100%;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #222;
  position: absolute;
  right: 20px;
  top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .internetgraph-navbar .container {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  .nav-links.active {
    display: flex;
  }
}
.call-btn {
    background-color: #00cc88;
    color: #fff !important;
/*    border-radius: 20px;*/
    padding: 8px 18px;
    transition: 0.3s ease;
}
.internetgraph-banner {
  background: radial-gradient(circle at top left, #e3fdfd, #ffffff);
  padding: 130px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 5px solid #00cc88;
}

.banner-content h1 {
  font-size: 44px;
  color: #1a1a1a;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.3;
}

.banner-content p {
  font-size: 19px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.banner-btn {
  display: inline-block;
  background-color: #00cc88;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 204, 136, 0.3);
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: #009966;
  transform: translateY(-2px);
}

/* Decorative Elements */
.animated-shapes span {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.circle {
  width: 120px;
  height: 120px;
  background: #00cc88;
  border-radius: 50%;
  top: 50px;
  left: -60px;
}

.square {
  width: 80px;
  height: 80px;
  background: #ffbb33;
  top: 30%;
  right: -40px;
  transform: rotate(15deg);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #ff4444;
  bottom: -30px;
  left: 40%;
}

.hexagon {
  width: 100px;
  height: 55px;
  background: #3399ff;
  position: absolute;
  top: 10%;
  left: 80%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}


.ig-who-we-are {
  position: relative;
  background: linear-gradient(135deg, #f2f2f2, #e6ffe6);
  padding: 110px 20px;
  overflow: hidden;
}

.ig-who-we-are .container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.who-text {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.sub-heading {
  display: inline-block;
  color: #00cc88;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.who-text h2 {
  font-size: 40px;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 20px;
}

.who-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 30px;
}

.highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.highlights li {
  font-size: 17px;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.highlights i {
  color: #00cc88;
  margin-right: 10px;
}

.btn-discover {
  display: inline-block;
  padding: 14px 36px;
  background: #00cc88;
  color: #fff;
/*  border-radius: 40px;*/
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 204, 136, 0.3);
  transition: all 0.3s ease;
}

.btn-discover:hover {
  background: #009f66;
  box-shadow: 0 6px 14px rgba(0, 204, 136, 0.4);
}

.floating-elements .circle-shape,
.floating-elements .square-shape,
.floating-elements .hexagon-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.circle-shape {
  width: 100px;
  height: 100px;
  background: #00cc88;
  border-radius: 50%;
  top: 10%;
  left: 6%;
}

.square-shape {
  width: 80px;
  height: 80px;
  background: #00cc88;
  bottom: 20%;
  right: 6%;
  transform: rotate(45deg);
}

.hexagon-shape {
  width: 100px;
  height: 55px;
  background-color: #00cc88;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  .who-text h2 {
    font-size: 28px;
  }

  .who-text p {
    font-size: 16px;
  }
}
.ig-services-zigzag {
  background: #fff;
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.section-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-content.left {
  flex-direction: row;
}

.service-content.right {
  flex-direction: row-reverse;
  text-align: right;
}

.service-content .icon {
  font-size: 40px;
  color: #00cc88;
  flex-shrink: 0;
}

.service-content .text h4 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content .text p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-content,
  .service-content.right,
  .service-content.left {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start;
  }

  .service-content .icon {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .service-content .text h4 {
    font-size: 20px;
  }
}
.ig-cta-unique {
  background: linear-gradient(135deg, #00cc88 50%, #f9f9f9 50%);
  padding: 100px 20px;
  color: #000;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-text {
  flex: 1;
  min-width: 300px;
}

.cta-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text p {
  font-size: 18px;
  color: #fff;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-glow-btn {
  display: inline-block;
  background: #fff;
  color: #00cc88;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 204, 136, 0.6);
  transition: all 0.3s ease;
}

.cta-glow-btn:hover {
  background: #00e68a;
  color: #000;
  box-shadow: 0 0 30px rgba(0, 204, 136, 0.8);
}

.cta-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.cta-image img {
  max-width: 300px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .cta-text h2,
  .cta-text p {
    color: #000;
  }

  .cta-image img {
    max-width: 220px;
  }
}

.ig-features-timeline {
  background: #fff;
  padding: 100px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #00cc88;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item.left .content::after,
.timeline-item.right .content::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: #00cc88;
  border-radius: 50%;
}

.timeline-item.left .content::after {
  right: -50px;
}

.timeline-item.right .content::after {
  left: -50px;
}

.timeline-item h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.timeline-item i {
  margin-right: 10px;
  color: #00cc88;
}

.timeline-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item .content::after {
    left: -32px;
  }
}

.ig-plans-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.ig-plans-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.plans-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan-box {
  background: #f7f7f7;
  padding: 40px 30px;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.plan-box:hover {
  transform: translateY(-10px);
}

.plan-box h4 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #00cc88;
  margin: 20px 0;
}

.price span {
  font-size: 18px;
  color: #666;
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan-box ul li {
  font-size: 16px;
  color: #444;
  margin: 8px 0;
}

.btn-plan {
  background-color: #00cc88;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.btn-plan:hover {
  background-color: #00cc7a;
}

.popular {
  background: #e6fff4;
  border: 2px solid #00cc88;
}

.popular .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00cc88;
  color: #000;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.ig-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.ig-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.ig-footer .footer-logo img {
  max-width: 150px;
}

.ig-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ig-footer .footer-links ul li {
  margin: 8px 0;
}

.ig-footer .footer-links ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ig-footer .footer-links ul li a:hover {
  color: #00cc88;
}

.ig-footer .footer-contact p {
  font-size: 16px;
}

.ig-footer .footer-contact a {
  color: #00cc88;
  text-decoration: none;
  font-weight: bold;
}

.ig-footer .footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .ig-footer .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .ig-footer .footer-logo img {
    max-width: 120px;
  }

  .ig-footer .footer-links ul {
    text-align: center;
    margin-top: 20px;
  }

  .ig-footer .footer-contact p {
    margin-top: 20px;
  }

  .ig-footer .footer-bottom {
    margin-top: 20px;
  }
}

/* Small Mobile View */
@media (max-width: 480px) {
  .ig-footer .footer-content {
    padding: 20px;
  }

  .ig-footer .footer-logo img {
    max-width: 100px;
  }

  .ig-footer .footer-links ul li a {
    font-size: 14px;
  }

  .ig-footer .footer-contact p {
    font-size: 14px;
  }
}
.contact-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form .form-group label {
  font-size: 16px;
  color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 8px;
}

.contact-form .form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .submit-btn {
  background-color: #00cc88;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.contact-form .submit-btn:hover {
  background-color: #009e80;
}

.contact-info {
  margin-top: 60px;
  text-align: left;
  font-size: 18px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 10px 0;
}

.contact-info a {
  color: #00cc88;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-form {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-info {
    text-align: center;
  }
}

.ig-switch-story {
  background: #f9f9f9;
  padding: 100px 20px;
  overflow-x: hidden;
}

.ig-switch-story h2 {
  text-align: center;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 50px;
  font-weight: 700;
}

.switch-timeline {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.step {
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  flex-shrink: 0;
  text-align: center;
}

.step .icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .switch-timeline {
    gap: 20px;
  }

  .step {
    min-width: 240px;
    padding: 25px;
  }

  .step .icon img {
    width: 50px;
    height: 50px;
  }
}
