/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Video Background */
  .video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  #background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Header */
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    z-index: 10;
  }
  
  .header-top {
    display: flex;
    flex-wrap: wrap;
    background: rgba(250, 250, 250, 0.966);
    display: flex;
    color: rgb(95, 95, 95);
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .p1 {
    padding-left: 150px;
  }
  
  .p2 {
    padding-top: 15px;
    margin: 0 auto;
  }
  .header-top .p1, .header-top .p2 {
    font-size: 14px;
    color: #5c5b5b;
  }
  
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 10px 20px;
  }
  
  .logo {
    padding-left: 80px;
    max-height: 70px;
  }
  
  /* .list {
    color: white;
  } */
  
 
  .menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu-list li {
    margin: 0 10px;
  }
  
  .menu-list a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
  }
  .menu-item {
    position: relative;
}

.menu-link {
    text-decoration: none;
    color: #fff;
    /* padding: 10px 20px; */
    display: block;
}

.menu-link:hover {
    background-color: #333;
}

.dropdown {
    width: 600%;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background-color: #fff;
    display: none; /* Initially hidden */
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown li {
    border-bottom: 1px solid #ddd;
    position: relative; /* For the left border effect */

}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    display: block;
    position: relative; /* For left-line styling */

}
.dropdown a:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px; /* Width of the left line */
  height: 100%;
  background-color: #007bff; /* Color of the left line */
}
.dropdown a:hover {
    background-color: #f0f0f0;
}
.menu-item:hover .dropdown {
  display: block;
}



.menu-item1 {
  position: relative;
  margin-right: 20px;
}

.menu-link1 {
  text-decoration: none;
  color: #fff;
  /* padding: 10px 15px; */
  display: block;
}

.menu-link1:hover {
  background-color: #333;
  border-radius: 5px;
}

/* Dropdown Styles */
.dropdown1 {
  position: absolute;
  top: 100%; /* Below the "Services" link */
  left: 0;
  display: none; /* Initially hidden */
  background-color: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 500px; /* Adjust based on your design */
  z-index: 1000;
  flex-wrap: wrap;
}

.menu-item1:hover .dropdown1 {
  display: flex;
  flex-wrap: wrap; /* Wrap items to the next line if needed */
  gap: 20px;
}

/* Category Items */
.category-item1 {
  display: flex;
  align-items: center;
  background-color: #fdf9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 180px; /* Adjust size */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-item1 img {
  transition: 0.5s ease; /* Smooth transition */
}

.category-item1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: skyblue;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* On hover, show the overlay */
.category-item1:hover::after {
  opacity: 0.5; /* Adjust for desired effect */
}
.category-icon1 {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.category-text1 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

/* Footer Images Section in Dropdown */
.footer-images1 {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.footer-item1 {
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.footer-item1 img {
  width: 480px;
  height: auto;
}

.footer-item1 p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #333;
  font-weight: bold;
}
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* ANNIVERSARY BUTTON */
  .anniversary-btn {
    position: relative;
    background-image: url('images/button.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: rgb(255, 255, 255); 
    font-weight: bold;
    padding: 10px 20px;
    right: 60px;
    border: none;
    border: 2px solid gold; 
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
  }
  
  .anniversary-btn:hover {
    background-color: transparent; /* Remove background color */
    background-image: none; 
    color: white; 
  }
  
  /* SEARCH CONTAINER */
  .search-container {
    position: relative;
    display: inline-block;
    margin-left: 10px;
  }
  
  .search-icon {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
  }
  
  .search-icon img {
    width: 24px;
    height: 24px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: filter 0.3s ease;
  }
  
  .search-icon:hover img {
    filter: invert(73%) sepia(92%) saturate(510%) hue-rotate(1deg) brightness(95%) contrast(102%); /* Example hover effect for gold */
  }
  
  #search-box {
    position: absolute;
    top: 130%;
    left: -150px;
    width: 200px;
    margin-top: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
    display: none;
  }
  
  #search-box.active {
    display: flex;
  }
  
  .search-input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 4px;
    outline: none;
  }
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
    
  .center-content h1 {
    font-size: 3rem;
    margin: 0;
    margin-bottom: 200px;
  }
  
  .animated-text-container {
    position: absolute;
    top: 120px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .animated-text {
    font-size: 2rem; 
    font-weight: bold;
    color: white;
    animation: moveText 6s infinite; 
  }
@keyframes moveText {
  0% {
    transform: translateY(0); 
    opacity: 1; 
  }
  50% {
    transform: translateY(40px); /* Slight downward motion */
    opacity: 1;
  }
  100% {
    transform: translateY(0); /* Return to the original position */
    opacity: 1;
  }
}  
  
  /* ANIMATED IMAGE */
  .animated-image {
    position: absolute;
    top: 55%; 
    left: 5%; 
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* overflow: hidden; */
    opacity: 0; 
    will-change: transform; /* Optimizes the performance for the animation */

    animation: slideDown 3s ease forwards; /* Animation when page loads */
  }
  
  .animated-image img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Keyframe for Loading Animation */
  @keyframes slideDown {
    0% {
      transform: translateY(-150%);
      opacity: 0;
    }
    100% {
      transform: translateY(20%);
      opacity: 1;
    }
  }
  
  

  .about-eziline {
    display: flex;
    justify-content: space-around;
    background-image: url(images/bottom1.jpg);
    align-items: center;
    /* width: 100%; */
    padding: 32px;
    height: 800;
  }
  
  .content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 400px;
  }
  
  .content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #00ffcc;
  }
  
  .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
  }
  
  .info-list li {
    margin: 10px 0; 
    font-size: 16px;
    padding-left: 40px;
    color: #ebebeb;
    opacity: 0; 
    transform: translateX(-100%); 
    transition: transform 2.5s ease, opacity 0.5s ease; /* Smooth transition */
  }
  
  /* Add this class when the item is visible */
  .animated-item.visible {
    opacity: 1; /* Fade in */
    transform: translateX(0);
  }
  .info-list li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: #ff0040;
  }
  
 
  .laptop-frame {
    position: relative;
    width: 600px; 
    height: auto;
    padding-bottom: 400px;
  }
  .laptop-image {
    padding-top: 60px;
    width: 100%;
    display: block;
  }
  
  .project-management {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px; 
    background-color: #ffffff; /* Optional: Light background for contrast */
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .imac-mockup {
    margin-bottom: 80px;
    flex: 3;
    max-width: 500px; /* Adjust the maximum width of the image container */
    text-align: center; 
    margin-right: 120px; 
  }
  
  .imac-frame {
    margin-right: -190px;
    width: 160%;
    margin: -100px;
  }
  
  .features {
    padding-bottom: 230px;
    flex: 1;
    max-width: 500px; 
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 20px; /* Space below heading */
    color: #111111; 
  }
  .features h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 1.5px; 
    background-color: #00a7d1; 
    margin: 10px auto 0; /* Space around the line */
    padding-right: 400px;
  }
  .feature-list {
    color: #5c5b5b;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
  }
  
  .feature-list li {
    margin-bottom: 10px; 
    padding-left: 25px;
    position: relative;
  }
  
  .feature-list li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: #910000 !important; 
}
  
  .buttons {
    margin-top: 20px; /* Space above the buttons */
  }
  
  .btn {
    padding: 10px 20px;
    margin-right: 10px; /* Space between buttons */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    transition: background 0.3s ease;
  }
  
  .btn.staff {
    background-color: #ff6b6b; 
    border-color: #ff6b6b;
  }
  
  .btn.intern {
    background-color: #4caf50; 
  }
  
  .btn.client {
    background-color: #007bff;
  }
  
  .btn:hover {
    opacity: 0.8; /* Hover effect */
  }
  


  .services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(images/7-15-1.jpg);
    padding: 50px 0;
    color: white;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
  }
  
  .left-column, .right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
  }
  
  .service {
    margin-bottom: 40px;
  }
  
  .service .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .service .icon img {
    width: 60px;
    height: 60px;
  }
  
  .service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .service p {
    font-size: 1rem;
  }
  
  .phone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 20px;
  }
  
  .phone img {
    width: 100%;
    height: auto;
  }
  


  .sdlc-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(images/landing_3_img1_mini.jpg);
    background-size: cover; /* Ensures the image covers the entire area without stretching */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background image fixed in place while scrolling */
    text-align: center;
    position: relative;
    height: 100vh;
    width: 100%; /* Ensures the section takes up the full width */
    overflow: hidden; /* Prevents any overflow of content outside the section */
  }
  .content1{
    padding-right: 460px;
  }
  .content1 h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .content1 p {
    text-align: left;
    font-size: 1.2rem;
    color: #ffffffb3;
  }
  
  .highlight1 {
    background-color: #8a0000;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 10px;
    font-weight: bold;

  }
  
  .animation-area {
    position: relative;
    width: 70%;
    height: 50vh;
    bottom: 400px;
    margin-top: 50px;
  }
  
  .circle-step {
    position: absolute;
    font-size: 1.0rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(0.8);
    color: #973c3c;
  }
  
  #designing { top: 130%; left: -10%; }
  #planning { top: 185%; left: 20%; }
  #defining { top: 140%; right: 55%; }
  #building { top: 130%; right: 80%; }
  #testing { bottom: -70%; left: 35%; }
  #deployment { bottom: -80%; right: 95%; }
  
  .sdlc-tag {
    position: absolute;
    top: 160%;
    left: 20%;
    transform: translate(-50%, -50%);
    background-color: #8a0000;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.8rem;
    border-radius: 5px;
    animation: rotateTag 5s linear infinite; /* Add animation for rotation */
  }
  
  /* Define keyframes for rotation */
  @keyframes rotateTag {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  

  .features-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .feature {
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
  }
  
  .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .feature .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
  }

  

  .clients-carousel {
  padding: 20px 0;
  background-color: #fff;
}

.clients-carousel h2 {
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-track img {
  max-width: 150px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.1);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ddd;
  border: none;
  color: #333;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-control:hover {
  background-color: #bbb;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}



footer {
  background-color: #1a1a2e;
  color: #fff;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-container > div {
  flex: 1;
  margin: 10px;
  min-width: 250px;
}

.footer-about h4,
.footer-posts h4,
.footer-contact h4 {
  color: #e94560;
}

.footer-about p,
.footer-contact p,
.footer-posts ul {
  font-size: 14px;
  line-height: 1.6;
}

.about-icons img {
  margin: 10px 5px;
  width: 140px;
}

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

.footer-posts ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-posts ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

.social-links img {
  width: 25px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .header-main .logo{
  margin-right: -15%;
  }
  .animated-text{
    margin-top: 140px;
    padding-left: 40px;
  }
 
}
@media (max-width: 768px) {
  #background-video {
      object-position: center; 
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    padding-left: 50px;
    width: 100%;
    display: block; /* Show the hamburger button */
  }

 .menu-list {
  flex-direction: column;
  position: absolute;
  top: 0px; 
  right: 130px; 
  background-color: #444444; 
  border-radius: 12px; 
  padding: 15px 10px; 
  width: 200px; 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhance shadow for a modern look */
  transform: translateY(-20px) scale(0.9); /* Subtle scaling and positioning effect */
  opacity: 0; 
  visibility: hidden; 
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              opacity 0.4s ease, 
              visibility 0.4s; /* Smooth animation */
  z-index: 100; 
}

  .menu-list.show {
    transform: translateY(0); /* Slide down */
    opacity: 1;
    visibility: visible;
  }

  .menu-list li {
    margin: 10px 0;
    text-align: center;
  }

  .anniversary-btn {
    display: none; 
  }
}


@media (max-width: 768px) {
  .header-top {
    height: 30px;
    flex-direction: column; 
    align-items: flex-start; 
  }

  .header-top .p1,
  .header-top .p2 {
    font-size: 14px; 
    margin: 5px 0;
    padding-left: 20px;
  }
  .p1{
    display: none;
  }
}


@media (max-width: 768px) {
  .about-eziline {
      flex-direction: column;
      text-align: center;
      padding: 0px;
      height: 800px;

  }

  .content {
    text-align: left;
      max-width: 100%;
      margin-bottom: 20px;
  }

  .laptop-frame {
      max-width: 80%;
      margin-top: -480px;
  }

  h1 {
      font-size: 2rem;
  }

  .info-list {
      margin-top: 20px;
  }

  .animated-item {
      font-size: 1rem;
  }
}


@media (max-width: 768px) {

  .container {
    margin-bottom: 130px;
    flex-direction: column;
    align-items: center;
  }

  .imac-mockup {
    width: 80%;
  }
.imac-frame{
  padding-left: 80px;
  width: 150%;
}
  .features {
    padding-right: 80px;
    max-width: 70%;
    text-align: center;
  }

  h2 {
    text-align: left;
    font-size: 1.8rem;
  }
  .features h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 1.5px; 
    background-color: #00a7d1; 
    margin: 10px auto 0; /* Space around the line */
    padding-right: 200px;
  }
  .feature-list li {
    text-align: left;
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 15px;
  }
}


@media (max-width: 768px) {
  .service {
    padding: 10px;
  }

  .icon img {
    text-align: left;

    width: 60px;
    height: 60px;
  }

  h3 {
    text-align: left;

    font-size: 1.3rem;
  }

  p {
    text-align: left;

    font-size: 0.9rem;
  }

  .phone img {
    height: 150%;
    width: 200%;
  }
}

@media (max-width: 768px) {
  .sdlc-section{
    width: 100%;
  }
  .content1 h1 {
    font-size: 1.8rem;
  }
.sd{
  padding-left: 430px;
  
}
  .circle-step {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .animation-area {
    flex-direction: column;
    gap: 15px;
  }

  .sdlc-tag {
    font-size: 1.2rem;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .features-section {
    flex-direction: column; /* Arrange items in a single column */
    align-items: center;
  }

  .feature {
    width: 100%; /* Full width for smaller screens */
    max-width: 600px; /* Optional: Limit width for better readability */
  }

  .feature h3 {
    font-size: 1.25rem;
  }

  .feature p {
    font-size: 0.9rem;
  }
}