* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1850af;
}

.fixed-header {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.fixed-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: white;
}

.logoDiv img {
  width: 100%;
  object-fit: cover;
}

.navBar a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.socialLinks {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.socialLinks a {
  color: white;
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  border-radius: 10px 0;
  font-size: 24px;
  transition: 0.3s ease-in;
}

.socialLinks a:hover {
  border-radius: 0;
}

.hamburgerMenu {
  color: white !important;
  border-radius: 15px 0;
  background: var(--primary);
  font-weight: 900 !important;
  font-size: 25px !important;
  transition: 0.3s ease-in;
}

.hamburgerMenu:hover {
  border-radius: 0;
  background: var(--primary);
}

.heroSection {
  background-image: url("../Images/HeroBG.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.heroRightImg {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.heroRightImg img {
  transform: scale(0.7), rotate(-8deg);
  opacity: 0;
  animation: zoomRotate 1.2s ease forwards;
}

@keyframes zoomRotate{
  0%{
    transform: scale(0.7) rotate(-8deg);
    opacity: 0;
  }

  100%{
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.heroRightImg::before {
  content: " ";
  position: absolute;
  height: 50px;
  z-index: -1;
  width: 400px;
  bottom: 30px;
  border-radius: 50%;
  background-color: #1e1d1d40;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.heroLeftContent {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.heroLeftContent h2 {
  font-weight: 700;
  color: var(--primary);
}

.heroLeftContent h1 {
  font-size: 56px;
  font-weight: 700;
}

.heroLeftContent p {
  font-weight: 600;
  font-size: 16px;
}

.heroBtns {
  display: flex;
  gap: 5px;
  justify-content: left;
  align-items: center;
}

.heroBtns a {
  text-decoration: none;
  padding: 8px 10px;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px ;
  transition: 0.3s ease-in;
}

.heroBtns a:hover {
  border-radius: 0;
  background-color: white;
  color: var(--primary);
  transition: 0.3s ease-in;
}

.serviceBox {
  width: 100%;
  height: 100%;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 20px 0;
  background-color: #0741a32e;
}

.serviceHead {
  display: flex;
  gap: 15px;
  justify-content: left;
  align-items: center;
}

.serviceHead img {
  width: 40px;
  height: 40px;
}

.serviceHead h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.serviceInfo p {
  font-weight: 600;
  font-size: 15px;
  text-align: justify;
}

.aboutSection {
  padding: 15px 0;
  background-color: var(--primary);
}

.aboutInfo {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.aboutInfo h4 {
  font-size: 24px;
  font-weight: 600;
}

.aboutInfo h2 {
  font-weight: 700;
  font-size: 44px;
}

.aboutInfo p {
  font-weight: 600;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background-image: url("../Images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.aboutInfo a {
  text-decoration: none;
  font-weight: 700;
  background-color: white;
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 15px 0;
  transition: 0.3s ease-in;
  display: inline;
}

.aboutInfo a:hover {
  border-radius: 0;
}

.testimonialInfo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonialInfo h4 {
  font-size: 700;
  color: var(--primary);
}

.testimonialInfo h2 {
  font-weight: 700;
  font-size: 44px;
}

.testimonialSlide p {
  font-weight: 600;
}

.test_info {
  display: flex;
  gap: 20px;
}

.test_info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.test_info p strong {
  color: var(--primary);
}

.projectSection h4 {
  font-weight: 700;
  color: var(--primary);
}

.projectSection h2 {
  font-weight: 700;
  font-size: 44px;
}

.projectBox {
  height: 100%;
  min-height: 420px;
  width: 100%;
  border-radius: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.projectBox span {
  display: inline-flex;
  height: 50px;
  width: 50px;
  background-color: var(--primary);
  border-radius: 8px 0;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  transform: rotateX(-90deg);
  transition: transform 0.5s ease-in;
  backface-visibility: hidden;
}

.projectInfo {
  display: inline-flex;
  flex-direction: column;
  margin-top: 5px;
  background: white;
  padding: 10px 15px;
  border-radius: 15px 0;
  transform: rotateX(-90deg);
  transition: transform 0.5s ease-in;
  backface-visibility: hidden;
}

.projectBox:hover span,
.projectBox:hover .projectInfo {
  transform: rotateX(0deg);
}

.project1 {
  background-image: url("../Images/project1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.project2 {
  background-image: url("../Images/project2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.project3 {
  background-image: url("../Images/project3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

footer {
  background: linear-gradient(135deg, #000000, #1a1a1a, #0d0d0d);
  color: white !important;
}

footer h4 {
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

footer ul li {
  margin: 8px 0 !important;
}

footer img {
  max-width: 200px !important;
  filter: brightness(10000);
}

.footerSocialLinks {
  display: flex;
  gap: 10px;
}

.footerSocialLinks a {
  width: 40px;
  height: 40px;
  background-color: white;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 8px 0;
  transition: 0.3s ease-in;
}

.footerSocialLinks a:hover {
  border-radius: 0;
}


section {
  padding: 80px 0;
}


/* ============Contact Form Css =============== */

.contactSection {
  background: #f5f7fb;
  padding: 80px 0;
}

.contactForm {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactForm input,
.contactForm textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contactForm button {
  background: #1850af;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
}

/*================= WP Button =================== */

.whatsappBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 15px;
  border-radius:100%;
  z-index: 1000;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite, shake 3s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}



@media (max-width: 768px) {
  .heroSection {
    background: none;
  }

  .heroLeftContent h1 {
    font-size: 44px;
  }

  .offcanvas {
    background-color: var(--primary);
  }

  .navBar a {
    color: white;
  }

  .heroRightImg::before {
    width: 250px;
    bottom: 10px;
  }
}

