body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  padding-top: 70px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.navbar {
  background-color: rgb(231, 229, 229);
  padding: 2px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Make navbar fixed */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff512f;
  /* Orange hover color */
}

.logo img {
  width: 130px;
  vertical-align: middle;
}

.main-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(80vh - 60px);
  /* Leaves ~20% gap at bottom */
}

.left-content {
  width: 50%;
  padding: 24px;
}

.contact-section {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 30px;
}

.btn-contact {
  padding: 8px 10px;
  font-size: 15px;
  gap: 8px;
  background: #ff512f;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-line {
  font-size: 18px;
  padding-top: 27px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-line:hover {
  color: #f0257d;
  cursor: pointer;
}

.btn-contact:hover {
  background: #f0257d;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.left-content h2 {
  color: #0b0100;
  font-size: 33px;
}

.left-content h2 b {
  color: #4024dd;
}

.left-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #333;
}

.left-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.btn-main {
  padding: 15px 25px;
  background: #ff512f;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-main:hover {
  background: #dd2476;
}

.right-content {
  width: 50%;
  text-align: right;
  height: 100%;
  padding: 0;
  margin: 0;
}

.right-content img {
  width: 100%;
  max-width: none;
  height: 80vh;
  object-fit: cover;
}

/* media queries here for responsive website */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    /* Stack vertically */
    text-align: center;
  }

  .left-content,
  .right-content {
    width: 100%;
    /* Full width on phone */
  }

  .right-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Avoid cropping in small screen */
  }

  .contact-section {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

}

/* Our Core services */
.services-section {
  padding: 50px 10px;
  text-align: center;
  background: #f8faff;
  margin: 0px;
}

.services-section p {
  padding-bottom: 50px;
  font-family: serif;
}

.services-section h2 {
  font-size: 42px;
  margin-bottom: 35px;
  font-family: sans-serif;
}

.services-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 350px;
  text-align: left;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3 {
  margin-top: 15px;
  font-size: 22px;
}

.service-card p {
  margin: 15px 0;
  color: #555;
  font-size: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

/* Our Experience section */
.experience-area {
  background: url('img/background.jpg') center/cover fixed no-repeat;
  position: relative;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.experience-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Black transparent overlay */
  z-index: 1;
}

.experience-area h2 {
  position: relative;
  z-index: 2;
  font-size: 36px;
  margin-bottom: 50px;
}

.experience-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.stat {
  position: relative;
  padding: 0 20px;
}

.stat:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.stat h3 {
  font-size: 48px;
  color: #ffc107;
  /* Yellow color for numbers */
  margin: 0;
}

.stat p {
  margin: 8px 0 0;
  font-size: 18px;
  ;
}

/* What We Provide Section */
.expert-services {
  text-align: center;
  padding: 60px 20px;
}

.expert-services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sub-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
}

.service-card:hover .icon-wrapper {
  border-radius: 15px;
  /* rectangle like on hover */
  background: #ffe082;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 22px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* About US and our team ceo and founder section */
.about-section {
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  flex-wrap: wrap;
}

.text-content {
  max-width: 500px;
}

.name-tag {
  background: #0a2640;
  color: white;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.text-content h1 {
  font-size: 36px;
  margin: 0;
  color: #111;
}

.text-content h2 {
  font-size: 30px;
  color: #007bff;
  margin-top: 10px;
}

.description {
  margin: 20px 0;
  color: #444;
}

.get-in-touch {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 10px;
}

.image-content img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .image-content img {
    width: 200px;
    margin-bottom: 20px;
  }
}

/* Brands We work With */
.brands-section {
  text-align: center;
  padding: px 20px;
}

.brands-section h2 {
  font-size: 32px;
  margin-bottom: 2%;
}

.brands-subtext {
  color: #555;
  margin-bottom: 40px;
}

.slider {
  height: 100px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(200px * 14);
  /* 7 images × 2 repeats */
  animation: scroll 20s linear infinite;
}

.slide {
  width: 200px;
  height: auto;
  padding: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Contact US Form Section */
#contactform{
  background-image: url(img/82cd6f9ff9a01f13b3234b5e0d2c4d83.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  min-height: 100vh;
  color: white; /* Optional: if background is dark */
  
}
.contact-form {
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contactform-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fbfbfb;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.contactform-left {
  background-color: #3e5ec8;
  color: white;
  padding: 40px;
  flex: 1 1 300px;
}

.contactform-left h2 {
  margin-bottom: 30px;
}

.contactform-left p {
  margin: 15px 0;
  font-size: 15px;
}

.contactform-left i {
  margin-right: 10px;
}

.contactform-right {
  padding: 40px;
  flex: 2 1 300px;
  background-color: #fff;
}

.contactform-right h2 {
  color: #0c2340;
  margin-bottom: 10px;
}

.contactform-right p {
  color: #999;
  margin-bottom: 30px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  background-color: #f9f7f7;
  border-radius: 5px;
  font-size: 14px;
}

form textarea {
  resize: none;
  height: 100px;
}

form button {
  background-color: #ff512f;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

form button:hover {
  background-color: #c71334;
}

/* RESPONSIVE PART */

@media (max-width: 768px) {
  .contactform-container {
    flex-direction: column;
  }

  .contactform-left,
  .contact-right {
    padding: 30px 20px;
  }

  .contactform-left h2,
  .contact-right h2 {
    font-size: 22px;
  }

  form input,
  form textarea {
    font-size: 13px;
  }

  form button {
    width: 100%;
    padding: 14px;
  }
}
/* Footer section */
.footer {
  background-color: #030303;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-top .footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-categories span {
  color: #aaa;
  font-size: 14px;
  margin: 0 10px;
}

.footer-divider {
  border: 0.5px solid #444;
  margin: 30px auto;
  max-width: 800px;
}

.footer-middle {
  margin: 30px 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #aaa;
}

.footer-icons a img {
  width: 35px;
  height: 35px;
  margin: 0 10px;
  background: #1d1d1d;
  padding: 8px;
  border-radius: 10px;
}

.footer-bottom .footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.footer-bottom .footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-icons a img {
    margin: 5px;
  }

  .footer-bottom .footer-links {
    flex-direction: column;
    gap: 5px;
  }
}
