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

body {
  font-family: Arial, sans-serif;
 
}

/* Index Page */

/* Navbar */


.navbar {
  background: #460073;
 
  position: sticky;
  top: 0;
  z-index: 1000;
 
}

.navbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 100px;
  width: auto;
  
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a:hover {
  color: white;
  background: #ff7300;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links li a:hover::before {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #460073;
  border-radius: 0.75rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  z-index: 100;
 
 
  padding: 0.5rem 0;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0.5rem);
}

.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: flex;

  color: white;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background:#ff7300;
  color: white;
  padding-left: 1.75rem;
}

.btn-gradient {
 
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  animation: gradientMove 8s ease infinite;
  box-shadow: 0 4px 6px -1px rgba(255, 0, 0, 0.3), 0 2px 4px -1px rgba(255, 242, 1, 0.2);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3), 0 4px 6px -2px rgba(255, 251, 0, 0.2);
}

.btn-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gradient:hover::after {
  opacity: 1;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #460073;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    margin: 0.5rem 0 0;
    box-shadow: none;
    border: none;
  }
  
  .dropdown.open .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown.open .dropdown-icon {
    transform: rotate(180deg);
  }
}
/* Navbar- End */


/* ✅ Slider Styling */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}


.slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
 
 
}

.slide.active {
  
  
  z-index: 1;
  filter: brightness(0.8);
}
/* 
.overlay {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.overlay p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
} */

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
  
  .overlay h1 {
    font-size: 2.2rem;
  }
  
  .overlay p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }
  
  .overlay h1 {
    font-size: 1.8rem;
  }
  
  .overlay p {
    font-size: 1rem;
  }
}

/* Slider_End */



/* ✅ Counter Section */
.counter-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.counter-box {
  flex: 1 1 200px;
}

.counter-box h2 {
  font-size: 3rem;
  color: #388e3c;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1.1rem;
  color: #333;
}

@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 2.2rem;
  }
}
/* ✅ Counter Section End */
 








/*  ✅ Development Process Section  */
.process-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.process-grid {
  display: grid;
  gap: 20px;
  padding-top: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.process-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.process-card .icon {
  font-size: 2.5rem;
  color: #007aff;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 1.4rem;
  color: #007aff;
  margin-bottom: 5px;
}

.process-card h4 {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #222;
}

.process-card p {
  font-size: 0.95rem;
  color: #555;
}
/*  ✅ Development Process Section End */



/*  ✅ Industry Expertise Section  */
.industry-section {
  padding: 60px 40px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 14px;
  color: #444;
  letter-spacing: 2px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #333;
  font-weight: 400;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0077ff; /* default icon color */
}

.industry-card h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

/*  ✅ Industry Expertise Section End  */

/* Footer */
.main-footer {
  background: #460073;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #ff9800;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-box {
    flex: 1 1 100%;
  }
}

/* Footer End */

/* Index Page End */





/* Contact */

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.contact-form, .contact-info {
  flex: 1 1 350px;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
}

.contact-form h2 {
  color: #cc0000;
  font-size: 18px;
  margin-bottom: 20px;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form textarea {
  resize: vertical;
  height: 100px;
}

button {
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #e64a19;
}

.captcha img {
  margin: 10px 0;
  height: 50px;
}

.powered-by {
  font-size: 12px;
  margin-top: 10px;
}

.contact-info h3 {
  color: #cc0000;
  margin: 20px 0 10px;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
}
/* Contact - End */





/* Know_me Page */

.about-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-images {
  position: relative;
  flex: 1 1 45%;
}

.image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image1 {
  transform: rotate(-4deg);
  width: 100%;
  margin-bottom: 20px;
}

.image2 {
  transform: rotate(4deg);
  position: absolute;
  bottom: -20px;
  left: 60px;
  width: 80%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #1a1a1a;
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
}

.about-content {
  flex: 1 1 50%;
}

.about-content h5 {
  font-size: 14px;
  color: #111;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  background: #004d29;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-more-btn span {
  margin-left: 8px;
}

.read-more-btn:hover {
  background: #00703c;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .image2 {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  .image1 {
    transform: none;
  }
}

/* second Section  */
.freelancer-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.content-box {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #111;
  border: 1px solid #b2ff00;
  border-radius: 10px;
  padding: 30px;
}

.text-side {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
  color: white;
}

.text-side h2 {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.text-side .highlight {
  color: #b2ff00;
}

.text-side p {
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 8px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.email {
  background: #c9ff00;
  color: #000;
}

.email:hover {
  background: #a6db00;
}

.whatsapp {
  background: transparent;
  color: #c9ff00;
  border: 1px solid #c9ff00;
}

.whatsapp:hover {
  background: #c9ff00;
  color: #000;
}

.image-side {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 550px;
  text-align: center;
  margin-top: 30px;
}

.image-side img {
  width: 100%;
  max-width: 400px;
}

.badge {
  position: absolute;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  color: white;
  line-height: 1.3;
}

.badge-blue {
  background-color: #407bff;
  top: 20px;
  right: 20px;
}

.badge-yellow {
  background-color: #b2ff00;
  bottom: 20px;
  left: 20px;
  color: #000;
}

@media (max-width: 768px) {
  .content-box {
    flex-direction: column-reverse;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* second Section End */

/* Know_Me Section  */




/* Package Page */
/* Video Background */

#particles-js {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -2;
  top: 0;
  left: 0;
  background-color: #afcaee; /* Optional */
  color: #0077ff;
}



.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* Pricing Section */


.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
}

.plan {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff7300;
  color: white;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.plan-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  margin: 10px 0 15px;
}

.choose-btn {
  background-color: #ff7300;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 15px;
  cursor: pointer;
}

ul {
  list-style: none;
  text-align: left;
  margin-top: 15px;
  padding: 0;
}

ul li {
  padding: 6px 0;
  color: #444;
  font-size: 14px;
}

ul li i {
  color: green;
  margin-right: 8px;
}

.section-title {
  font-weight: bold;
  color: orangered;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}
/* Package Page End */

/* WEb_Development Page */
 header img {
      width: 100%;
      height: 30vh;
     
    }

    .section {
      max-width: 1100px;
      margin: 30px auto;
      padding: 20px;
    }

    .section h2 {
      font-size: 28px;
      color: #e26a2c;
      margin-bottom: 15px;
    }

    .section p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff5722;
      color: white;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 10px;
      animation: blink 1.2s infinite;
      cursor: pointer;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .tools {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .tool-card {
      flex: 1 1 250px;
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }

    .tool-card:hover {
      transform: translateY(-5px);
    }

    .tool-card img {
      width: 100%;
      height: 160px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .tool-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #333;
    }

    @media (max-width: 768px) {
      .tool-card img {
        height: 120px;
      }
    }
    /* Web Development Page-END */

    /* WEB DESIGNING PAGE */
 header img {
      width: 100%;
      height: 30vh;
     
    }

    .section {
      max-width: 1100px;
      margin: 30px auto;
      padding: 20px;
    }

    .section h2 {
      font-size: 28px;
      color: #e26a2c;
      margin-bottom: 15px;
    }

    .section p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff5722;
      color: white;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 10px;
      animation: blink 1.2s infinite;
      cursor: pointer;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .tools {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .tool-card {
      flex: 1 1 250px;
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }

    .tool-card:hover {
      transform: translateY(-5px);
    }

    .tool-card img {
      width: 100%;
      height: 160px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .tool-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #333;
    }

    @media (max-width: 768px) {
      .tool-card img {
        height: 120px;
      }
    }


    /* WEB DESIGNING PAGE END */

    /* WEB APPLICTIN  */
 header {
      position: relative;
     
    }

    header img {
      width: 100%;
      height: 35vh;
      object-fit: cover;
     
    }

    header h1 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 36px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
       margin-top: 20px;
    }

    .section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }

    .section h2 {
      font-size: 26px;
      color: #1a73e8;
      margin-bottom: 15px;
    }

    .section p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #1a73e8;
      color: white;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 10px;
      animation: blink 1.2s infinite;
      cursor: pointer;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .card {
      background: #f1f7ff;
      border-left: 4px solid #1a73e8;
      padding: 20px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .card:hover {
      background: #e3f0ff;
      transform: translateY(-5px);
    }

    .card h3 {
      color: #1a73e8;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card p {
      font-size: 14px;
      color: #444;
    }

    /* WEB APPLICTION PAGE END */

    /* SEO */
 .hero {
      height: 45vh;
      background: url('../image/seo-service.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideFadeIn 1.5s ease-in-out;
    }

    

    .hero h1 {
      position: relative;
      color: white;
      font-size: 36px;
      z-index: 1;
    }

    .content {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }

    .content h2 {
      color: #ff6600;
      font-size: 28px;
      margin-bottom: 15px;
    }

    .content p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #ff6600;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      margin: 20px 0;
      animation: pulse 1.4s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 30px;
    }

    .seo-box {
      flex: 1 1 300px;
      background: #fff;
      padding: 20px;
      border-left: 5px solid #ff6600;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .seo-box h3 {
      margin-bottom: 10px;
      font-size: 18px;
      color: #333;
    }

    .seo-box p {
      font-size: 14px;
      color: #555;
    }

    @media(max-width: 768px) {
      .hero h1 {
        font-size: 26px;
      }
    }
    /* SEO PAGE END  */

    /* Wordpress Page */

      .hero-section {
      height: 45vh;
      background: url('../image/wordpress-website.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideFadeIn 1.5s ease-in-out;
    }

    .hero-section h1 {
      color: #fff;
      font-size: 36px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    }

    @keyframes slideFadeIn {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .container_1 {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }

    .container_1 h2 {
      font-size: 28px;
      color: #00749c;
      margin-bottom: 20px;
    }

    .container_1 p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 15px;
      background: #00749c;
      color: #fff;
      padding: 12px 28px;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .card {
      background: #fff;
      border-left: 5px solid #00749c;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: scale(1.02);
    }

    .card h3 {
      margin-bottom: 10px;
      color: #00749c;
    }

    .red-border {
      border-left-color: #d32f2f !important;
    }

    @media(max-width: 768px) {
      .hero-section h1 { font-size: 26px; text-align: center; padding: 0 10px; }
    }
    /* Wordpress Page End  */