* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --accent: #3224d2;
    --black: #131313;
    --gray: #f9f9f9;
    --blue-gray: #f7f7fb;
  }
  html {
  scroll-behavior: smooth;
}
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  html, body {
  overflow-x: hidden;
}
  .nav {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    background: black; /* transparent initially */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 1);
    z-index: 999;
    transition: background-color 0.3s ease;
  }
  
  /* When nav is active after scrolling */
  
  
  .nav img {
    width: 100px;
  }
  
  .brand-2 {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .brand-2 a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    padding: 8px 12px;
  }
  
  .brand-2 a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: 0;
    transform: scaleX(1);
  }
  
  .Dropdown {
    position: relative;
  }
  
  .dropdown-content{
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    min-width: 200px;
    z-index: 1000;
  }
  
  .dropdown-content a{
    padding: 10px 15px;
    white-space: nowrap;
    color: black;
  }
  
  .dropdown-content a:hover{
    background: #f1f1f1;
  }
  
  .Dropdown:hover > .dropdown-content {
    display: flex;
  }
  
  
  .btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f96c1;
  }
  
  .btn-1 {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  
  
  /* Hero Section */
 
  section {
    background-image: url('Assets/bg-hero.jpg'); /* or PNG/WebP */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Full screen */
    min-width: 100vw;
    display: flex;
    justify-content: space-between;
    margin-top: 110px;
  }
  .hero-text{
    color: white;
    margin-top: 180px;
    width: 480px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1{
    font-size: xx-large;
    letter-spacing: 2px;
  }
  .hero-text h2{
    margin-top: 25px;
    letter-spacing: 2px;
  }
  .hero-text p {
    margin-top: 30px;
    font-size: large;
    letter-spacing: 2px;

  }
  .hero-text .btn-1 {
    margin-top: 30px;
  }
  .hero-img img {
    width: 550px;
    margin-top: 110px;
    animation: shakeTop 3s  ease-in-out infinite;
    -webkit-animation: shakeTop 3s  ease-in-out infinite;
}
@keyframes shakeTop {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
  /* Hero Section End */

  /* Our Specialization  */
  .section-title {
      text-align: center;
      font-size: 42px;
      font-weight: 700;
      color: #1d1b7c;
      margin-bottom: 40px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .service-card {
      background-color: #fff;
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(50px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .service-card:nth-child(1) {
      animation-delay: 0.2s;
    }

    .service-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .service-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .service-card:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-card.middle {
      background-color: #fdfdfd;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
      transform: scale(1.02);
    }

    .icon-container {
      width: 120px;
      height: 100px;
      margin: 0 auto 20px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }

    .icon-container img {
      width: 40px;
      height: 40px;
      margin-top: 30px;
    }

    .service-card h3 {
      font-size: 20px;
      color: #1d1b7c;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #666;
      margin-bottom: 20px;
      padding: 0 10px;
    }

    .btn-arrow {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 38px;
      height: 38px;
      border: 2px solid #d10072;
      border-radius: 50%;
      color: #d10072;
      font-size: 18px;
      transition: 0.3s ease;
    }

    .btn-arrow:hover {
      background-color: #d10072;
      color: #fff;
    }

    /* Blob background images */
    .blob1 {
      background-color: #eee4fa;
      border-radius: 50px 80px 60px 100px;
    }

    .blob2 {
      background-color: #32105d;
      border-radius: 70px 50px 100px 60px;
    }

    .blob3 {
      background-color: #eee4fa;
      border-radius: 100px 40px 80px 60px;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 30px;
      }
    }
  /* Our Specialization End */

  /* Why choose Webincoder */
    .container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .left-img {
      flex: 1;
      text-align: center;
    }

    .left-img img {
      width: 90%;
      max-width: 500px;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .right-content {
      flex: 1;
      max-width: 600px;
    }

    .section-head h2 {
      font-size: 36px;
      color: #1d1b7c;
      margin-bottom: 10px;
    }

    .section-head p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .icon-box {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: #f9f9f9;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateX(50px);
      animation: fadeInRight 1s forwards;
    }

    .icon-box:nth-child(1) {
      animation-delay: 0.4s;
    }

    .icon-box:nth-child(2) {
      animation-delay: 0.6s;
    }

    .icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

    @keyframes fadeInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .icon {
      width: 60px;
      height: 60px;
      background-color: #1d1b7c;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .icon-content h4 {
      font-size: 18px;
      color: #1d1b7c;
      margin-bottom: 8px;
    }

    .icon-content p {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .container {
        flex-direction: column;
      }

      .left-img {
        display: none;
      }
    }
  /* Why choose webincoder End */

  /* Our Feature */
 
.features-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.section-head .title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.features-column {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box .icon {
  font-size: 40px;
  color: #4b9cdb;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

.features-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-image img {
  max-width: 100%;
  border-radius: 20px;
}
  /* Our Feature End */

  /* Our Portfolio */
  .portfolio-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.section-head .title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: auto;
  gap: 20px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 33, 61, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.portfolio-card:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

.portfolio-card h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #ddd;
}

.portfolio-card .popup-btn {
  background: #fff;
  color: #103b78;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 0 3px #fff;
  transition: 0.3s;
}

.portfolio-card .popup-btn:hover {
  background: #4b9cdb;
  color: #fff;
  transform: scale(1.1);
}

.portfolio-card.wide {
  grid-column: span 2;
}

/* Responsive Override for Smaller Screens */
@media (max-width: 768px) {
  .portfolio-card.wide {
    grid-column: span 1;
  }

  .section-head .title {
    font-size: 2rem;
  }
}
  /* Our Portfolio End */

  /* Testimonial */
  
  .content-inner-1 {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-head .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #007bff; /* Webincoder brand primary */
}
.container-testi{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 500px;
  margin: 0 auto;
}
.testimonial-2 {
  background: #f9f9f9;
  /* padding: 25px; */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.testimonial-detail{
  display: flex;
}

.testimonial-pic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #007bff; /* Webincoder primary border */
}

.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.testimonial-position {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.testimonial-text p {
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.6;
  color: #555;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #007bff; /* Webincoder theme */
}
@media (max-width: 576px) {
  .testimonial-2 {
    padding: 20px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 16px;
  }
}

  /* Testimonial End */

   /* Clients Logo Section  */
   .bg-gray {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.clients-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s ease-in-out;
}

.clients-logo img {
  max-height: 60px;
  transition: 0.3s ease-in-out;
}

.clients-logo .logo-hover {
  display: none;
  position: absolute;
}

.clients-logo:hover .logo-main {
  display: none;
}

.clients-logo:hover .logo-hover {
  display: block;
}
   /* Clients Logo Section End   */

   /* Footer */
  .site-footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.footer-top {
  padding: 60px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-box h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #fff;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.contact-info li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info i {
  margin-right: 10px;
  color: #ffcc00;
}

.footer-bottom {
  background: #111;
  padding: 15px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }
}

   /* Footer End */

  /* Responsive */
  @media (max-width: 768px) {
    .brand-2 {
      position: absolute;
      top: 70px;
      right: 0;
      background: rgb(0, 0, 0);
      flex-direction: column;
      width: 70%;
      display: none;
      padding: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .brand-2 a{
      color: white;
    }
    .brand-2.active {
      display: flex;
    }
  
    .btn {
      display: block;
    }
  
    .Dropdown:hover > .dropdown-content{
      display: none;
    }
  
    .dropdown-content
    {
      position: relative;
      box-shadow: none;
    }
  
    .Dropdown.open > .dropdown-content{
      display: flex;
    }

    section {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
     .hero-text{
    color: white;
    margin-top: 65px;
  
    width: 380px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-img{
    width: 380px;
    margin-top: 32px;
  }
  }

  /* About Page  */
  .about-hero img{
    width: 100%;
  }
  .about-section {
  padding: 60px 20px;
  background: #f9faff;
  color: #1f1f1f;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.about-section .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  font-size: 24px;
  color: #005599;
  margin-top: 30px;
  font-weight: 600;
}

.about-para {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.about-list i {
  color: #0077cc;
  margin-right: 10px;
  font-size: 20px;
}

.about-highlight {
  margin-top: 40px;
  background-color: #e8f1ff;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  border-left: 5px solid #0077cc;
  border-radius: 5px;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .about-hero img{
    width: 100%;
  }
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .about-para,
  .about-list li,
  .about-highlight {
    font-size: 16px;
  }

  .about-highlight {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero img{
    width: 100%;
    margin-top: 110px;
  }
  .about-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .about-list li {
    font-size: 15px;
  }

  .about-highlight {
    font-size: 15px;
    padding: 12px;
  }
}

  /* About Page End   */

  /* Vision & Mission Section Styles */
  .vm-img img{
    width: 100%;
  }
.vm-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.vm-container {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 50px;
}

.vm-box {
  margin-bottom: 2.5rem;
}

.vm-box h2 {
  font-size: 2rem;
  color: #0540f2;
  margin-bottom: 1rem;
}

.vm-box p,
.vm-box li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.vm-box ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.vm-box blockquote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #0540f2;
  color: #555;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vm-img img{
    width: 100%;
    margin-top: 110px;
  }
  .vm-box h2 {
    font-size: 1.5rem;
  }

  .vm-box p,
  .vm-box li {
    font-size: 1rem;
  }
}

/* Vision & Mission Section Styles End */


/* Team Page */

.team-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.team-section img{
  width: 100%;
  margin-bottom: 50px;
}

.team-section .section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.team-section .section-subtitle {
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.team-section .team-intro,
.team-section .team-values,
.team-section .team-cta {
  max-width: 900px;
  margin: 20px auto;
}

.team-section .team-values ul {
  padding-left: 20px;
  margin-top: 15px;
}

.team-section .team-values li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.team-section .team-cta a {
  color: #007bff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .team-section img{
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
  .team-section .section-title {
    font-size: 26px;
  }

  .team-section .section-subtitle,
  .team-section .team-values ul,
  .team-section .team-intro,
  .team-section .team-cta {
    font-size: 16px;
  }
}
/* Team Page End */

/* Carrer Page */
.job-listings {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.job-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.job-card p {
  font-size: 0.95rem;
  margin: 0.5rem 0;
  color: #555;
}

.job-card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #0077ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.job-card a:hover {
  background-color: #005dc9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .job-card {
    padding: 1.2rem;
  }

  .job-card h3 {
    font-size: 1.1rem;
  }

  .job-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .job-listings {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .job-card a {
    width: 100%;
    text-align: center;
  }
}

/* Carrer Page End  */

/* Galery Page  */
.gallery-section {
  padding: 4rem 1rem;
  background-color: #f9f9ff;
  text-align: center;
}

.gallery-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.6rem;
  }

  .gallery-subtitle {
    font-size: 0.95rem;
  }
}

/* Galery Page End   */

/* Services Page */
.services-section {
  padding: 4rem 1rem;
  background-color: #fefefe;
  text-align: center;
  margin-top: 100px;
}

.services-heading {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.services-subheading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-card h3 {
  color: #007bff;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .services-heading {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Services Page End  */

/* Digital Marketing  */
.digital-marketing {
  padding: 4rem 1rem;
  background-color: #f7fafd;
  text-align: center;
  margin-top: 105px;
}

.dm-heading {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.dm-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.dm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.dm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-card h2 {
  font-size: 1.25rem;
  color: #007bff;
  margin-bottom: 0.75rem;
}

.dm-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.dm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .dm-heading {
    font-size: 2rem;
  }

  .dm-card {
    padding: 1.5rem;
  }

  .dm-card h2 {
    font-size: 1.1rem;
  }

  .dm-card p {
    font-size: 0.9rem;
  }
}

/* Digital Marketing End   */

/* Brand Management */
.brand-management {
  padding: 4rem 1rem;
  background-color: #fcfcff;
  text-align: center;
  margin-top: 105px;
}

.bm-heading {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bm-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.bm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-card h2 {
  font-size: 1.25rem;
  color: #1e90ff;
  margin-bottom: 0.75rem;
}

.bm-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.bm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .bm-heading {
    font-size: 2rem;
  }

  .bm-card {
    padding: 1.5rem;
  }

  .bm-card h2 {
    font-size: 1.1rem;
  }

  .bm-card p {
    font-size: 0.9rem;
  }
}

/* Brand Management End  */

/* Web Development */
.web-dev {
  padding: 4rem 1rem;
  background-color: #f9faff;
  text-align: center;
  margin-top: 105px;
}

.wd-heading {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.wd-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #444;
}

.wd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.wd-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.wd-card h2 {
  font-size: 1.25rem;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.wd-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.wd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .wd-heading {
    font-size: 2rem;
  }

  .wd-card {
    padding: 1.5rem;
  }

  .wd-card h2 {
    font-size: 1.1rem;
  }

  .wd-card p {
    font-size: 0.9rem;
  }
}

/* Web Development End  */

/* Mobile App Development */
.mobile-dev {
  padding: 4rem 1rem;
  background-color: #f5f9ff;
  text-align: center;
  margin-top: 105px;
}

.mob-heading {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.mob-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #444;
}

.mob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.mob-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s ease;
}

.mob-card h2 {
  font-size: 1.25rem;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.mob-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.mob-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .mob-heading {
    font-size: 2rem;
  }

  .mob-card {
    padding: 1.5rem;
  }

  .mob-card h2 {
    font-size: 1.1rem;
  }

  .mob-card p {
    font-size: 0.9rem;
  }
}

/* Mobile App Development End  */

/* CRM Software Development */
.crm-dev {
  padding: 4rem 1rem;
  background-color: #fefefe;
  text-align: center;
  margin-top: 105px;
}

.crm-heading {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.crm-intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.crm-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.crm-card h2 {
  font-size: 1.2rem;
  color: #3b82f6;
  margin-bottom: 0.75rem;
}

.crm-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.crm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
  .crm-heading {
    font-size: 2rem;
  }

  .crm-card {
    padding: 1.5rem;
  }

  .crm-card h2 {
    font-size: 1.1rem;
  }

  .crm-card p {
    font-size: 0.9rem;
  }
}

/* CRM Software Development End  */

/* Gaming App Developement */
.gaming-dev {
  padding: 4rem 1rem;
  background-color: #f8fafc;
  text-align: center;
  margin-top: 110px;
}

.gaming-heading {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.gaming-intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.gaming-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.gaming-card h2 {
  font-size: 1.2rem;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
}

.gaming-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
  .gaming-heading {
    font-size: 2rem;
  }

  .gaming-card {
    padding: 1.5rem;
  }

  .gaming-card h2 {
    font-size: 1.1rem;
  }

  .gaming-card p {
    font-size: 0.9rem;
  }
}

/* Gaming App Developement End*/

/* Graphics Designing  */
.graphic-design {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
  margin-top: 110px;
}

.graphic-heading {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.graphic-intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.graphic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.graphic-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.graphic-card h2 {
  font-size: 1.2rem;
  color: #ec4899;
  margin-bottom: 0.75rem;
}

.graphic-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.graphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
  .graphic-heading {
    font-size: 2rem;
  }

  .graphic-card {
    padding: 1.5rem;
  }

  .graphic-card h2 {
    font-size: 1.1rem;
  }

  .graphic-card p {
    font-size: 0.9rem;
  }
}

/* Graphics Designing End  */


/* Contact Us */
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 110px;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
}

.contact-description {
  color: rgb(107 114 128);
  text-align: center;
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #1e1aad;
}

/* ---------- Responsive Enhancements ---------- */

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .form-input,
  .form-textarea {
    font-size: 0.875rem;
    padding: 0.65rem 0.9rem;
  }

  .form-submit {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .form-group-container {
    grid-template-columns: 1fr 1fr;
  }

  .form-group:nth-child(3),
  .form-group:nth-child(4) {
    grid-column: span 2;
  }
}

/* Contact Us */