@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Base Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      overflow-x: hidden;
      width: 100%;
    }
    a {
      text-decoration: none;
    }

    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
      margin: 0 auto;
      max-width: 1800px;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 0;
      margin-left: 5%;
      margin-right: 5%;
      flex-wrap: wrap;
    }

     .navitem {
      position: relative;
      color: #92929e;
      font-size: 22px;
      font-family: Arial, sans-serif;
      transition: color 0.3s ease;
    }


    .navitem::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: rgb(0, 0, 0);
      transition: all 0.4s ease;
      transform: translateX(-50%);
    }
    .navitem:hover {
      color: #000000;
      font-weight: 600;
    }
    .navitem:hover::after {
      width: 100%;
    }

   
    .hire-us {
      background-color: #ed1c24;
      color: #fff;
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      margin-left: 35px;
  font-size: 16px;
      /* margin-top: 30px; */
      display: inline-block;
    }

    /* Fullscreen Menu */
    .fullscreen-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: white;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .fullscreen-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-menu.exiting {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

    .fullscreen-nav {
      list-style: none;
      padding: 0;
      text-align: center;
    }

    .fullscreen-nav li {
      margin: 20px 0;
    }
/* Hamburger button */
    #menuToggle {
      position: absolute;
      top: 41px;
      right: 25px;
      z-index: 10001;
      background: transparent;
      border: none;
      display: none;
    }

    /* Hamburger Animated Icon – 3 Lines */
#menuToggle .toggler-icon {
  position: relative;
  width: 30px;
  height: 22px;
  display: inline-block;
}

#menuToggle .toggler-icon div,
#menuToggle .toggler-icon::before,
#menuToggle .toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: black;
  transition: all 0.3s ease;
  left: 0;
}

/* Top line */
#menuToggle .toggler-icon::before {
  top: 0;
}

/* Middle line */
#menuToggle .toggler-icon div {
  top: 9px;
}

/* Bottom line */
#menuToggle .toggler-icon::after {
  bottom: 0;
}

/* Animate to X on open */
#menuToggle.open .toggler-icon::before {
  transform: rotate(45deg);
  top: 9px;
}

#menuToggle.open .toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

#menuToggle.open .toggler-icon div {
  transform: scaleX(0);
}




    /* Show hamburger only below 992px */
    @media (max-width: 992px) {
      #menuToggle {
        display: block;
      }

      .navbar-collapse {
        display: none !important;
      }
    }


/* Header Section */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 60px 40px; */
  margin-left: 6%;
  margin-right: 2%;
  flex-wrap: wrap;
}

.header-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.header-left h1 {
  font-size: 65px;
  margin-bottom: 20px;
  font-weight: 600;
  color: black;
  /* line-height: 104px; */
  font-family: "Poppins", sans-serif;
}

.header-left p {
  font-size: 18px;
      line-height: 23px;
    margin-bottom: 35px;
  color: #555;
}

.get-started-btn {
  background-color: #ed1c24;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}

/* .hire-us {
 
  padding: 10px 20px 10px 20px;
  
} */



@media (max-width:992px) {
  .conmargin{
    margin-bottom: 20px;
  }
  .hire-us {
    margin-left:0%;
  }
  .pr{
    padding: 1px;
  }
  .prh{
    padding-top: 3px;
  }
  
}
.header-right {
  flex: 1;
  z-index: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.header-right img {
  max-width: 60%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-top: 10px;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .header {
    flex-direction: column;
    padding: 40px 41px 0;
    margin-left: 0;
    margin-right: 0;
  }

  .header-left h1 {
    font-size: 36px;
  }

  .header-left p {
    font-size: 16px;
  }
}

/* about section css  */

.about-section {
  background-image: url("assets/images/bgimage.jpg"); /* Change this path */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  margin-top: -6rem;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-right {
  flex: 1;
  min-width: 300px;
}

.about-right h2 {
  font-size: 47px;
  margin-bottom: 20px;
  color: #fff;
}

.about-right p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #f0f0f0;
  line-height: 1.7;
}

.read-more-btn {
  background-color: #ed1c24;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #c4111a;
}
@media(max-width:1227px){
.about-section{
  margin-top: -7rem;
}
.header-right img{
  max-width: 80%;
}
}
@media(max-width:1080px){
.about-section{
  margin-top: -6rem;
}
.header-right img{
  max-width: 86%;
}
}
@media(max-width:992px){
.about-section{
  margin-top: -6rem;
}
.header-right img{
  max-width: 90%;
}
}
@media(max-width:880px){
.about-section{
  margin-top: -2rem;
}
.header-right img{
  max-width: 100%;
}
}

            
@media(max-width:768px){

  .header-right img{
  margin-top: 15px;
            max-width: 100%;
}
.header-left{
  max-width: 646px;
}
  .about-right h2 {
  font-size: 2.5rem;
}
.about-right p {
  font-size: 17px;
  line-height: 1.3;
}
}


/* icons css  */
 .image-container {
      /* max-width: 1300px; */
      width: 100%;
      height: 200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      overflow: hidden;
      padding: 0 10px;
    }

    .image-container img {
      /* height: 100%; */
      width: 13vw;
      object-fit: contain;
      flex-shrink: 1;
    }

    @media (max-width: 768px) {
      .image-container {
        padding: 0 5px;
        height: 120px;
      }
    }

/* our core services css  */
.services-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #000000;
}

.card-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  border: 1px solid rgb(131, 131, 131);
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
  text-align: left;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  margin-top: 20px;
  height: 60px;
  width: 62px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 27px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

.service-card p {
  font-size: 16px;
  color: #393939;
  line-height: 1.6;
}
@media (max-width:768px) {

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #000000;
}

}
/* recognize your success css  */

.stats-section {
  background-image: url("assets/images/bgimage.jpg"); /* replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.overlay {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.stats-heading {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.2;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  flex: 1 1 200px;
  min-width: 200px;
}

.stat-item h3 {
  font-size: 3.3rem;
  margin-bottom: 10px;
  color: #00ffc3;
}

.stat-item p {
  font-size: 18px;
  color: #f0f0f0;
}
@media (max-width:768px) {
  .stats-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.3;
}
.stat-item h3 {
  font-size: 2.7rem;
  margin-bottom: 8px;
}
}
/* get a quote css  */

.quote-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.quotecontainer {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-heading {
  text-align: center;
  font-size: 44px;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #01143c;
  font-weight: bold;
}
.quote-heading2 {
  /* text-align: center; */
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #000000;
  font-weight: bold;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input,
.form-row textarea {
  flex: 1;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 10px;
  font-size: 16px;
  background-color: transparent;
  outline: none;
  color: #333;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
}

.submit-btn {
  display: inline-block;
  background-color: #ed1c24;
  color: white;
  border: none;
  text-align: center;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  width: fit-content;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #c4111a;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
  .quote-heading {
  text-align: center;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 50px;
  color: #01143c;
  font-weight: bold;
}
}

/* work css  */



/* ===== WORK SECTION ===== */
.work-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.work-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}
.work-nav {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
.work-nav li {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s;
  color: #555;
}
.work-nav li.active,
.work-nav li:hover {
  background: #ed1c24;
  color: #fff;
}

/* GALLERY GRID */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item[data-category="website-design"] img {
  object-position: top;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.workviewall{
  margin-top: 30px;
}
.workviewall a{
  padding: 11px 20px ;
  border-radius: 5px;
  text-align: center;
   background-color: red; 
   color: white;
  }
  .workviewall a:hover{
    transition: all ease.2s;
    background-color: #ed1c24;
  } 
/* MOBILE */
@media (max-width: 768px) {
  .work-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-item img{
    height: 400px;
  }
  .work-nav{
    display: contents;
  }
  .work-gallery{
    margin-top: 20px;
  }
  .work-section {
  padding: 55px 20px;
}
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}







/* testimonials css  */

.testimonial-section {
  padding: 80px 20px;
  background-color: transparent;
  text-align: center;
  position: relative;
}

.testimonial-heading {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 50%; /* Show 2 cards at a time */
  box-sizing: border-box;
  border: 1px solid black;
  margin: 0 10px;
  padding: 40px 30px;
  text-align: left;
  background: white;
  border-radius: 8px;
}

.feedback {
  width: 90%;
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
}

.testimonial-card span {
  font-size: 14px;
  color: #666;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgb(255, 255, 255);
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 5px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.arrow.left {
  left: -7px;
}

.arrow.right {
  right: -7px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%; /* On mobile: show 1 at a time */
  }
  .arrow {
    top: 60%;
  }
  .feedback {
    max-width: 90%;
  }
  .testimonial-section {
  padding: 20px 20px 80px;
}
}

/* footer css  */
footer {
  padding-top: 20px;
  background-color: #01143c;
}
.footer-a-container {
  margin-bottom: 4px;
}