* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ================= GLOBAL CONTAINER ================= */
.container {
  width: 100%;
  padding: 0 40px;
  /* Default spacing for all sections */
}

/* ================= TOP BAR ================= */
.topbar {
  background: #E9E9E9;
  padding: 8px 0;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
}

.social a {
  margin-left: 10px;
  color: #222;
  text-decoration: none;
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
}

/* FACEBOOK ICON */

.social a.fb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/fb.svg") no-repeat center;
  background-size: contain;
}


/* Twitter ICON */

.social a.twitter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/twitter.svg") no-repeat center;
  background-size: contain;
}



/* INSTAGRAM ICON */

.social a.insta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/insta.svg") no-repeat center;
  background-size: contain;
}

/* ================= HEADER ================= */
header {
  background: #2d2d2d;
  color: #fff;
}

/* REMOVE LEFT PADDING ONLY FOR HEADER */
header .container {
  padding-left: 0;
  /* ✅ No left space */
  padding-right: 40px;
  /* keep right spacing */
}

.nav-container {
  display: flex;
  align-items: center;
  /*justify-content:space-between;
  padding:20px 0;*/
  gap: 30px;
}

nav {
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  background: #A85530;
}

.logo img {
  width: 100%;
  max-width: 294px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: "Source Sans 3", sans-serif;

}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav-links .active a,
.nav-links a:hover {
  color: #f26522;
}

.btn {
  background: #f26522;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  background:
    url('/static/frontend/img/pages/HeroHeaderHomePage.jpg') center/cover;
  color: #fff;
  padding: 150px 0;
}


.hero-inner {
  background:
    url('/static/frontend/img/pages/HeroHeaderInnerPages.jpg') center/cover;
  color: #fff;
  background-color: #1C2124;
  padding: 150px 0;
}

.hero-service {
  background:
    url('/static/frontend/img/pages/HeroHeaderServiceInner.jpg') center/cover;
  color: #fff;
  background-color: #1C2124;
  padding: 150px 0;
}


.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  max-width: 650px;
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 0px 40px 0px;
  max-width: 1980px;
  margin: auto;
}

.section-label {
  display: block;
  text-align: center;
  color: #A85530;
  margin-bottom: 10px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
}

h2 {
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  font-family: "Source Sans 3", sans-serif;
  padding: 30px;
  border-radius: 0px;
  border: 1px solid #EBEBEB;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card .icon {
  text-align: Center;
  margin-bottom: 20px;
}

.services .center {
  text-align: Center;
  margin-top: 24px;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.service-card h4 {
  font-size: 16px;
  font-weight: bold;
  padding-right: 60px;
  line-height: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.6em * 3);
}

.learn-btn {
  margin-top: 30px;
  align-items: center;
  gap: 8px;
  text-align: center;

}

.learn-btn a {
  padding: 5px 55px 5px 15px;
  border: 1.5px solid #d6632f;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #d6632f;
  transition: all 0.3s ease;
  position: relative;
}

.learn-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/arrow_outward.svg") no-repeat center;
  background-size: contain;
}

/* ================= ABOUT NEW ================= */

.about-new {
  padding: 40px 0;
  text-align: center;
  max-width: 1980px;
  margin: auto;
}

.about-title {
  font-size: 48px;
  margin-bottom: 60px;
  font-family: "Source Sans 3", sans-serif;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0px 30px;
  width: 100%;
  float: right;
  background: #E9E9E9;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.corner-img {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 128px;
  pointer-events: none;
}

/* IMAGE OVERFLOW EFFECT */

.about-card img {
  margin-left: 0px;
  margin-top: 40px;
}

/* LEFT */
.about-left {
  flex: 1;
  padding: 16px 0px;
}

.about-left p {
  line-height: 18px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  text-align: left;
}

.about-left img {
  width: 100%;
  border-radius: 0px;
}

/* RIGHT */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 0px 40px;
}

.about-right h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.about-stats strong {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  margin-bottom: 5px;
}

.about-stats span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  color: #000;
}

.btn-about-wrapper {
  text-align: right;
  padding-right: 40px
}

/* BUTTON */
.about-btn {
  display: inline-block;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 40px 0;
  max-width: 1980px;
  margin: auto;
  clear: both;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card-batch-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card-batch {
  border-radius: 50%;
  background: #f26522;
  color: #fff;
  padding: 10px 15px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
}

.testimonial-card-name h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  margin-bottom: 5px;
}

.testimonial-card-name span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  margin-bottom: 5px;
}

.testimonial-card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
}

/* ================= PARTNERS ================= */
.partners {
  padding: 40px 0;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 24px 40px;
  flex-wrap: wrap;
}

.partners-grid img {
  opacity: 0.7;
  transition: 0.3s;
}

.partners-grid img:hover {
  opacity: 1;
}

.partners .center {
  text-align: center;
  margin-top: 40px;
}

/* ================= NEW FOOTER ================= */

.footer {
  background: #3c3c3c;
  color: #fff;
  padding: 10px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left */
.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 2;
}

/* Center */
.footer-center {
  font-size: 14px;
  color: #ddd;
  margin-right: 20px;
}

/* Right */
.footer-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-right span {
  font-size: 14px;
  color: #ddd;
}

.social-icons a {
  margin-left: 5px;
  color: #222;
  text-decoration: none;
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
}

/* FACEBOOK ICON */

.social-icons a.fb_white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/fb_white.svg") no-repeat center;
  background-size: contain;
}


/* Twitter ICON */

.social-icons a.twitter_white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/twitter_white.svg") no-repeat center;
  background-size: contain;
}



/* INSTAGRAM ICON */

.social-icons a.insta_white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url("/static/frontend/img/insta_white.svg") no-repeat center;
  background-size: contain;
}



/* Responsive */
@media(max-width:768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-left {
    justify-content: center;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px) {
  .container {
    padding: 0 40px;
  }

  header .container {
    padding-left: 0;
    padding-right: 40px;
  }

  .logo {
    padding: 5px;
  }

  .btn {
    white-space: nowrap;
  }

  .nav-links a {
    font-size: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    flex-wrap: nowrap;
  }


}

@media(max-width:992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 30px;
    width: 100%;
  }

  .about-card img {
    width: 100%;
    margin-left: 0;
    min-height: 200px;
  }

  .corner-img {
    display: none;
  }

  .about-right {
    text-align: center;
  }

  .about-title {
    font-size: 34px;
  }


}

@media(max-width:768px) {

  .container {
    padding: 0 20px;
  }

  .topbar .container {
    display: block;
    text-align: center;
  }

  .social {
    padding-top: 5px;
  }

  header .container {
    padding-left: 0;
    padding-right: 20px;
  }

  .logo {
    padding: 5px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #2d2d2d;
    flex-direction: column;
    width: 250px;
    padding: 20px;
    display: none;
  }

  .btn {
    white-space: nowrap;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .btn-about-wrapper {
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }


}

@media(max-width:600px) {

  .about-stats {
    grid-template-columns: 1fr;
  }


}

@media only screen and (orientation: landscape) {
  .topbar .container {
    display: flex;
    text-align: center;
  }

}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}