@import url("https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.containeer {
  width: 85%;
  margin: auto;
}

/* navbar */
.navitem {
  /* padding: 5px 0px; */
  background-color: #fff;
  /* border-bottom: 1px solid #010101; */
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 5;
}
.logo1 {
  width: 200px;
  height: 75px;
  object-fit: cover;
}
.navitem ul li a {
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 1.1em;
  cursor: pointer;
}
.navitem ul li a {
  position: relative;
}
.navitem ul li a::after {
  position: absolute;
  content: "";
  height: 3px;
  left: 0;
  bottom: 0;
  width: 0;
  background: rgb(4, 218, 234);
  transition: width 0.4s;
  border-radius: 10px;
}
.navitem ul li a:hover::after {
  width: 100%;
}
.navitem ul li a:hover {
  color: rgb(4, 218, 234) !important;
  transition: 0.4s ease;
}
.con-btn {
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 1.1em;
}
@media screen and (min-width: 360px) and (max-width: 768px) {
  .navitem ul li a::after {
    left: 0%;
  }

  .navitem ul li a:hover::after {
    width: 100%;
  }

  /*  */
  .navitem-content {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    flex-wrap: wrap; /* Ensure items wrap properly if needed */
  }

  .navitem-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
  }

  .nav-item {
    margin-right: 20px !important;
  }

  .con-btn {
    margin-left: 20px !important; /* Space between nav items and button */
  }
}

/* about section */

.about-section {
  height: 100vh;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.about-section .about-row h2 {
  font-family: Playfair Display, serif;
  font-size: 3.3rem;
  padding-top: 80px;
  font-weight: 800;
}
.about-section .about-row h2 span {
  color: rgb(4, 218, 234);
}
.about-section .about-row p {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.about-btn {
  padding: 10px;
  background-color: #fff;
  color: #fff;
  font-weight: 700;
  border: 2px solid transparent; /* Initial border is transparent */
  position: relative !important;
  overflow: hidden; /* Hide the background when it shrinks */
  transition: color 0.2s ease, border-color 0.2s ease; /* Smooth transition for color and border */
}

.about-btn::before {
  content: "";
  position: absolute !important;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 0;
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.about-btn:hover::before {
  transform: translateX(-100%);
}

.about-btn:hover {
  color: black;
  border-color: black;
}
.about-btn span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 780px) {
  .about-section {
    margin-top: -20px 0;
    margin-bottom: 30px;
  }
  .about-row {
    display: flex;
    align-items: center !important;
    flex-direction: column-reverse;
    margin-top: 0 !important;
    margin-bottom: 10px;
  }
  .about-section .about-row h2 {
    font-size: 2.2rem;
    padding-top: 0px;
  }

  .about-section .about-row img {
    width: 100%;

    /* margin-bottom: 20px; */
    padding-top: 16rem;
  }

  .about-section .about-row p {
    font-size: 0.8rem;
    text-align: justify;
    margin-bottom: 6rem;
  }
  .about-btn {
    margin-top: 30px;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.content-box {
  animation: slideIn 1s ease-out;
}
.animate-title {
  animation: slideIn 1s ease-out;
}
.animate-text {
  animation: slideIn 1.5s ease-out;
}
.image-box {
  animation: slideIn 2s ease-out;
}

/* servives styles */

.services-content {
  background: linear-gradient(to top, #f0f6ff, #f0f6ff, #f0f6ff, #fcfcfc);
  padding: 50px 0px;
  animation: slideIn 1s ease-out;
}
.ser-heading {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding-bottom: 30px;
}
.ser-heading span:nth-child(1) {
  color: #00417a;
  font-family: Playfair Display, serif;
}
.ser-heading span:nth-child(2) {
  color: #000205;
  font-family: Playfair Display, serif;
}

.service-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  overflow: hidden;
  max-width: 500px;
  height: 350px;
  margin: auto;
  border: 1px solid #ddd;
}

.service-content img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.service-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 15px;
}
.sof-h5 {
  color: rgb(26, 159, 169);
}
.web-h5 {
  color: rgb(5, 138, 233);
}
.mob-h5 {
  color: rgb(40, 158, 77);
}
.Ecom-h5 {
  color: rgb(14, 222, 205);
}
.ui-h5 {
  color: rgb(4, 70, 120);
}
.test-h5 {
  color: rgb(124, 25, 230);
}
.service-content p {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
  text-align: justify;
}

.service-content a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-content a:hover {
  color: #0056b3;
}

.service-content:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-content:hover img {
  transform: rotate(360deg) scale(1.1);
}
@media screen and (max-width: 768px) {
  .service-content {
    max-width: 400px;
    height: 250px;
    margin-bottom: 10px;
  }
  .service-content img {
    width: 60px;
    height: 60px;
  }
  .service-content p {
    font-size: 10px;
    text-align: justify;
  }
  .service-content h5 {
    font-size: 1rem;
  }
}
/* about section 2 */
.about-section2 {
  padding: 50px 0 0 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
}

.about-section2 h6 {
  font-size: 3rem;
  font-weight: 600;
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: linear-gradient(to bottom, #0169c4, #046ecb, #0e83e9, #1a8cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .about-section2 {
    padding-bottom: 50px;
  }
  .about-section2 h6 {
    font-size: 2rem;
  }
}
/* contact page style */
.contact-section {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-section h5 {
  font-size: 2rem;
  color: #000205;
  font-weight: bold;
  font-family: Playfair Display, serif;
}
.scroll-text {
  margin-top: 2rem;
}
.scroll-text h6 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  letter-spacing: 1.5px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  opacity: 0;
  border-right: 3px solid rgba(0, 0, 0, 0.75);
}

/* Animation for typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Animation for blinking cursor */
@keyframes blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(0, 0, 0, 0.75);
  }
}

/* Active class that applies animations */
.scroll-text.active h6 {
  opacity: 1;
  animation: typing 4s steps(40) forwards,
    blink 0.75s step-end infinite alternate;
}

/* Class to stop blinking cursor */
.no-blink h6 {
  border-right: none;
}
.contact-section p {
  width: 300px;
  text-align: justify;
}
.contact-form-wrapper {
  max-width: 500px;
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-info div {
  font-size: 16px;
  font-weight: bold;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 10px;
}

.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
input[type="email"] {
  margin-top: 15px;
}
.message-box {
  height: 120px; /* Fixed height */
  resize: none; /* Prevents resizing */
}

.submit-button {
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: rgb(4, 218, 234);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

.submit-button:hover {
  background-color: rgb(26, 159, 169);
}

@media screen and (max-width: 768px) {
  .contact-section {
    margin-top: 15rem;
  }
  .scroll-text h6 {
    font-size: 0.7rem;
  }
}
/* footer style */
footer {
  padding: 50px 0px 0px 20px;
  background-color: #000205;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .row:nth-child(1) {
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
}
footer .first-colmn img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
/* footer .first-colmn p {
  text-align: left;
  text-align: justify;
  margin-top: 10px;
} */
footer p {
  margin-top: 2.5rem;
}
footer p a {
  text-decoration: none;
  padding: 9px 10px;

  color: #fff;
  background-color: #242424;
  border-radius: 50%;
}
footer p a:nth-child(2) {
  margin-left: 10px;
}
footer p a:nth-child(3) {
  margin-left: 10px;
}
footer p a:nth-child(4) {
  margin-left: 10px;
}
footer p a:hover {
  background-color: rgb(4, 218, 234);
  transition: 0.3s ease all;
}

footer h6 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 2rem;
  padding-bottom: 2rem;
  font-family: Playfair Display, serif;
}
footer ul {
  list-style: none;
  text-align: left;
}
footer ul li {
  color: #fff;
  line-height: 2.7rem;
}
footer ul li a {
  text-decoration: none;
  color: #f0f6ff;
  font-size: 16px;
  transition: transform 0.3s ease-out;
  display: inline-block;
}
footer ul li a:hover {
  color: rgb(4, 218, 234);
  transform: translate(0, 5px);
}
footer ul li a i {
  padding-right: 10px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  footer {
    height: auto;
  }
  footer h6 {
    margin-top: 3rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 7rem;
  }
}
.allright {
  color: #ffffff;
}
