
.header-Sticky {
    position: sticky;
    top: 0;
    background-color: #e5f2f9;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 100%;
  margin: auto;
  background: linear-gradient(90deg, #194479, #6facf8);
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.content {
  max-width: 500px;
  flex: 1; /* Allows flexibility */
  padding: 20px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h2 span {
  color: #ffcc00;
}

p {
  font-size: 16px;
  margin: 10px 0 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  width: 100%;
}

button {
  padding: 12px;
  background-color: #ffcc00;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.image-container {
  position: relative;
  flex: 1; /* Allows image container to adjust based on available space */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
 
  
}

.image-wrapper {
  background: linear-gradient(45deg, #ff7e5f, #feb47b); 
  border-radius: 90% 90% 00% 100%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border-radius: 50% 0% 0% 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner {
      flex-direction: column-reverse;
      text-align: center;
      padding: 30px;
  }

  .content {
      max-width: 100%;
      padding: 20px;
  }

  h2 {
      font-size: 28px;
  }

  p {
      font-size: 14px;
  }

  .image-wrapper img {
      max-width: 400px;
      border-radius: 50%;
      display: block;
  }
}

@media (max-width: 768px) {
  .banner {
      padding: 20px;
  }

  h2 {
      font-size: 24px;
  }

  p {
      font-size: 14px;
  }

  .image-wrapper img {
      max-width: 300px;
      height: 250px;
  }
}

@media (max-width: 480px) {
  .banner {
      padding: 15px;
  }

  .image-wrapper img {
      max-width: 250px;
      height: 200px;
  }

  h2 {
      font-size: 20px;
  }

  p {
      font-size: 12px;
  }

  input, button {
      padding: 10px;
      font-size: 14px;
  }
}

.digital-marketing-submenu {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #fff;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 10px;
    margin-left: 90%; /* Position to the right of the link */
    top: 0;
}

/* Show submenu on hover over Digital Marketing link */
.digital-marketing-toggle:hover + .digital-marketing-submenu,
.digital-marketing-submenu:hover,
.digital-marketing-submenu.show {
  display: block; /* Show on hover or if the 'show' class is added */
}

/* Styling for submenu links */
.digital-marketing-submenu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.digital-marketing-submenu a:hover {
    background-color: #f4f4f4;
    color: #000;
}

/* Ensuring the dropdown is positioned relative to Services */
.services-dropdown {
    position: relative;
}

.digital-marketing-toggle {
    position: relative;
    cursor: pointer;
}


.icons-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  
  .icon {
    position: absolute;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    animation: move-icon 20s linear infinite;
  }
  
  @keyframes move-icon {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(100px, 100px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  /* Specific icon properties with different positions, sizes, and speeds */
  .icon:nth-child(1)  { top: 10%; left: 15%; font-size: 18px; color: #FF4500; animation-duration: 12s; }
  .icon:nth-child(2)  { top: 25%; left: 30%; font-size: 10px; color: #32CD32; animation-duration: 14s; }
  .icon:nth-child(3)  { top: 40%; left: 45%; font-size: 12px; color: #1E90FF; animation-duration: 16s; }
  .icon:nth-child(4)  { top: 55%; left: 60%; font-size: 16px; color: #FFD700; animation-duration: 18s; }
  .icon:nth-child(5)  { top: 70%; left: 75%; font-size: 14px; color: #FF69B4; animation-duration: 20s; }
  .icon:nth-child(6)  { top: 85%; left: 10%; font-size: 18px; color: #00FFFF; animation-duration: 22s; }
  .icon:nth-child(7)  { top: 20%; left: 50%; font-size: 30px; color: #FFA500; animation-duration: 24s; }
  .icon:nth-child(8)  { top: 35%; left: 65%; font-size: 22px; color: #800080; animation-duration: 26s; }
  .icon:nth-child(9)  { top: 50%; left: 80%; font-size: 26px; color: #008080; animation-duration: 28s; }
  .icon:nth-child(10) { top: 65%; left: 20%; font-size: 18px; color: #FFC0CB; animation-duration: 30s; }
  .icon:nth-child(11) { top: 80%; left: 35%; font-size: 20px; color: #808000; animation-duration: 32s; }
  .icon:nth-child(12) { top: 25%; left: 75%; font-size: 22px; color: #FFD700; animation-duration: 34s; }
  .icon:nth-child(13) { top: 40%; left: 10%; font-size: 18px; color: #FF4500; animation-duration: 36s; }
  .icon:nth-child(14) { top: 55%; left: 25%; font-size: 20px; color: #D2691E; animation-duration: 38s; }
  .icon:nth-child(15) { top: 70%; left: 40%; font-size: 12px; color: #FF1493; animation-duration: 40s; }


  * {
    box-sizing: border-box;
}



.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background 0.5s ease, transform 0.8s ease;
}

.cards-container-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card-service {
    width: 400px;
    height: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background 0.5s ease, transform 0.8s ease;
}

.card:hover {
    background: linear-gradient(45deg, #ff7e5f, #feb47b); /* Gradient background on hover */
    transform: translateY(-10px);
    box-shadow: 1px 0px 15px 5px rgba(3, 79, 172, 0.5);
}

.vector-image svg {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    
    fill: none;
    stroke: #194479;
    stroke-width: 1;
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    transition: stroke-dashoffset 3.8s ease; /* Speed up the formation */
}

.card:hover .vector-image svg {
    stroke-dashoffset: 0;
    fill: #fff; /* Fill the icon with white as the line completes */
}

.heading-card {
    font-size: 25px;
    margin-bottom: 10px;
    color: #000;
}



.para-card {
    font-size: 18px;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 300px;
    }
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .section:hover {
    transform: translateY(-10px);
    box-shadow: 1px 0px 15px 5px rgba(3, 79, 172, 0.5);
  }

  .icon_web {
    font-size: 2.5rem;
    color:  #194479;
    margin-right: 15px;
    transition: transform 0.6s ease, color 0.3s ease;
  }

  .section:hover .icon_web {
    transform: rotateY(180deg); /* Icon flip */
    color: #e26c0c; /* Icon color change on hover */
   
  }

  .section-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
  }

  .section-content {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Scroll Animation */
  .section {
    opacity: 0;
    transform: translateY(50px);
  }

  .section.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
  }

  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .section-title {
      font-size: 1.3rem;
    }

    .icon_web {
      font-size: 2rem;
    }
  }


  .content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    padding: 30px;
    background: linear-gradient(75deg,#6facf8, #194479);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 75, 43, 0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.text-content h2 {
    font-size: 35px;
   color: #ffffff;
    
    
    font-weight: bold;
}

.text-content h1 {
  font-size: 35px;
 color: #ffffff;
  
  
  font-weight: bold;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 10px 0;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff5722;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-bottom: 20px;
    }

    .image-content img {
        width: 200px;
        height: 200px;
    }
}



  .faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    padding: 0px;
    border-radius: 15px;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid  #194479;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 20px;
    background: #ecf3fc;
    font-size: 1.5rem;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background-color: #ecf3fc;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 1.2rem;
    color: #020202;
}

.faq-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .faq-answer p {
        font-size: 1.0rem;
    }
    .faq-question {
        font-size: 1.2rem;
    }

}


h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #194479;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



.floating-icons {
    position: fixed;
    bottom: 30px; /* Distance from the bottom */
    right: 30px;  /* Distance from the right */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between icons */
    z-index: 1000; /* Ensure it's above all other content */
}

/* Icon Styles */
.floating-icons a {
    width: 60px;
    height: 60px;
    background-color: #194479; /* WhatsApp default color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite; /* Add floating animation */
    transition: background-color 0.3s ease;
}

/* Call Icon specific styles */
.call-icon {
    background-color: #007bff; /* Blue color for Call icon */
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Move up 10px at the peak */
    }
}

/* Hover Effects (Optional) */
.floating-icons a:hover {
    background-color: #d96e0a; /* Change color on hover (optional) */
}

/* Font Awesome (Include in <head> or via CDN) */






footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #f1f1f1;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .icon_addres{
    margin-right: 10px;
  }
  .footer-about
  
   {
    flex: 2;
    margin: 25px;
    min-width: 250px;
  }
  .footer-links1{
    flex: 1;
    margin:25px 0px 25px 25px;
    min-width: 200px;
  }
  
  .footer-links2{
    flex: 1;
    margin: 25px 25px 25px 25px;
    min-width: 200px;
  }
  .footer-contact{
    flex: 2;
    margin: 25px;
    min-width: 250px;
  }
  
  h2, h3 {
    font-size: 20px;
    color: #e26c0c;
    margin-bottom: 15px;
  }
  
  p, li {
    font-size: 18px;
    line-height: 1.6;
  }
  
  a {
    color: #f1f1f1;
    text-decoration: none;
  }
  
  a:hover {
    color: #e26c0c;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
  justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #555;
    padding-top: 20px;
  }
  
  .footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .footer-bottom p {
    margin-top: 10px;
  
  }
  
  .footer-bottom ul li {
    margin: 0;
  }
  .social-media {
      display: flex;
      gap: 5px; /* Space between icons */
  }
  
  .social-icon {
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background-color: #e26c0c; /* Initial background color */
      color: #000; /* Icon color */
      text-align: center;
      transition: background-color 0.3s ease, color 0.3s ease;
      position: relative;
      overflow: hidden;
  }
  
  .social-icon i {
      font-size: 20px;
      transition: transform 0.3s ease;
  }
  
  /* Hover Effect */
  .social-icon:hover {
      background-color: #194479; /* Background color on hover */
      color: #fff; /* Icon color on hover */
  }
  
  /* Moving the icon inside circle effect on hover */
  .social-icon:hover i {
      transform: scale(1.2); /* Scale the icon slightly on hover */
  }
  
  /* Optional for smoother hover transitions */
  .social-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120%;
      height: 120%;
      background-color: #194479; /* Hover fill color */
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.4s ease;
      z-index: 0;
  }
  
  .social-icon:hover::before {
      transform: translate(-50%, -50%) scale(1); /* Expanding background fill on hover */
  }
  
  .social-icon i {
      position: relative;
      z-index: 1; /* Keeps the icon on top of the expanding background */
  }
  
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
       
    }
  
    .footer-bottom {
        flex-direction: column;
        
    }
  }




  
.services {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .service-content {
  display: flex;
  width: 100%;
  max-width: 100%;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  }
  
  /* Left Side Image */
  .service-image {
  flex: 40%;
  display: flex;
  justify-content: center;
  
  align-items: center;
  background: #ffffff;
  }
  
  .service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
  
  /* Right Side Content */
  .service-details {
  flex: 60%;
  padding: 30px;
  text-align: center;
  }
  
  .service-details h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  }
  
  .service-details span {
  color: #194479;
  }
  
  .service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  }
  
  /* Service Box */
  .service-box {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  }
  
  .service-box:hover {
  transform: translateY(-5px);
  }
  
  .service-box i {
  font-size: 40px;
  color: #194479;
  margin-bottom: 10px;
  }
  
  .service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  }
  
  .service-box p {
  font-size: 14px;
  color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
  .service-content {
    flex-direction: column;
  }
  
  .service-image {
    flex: 100%;
    height: 300px;
  }
  
  .service-details {
    flex: 100%;
    padding: 20px;
  }
  
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
  }
  
  @media (max-width: 768px) {
  .service-container {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .service-details h2 {
    font-size: 24px;
  }
  }
  
  
  
  .who-we-are {
    background: linear-gradient(90deg, #194479, #6facf8); /* Red Gradient Background */
      color: white;
      text-align: center;
      padding: 10px 20px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 900px;
      margin: 10px auto;
  }
  
  .who-we-are h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: bold;
  }
  
  .who-we-are h2 span {
      color: rgb(255, 255, 255); /* Highlighted text */
  }
  
  .who-we-are p {
      font-size: 18px;
      line-height: 1.6;
      color: #f1f1f1;
      margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .who-we-are {
          padding: 40px 15px;
      }
  
      .who-we-are h2 {
          font-size: 26px;
      }
  
      .who-we-are p {
          font-size: 16px;
      }
  }
  
  
  
  
  .features-grid-container {
      background: linear-gradient(to right, #fffaf9, #fffdfe); /* Red Gradient Background */
      color: white;
      text-align: center;
      padding: 10px 10px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 90%;
      margin: 10px auto;
  }
  
  .features-grid-container h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: bold;
      color:#194479;
  }
  
  .features-grid-container h2 span {
      color: rgb(0, 0, 0); /* Highlighted text */
  }
  
  .features-grid-container p {
      font-size: 18px;
      line-height: 1.6;
      color: #000000;
      margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .features-grid-container {
          padding: 40px 15px;
      }
  
      .features-grid-container h2 {
          font-size: 26px;
      }
  
      .features-grid-container p {
          font-size: 16px;
      }
  }
  
  
  .features-container {
        padding: 20px;
        text-align: center;
        margin: 0px 20px; /* Adjusted margin for better mobile responsiveness */
    }
    
    .features-heading {
        font-family: Arial, sans-serif;
        color: #194479;
        margin-bottom: 20px;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        justify-content: center;
    }
    
    .feature-card {
        border-radius: 10px;
        padding: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card i {
        font-size: 40px;
        color:  #194479;
        margin-bottom: 10px;
        transition: color 0.3s ease, transform 0.3s ease;
    }
    
    .feature-card h3 {
        font-family: Arial, sans-serif;
        color: #194479;
        margin: 10px 0;
    }
    
    .feature-card p {
        font-family: Arial, sans-serif;
        color: #555555;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .feature-card:hover i {
        color: #e26c0c;
        transform: scale(1.1);
    }
    
    /* Responsive Layout for Mobile */
    @media (max-width: 767px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr); /* Two cards per row on mobile */
            gap: 15px;
        }
    
        .features-container {
            margin: 0px 10px; /* Further reduced margin for mobile */
        }
    
        .feature-card i {
            font-size: 30px; /* Slightly smaller icon size on mobile */
        }
    
        .feature-card h3 {
            font-size: 18px; /* Adjust font size for better fit on mobile */
        }
    
        .feature-card p {
            font-size: 14px; /* Adjust paragraph font size for readability */
        }
    }
  
  