* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* container */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 30px;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 0;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  background: rgba(244,244,244,0.95);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  padding: 8px 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  display: block;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 48px;
}

.btn {
  flex-shrink: 0;
}

.menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: #1d2b6b;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2f2a8b;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #2f2a8b;
  transform: translateY(-2px);
}

.btn {
  background: #2f2a8b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #1d2b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 42, 139, 0.3);
}

/* HERO */

.hero {
  min-height: 100vh;
  background: url("images/Home.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}


.logo img {
  height: 45px;
}

.menu {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: #1d2b6b;
  font-size: 15px;
}

.btn {
  background: #2f2a8b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2f2a8b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFD600;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.mobile-menu-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/on-yellow-home-box.png');
  background-repeat: repeat;
  background-size: 200px;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 20px;
  z-index: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #E53935;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.mobile-nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #E53935;
  transition: width 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a:active::after {
  width: 100%;
}

.mobile-nav a:hover {
  color: #E53935;
  transform: scale(1.05);
}

.mobile-enquiry-btn {
  background: #E53935;
  color: white !important;
  padding: 15px 40px;
  border-radius: 30px;
  margin-top: 20px;
  font-size: 18px !important;
}

.mobile-enquiry-btn:hover {
  background: #C62828;
  transform: scale(1.05) !important;
}

.mobile-enquiry-btn::after {
  display: none;
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #ffc800;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #e5e5e5;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc800;
  color: #000;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #ffdb4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 200, 0, 0.4);
}

/* scroll */

.scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  letter-spacing: 2px;
  font-size: 12px;
  z-index: 2;
  font-weight: 500;
}

.scroll::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
  margin-top: 10px;
}




.highlight-section {
  background: #f7c400;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* background image layer */
.highlight-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('/images/on-yellow-home-box.png');
  background-repeat: repeat-x;
  background-size: 250px;
  background-position: center;

  opacity: 0.2; /* change PNG opacity here */

  z-index: 0;
}

.brochure-btn {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;

  animation: rotateBtn 10s linear infinite;
}

.brochure-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes rotateBtn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.highlight-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
}
/* LEFT */
.highlight-left {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #000;
  flex: 1;
}

.clients {
  display: flex;
  position: relative;
}

.circle {
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 3px solid #f7c400;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.circle:nth-child(1) {
  z-index: 3;
}

.circle:nth-child(2) {
  z-index: 2;
  margin-left: -16px;
}

.circle:nth-child(3) {
  z-index: 1;
  margin-left: -16px;
}

.clients-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.clients-count {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.clients-label {
  font-weight: 400;
  font-size: 12px;
  color: #1a1a1a;
  line-height: 1.4;
}

/* CENTER */
.highlight-center {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}



.brochure-btn:hover {
  transform: scale(1.05);
 /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.brochure-text {
  display: block;
  line-height: 1.3;
  letter-spacing: 0.5px;
  max-width: 70px;
}

.arrow {
  font-size: 24px;
  color: #3c3fa6;
  margin-top: 4px;
  font-weight: bold;
}

/* RIGHT */
.highlight-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: flex-end;
}

.highlight-right h3 {
  color: #1e2d7a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.video-box {
  width: 180px;
  height: 95px;
  background: #fff;
  border: 3px solid #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





/* about */

.about-section {
  padding: 50px 0;
  position: relative;
  background-color: #f8f8f8;
}

/* small top badge */

.about-tag {
  display: inline-block;
  border: 2px solid #3c3fa6;
  padding: 10px 22px;
  border-radius: 30px;
  color: #3c3fa6;
  font-size: 13px;
  margin-bottom: 30px;
  font-weight: 500;
}

/* title */

.about-title {
  font-size: 16px;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 12px;
  font-weight: 400;
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1e2d7a;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* layout */

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* description */

.about-text {
  font-size: 14px;
  color: #999;
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 400;
  font-style: italic;
}

/* accordion */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #fff;
  padding: 20px 26px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
  background: #fff;
  border-color: #e5e5e5;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #e74c3c;
  font-size: 15px;
}

.accordion-item.active .accordion-title {
  color: #e74c3c;
}

.accordion-title span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-title span:first-child::before {
  content: "●";
  font-size: 12px;
  color: #e74c3c;
}

.accordion-title span:last-child {
  font-size: 24px;
  font-weight: 300;
  color: #333;
}

.accordion-content {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  display: none;
  font-weight: 400;
  padding-left: 24px;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* image */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  filter: blur(8px);
}





/* news */
.news-section {
  background: #3c3fa6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background overlay image */
.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/on-blue-bg-yellow.png") center/contain no-repeat;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.news-section .container {
  position: relative;
  z-index: 2;
}

/* top badge */

.news-badge {
  display: inline-block;
  background: #ffc400;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #1a1a1a;
}

/* heading */

.news-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.news-title span {
  color: #ffc400;
  font-style: italic;
  font-weight: 500;
}

/* cards */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

/* card */

.news-card {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.news-img {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  margin-bottom: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 18px;
}

/* date */

.news-date {
  color: #555;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
  flex-shrink: 0;
}

/* title */
.news-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

/* text */

.news-text {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
  margin: 0;
  flex: 1;
}



/*achievements*/

.achievements {
  padding: 80px 0 60px;
  background: #f8f8f8;
}

/* layout */

.achievements-grid {
  display: grid;
  grid-template-columns: 1.5fr 1px 1fr 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* left */

.achievements small {
  letter-spacing: 2px;
  color: #999;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.achievements h2 {
  color: #e74c3c;
  font-size: 32px;
  margin-top: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* divider */

.divider {
  width: 1px;
  height: 100px;
  background: #ddd;
}

/* stats */

.stat-number {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 8px;
  color: #999;
  letter-spacing: -1px;
}

.stat-number::after {
  content: '+';
  font-size: 32px;
  vertical-align: super;
  margin-left: 2px;
}

.stat-text {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  font-weight: 400;
}

/* LOGO STRIP */

.logo-strip {
  margin-top: 60px;
  background: #ffc400;
  overflow: hidden;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  font-size: 24px;
  animation: scroll 18s linear infinite;
  font-weight: 600;
  color: #1a1a1a;
}

.logo-track span {
  letter-spacing: 2px;
}

/* animation */

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}


/* CTA Banner */
.cta-banner {
  background: #FFD600;
  padding: 40px 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text {
  font-size: 28px;
  font-weight: 700;
  color: #1e2d7a;
  margin: 0;
  line-height: 1.3;
}

.cta-btn {
  background: #1e2d7a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #2f2a8b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 45, 122, 0.3);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 30px 0;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-text {
    font-size: 22px;
  }

  .cta-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-text {
    font-size: 18px;
  }

  .cta-btn {
    padding: 11px 28px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
}

/* testimonial */

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-block: 80px;
  background: url("images/Backpage.jpg") center/cover no-repeat;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 60px;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.testimonials-carousel {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  background: linear-gradient(135deg, #FFD600 0%, #FFC400 100%);
  padding: 60px 80px;
  text-align: center;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 25px;
  font-size: 24px;
}

.testimonial-card h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
  max-width: 800px;
  width: 100%;
  margin: 25px auto 0;
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding: 0 40px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.quote {
  position: absolute;
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  font-family: Georgia, serif;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
  z-index: 1;
}

.quote-left {
  top: 20px;
  left: 20px;
}

.quote-right {
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
}

.divider02 {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E53935, transparent);
  margin: 25px auto 0;
  border: none;
}

/* Testimonial Navigation */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #E53935;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  font-weight: 300;
  line-height: 1;
}

.testimonial-nav:hover {
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  color: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 25px rgba(229, 57, 53, 0.4);
}

.testimonial-nav:active {
  transform: translateY(-50%) scale(1.05);
}

.testimonial-prev {
  left: -25px;
}

.testimonial-next {
  right: -25px;
}

/* Testimonial Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.testimonial-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: #E53935;
  border-color: #E53935;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.2);
}

/* FOOTER CARD */

.footer-wrapper {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-card {
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* brand */

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3c3fa6;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-btn svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.email-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.email-btn:hover {
  background: #2f2a8b;
  transform: translateY(-2px);
}

.social-title {
  margin-top: 25px;
  color: #FFD600;
  font-size: 14px;
  font-weight: 600;
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social a:hover {
  transform: translateY(-3px);
}

.social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* links */

.footer-links h3,
.footer-contact h3 {
  color: #FFD600;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.links-grid {
  display: flex;
  gap: 40px;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

ul li a:hover {
  color: #FFD600;
}

/* contact */

.footer-contact li {
  margin-bottom: 18px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer-contact .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.footer-contact .icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* bottom */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #3c3fa6;
}

.craftwhrt-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #3c3fa6 !important;
}

/* responsive */

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Responsive Styles */

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .nav-inner {
    padding: 10px 20px;
  }

  .menu {
    gap: 25px;
  }

  .menu a {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .highlight-wrapper {
    gap: 30px;
  }

  .highlight-right {
    gap: 25px;
  }

  .about-wrapper {
    gap: 50px;
  }

  .news-grid {
    gap: 25px;
  }
  
  .news-card {
    padding: 16px;
  }
  
  .news-img {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 20px;
    padding: 0 15px;
  }

  .nav-inner {
    padding: 8px 15px;
    border-radius: 50px;
  }

  .logo img {
    height: 38px;
  }

  .menu {
    display: none;
  }

  .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
   padding: 160px 0 80px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .scroll {
    left: 20px;
    bottom: 30px;
  }

  .highlight-section {
    padding: 50px 0;
  }

  .highlight-wrapper {
    flex-direction: column;
    gap: 35px;
  }

  .highlight-left,
  .highlight-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .highlight-left {
    flex-direction: column;
    align-items: center;
  }

  .highlight-right {
    flex-direction: column;
    align-items: center;
  }

  .brochure-btn {
    width: 120px;
    height: 120px;
  }

  .video-box {
    width: 180px;
    height: 95px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-heading {
    font-size: 36px;
  }

  .news-section {
    padding: 80px 0;
  }

  .news-badge {
    margin-bottom: 40px;
  }

  .news-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-card {
    padding: 20px;
  }

  .news-img {
    height: 180px;
  }

  .achievements {
    padding-block: 80px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Mobile Testimonials - Complete Redesign */
  .testimonials-carousel-wrapper {
    padding: 0 15px;
    margin-bottom: 60px;
    max-width: 100%;
    width: 100%;
  }

  .testimonials-carousel {
    border-radius: 15px;
    width: 100%;
  }

  .testimonials-track {
    width: 100%;
  }

  .testimonial-card {
    padding: 30px 15px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-rating {
    font-size: 18px;
    gap: 4px;
    margin-bottom: 15px;
  }

  .testimonial-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .testimonial-card span {
    font-size: 11px;
    margin-bottom: 15px;
    display: block;
    line-height: 1.3;
  }

  .testimonial-card p {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 10px;
    margin: 15px auto 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .quote {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .quote-left {
    top: 10px;
    left: 10px;
  }

  .quote-right {
    bottom: 10px;
    right: 10px;
  }

  .divider02 {
    width: 70px;
    height: 2px;
    margin: 15px auto 0;
  }

  .testimonial-nav {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .testimonial-prev {
    left: -15px;
  }

  .testimonial-next {
    right: -15px;
  }

  .testimonial-dots {
    margin-top: 20px;
    gap: 8px;
  }

  .testimonial-dot {
    width: 11px;
    height: 11px;
  }

  .footer-wrapper {
    padding: 80px 20px;
  }

  .footer-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-btn {
    padding: 14px 26px;
    font-size: 14px;
  }

  .circle {
    width: 40px;
    height: 40px;
  }

  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .circle:nth-child(2),
  .circle:nth-child(3) {
    margin-left: -12px;
  }

  .clients-count {
    font-size: 14px;
  }

  .clients-label {
    font-size: 11px;
  }

  .highlight-left p {
    font-size: 13px;
  }

  .highlight-right h3 {
    font-size: 16px;
  }

  .brochure-btn {
    width: 100px;
    height: 100px;
    font-size: 10px;
  }

  .video-box {
    width: 140px;
    height: 80px;
  }

  .about-heading {
    font-size: 24px;
  }

  .about-text {
    font-size: 13px;
  }

  .accordion-item {
    padding: 16px 20px;
  }

  .accordion-title {
    font-size: 14px;
  }

  .accordion-content {
    font-size: 12px;
  }

  .news-title {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .news-card {
    padding: 16px;
    min-height: 280px;
  }

  .news-img {
    height: 140px;
  }

  .news-date {
    font-size: 12px;
  }

  .news-text {
    font-size: 11px;
  }

  .achievements h2 {
    font-size: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-text {
    font-size: 12px;
  }

  /* Mobile Testimonials - Extra Small Screens */
  .testimonials-carousel-wrapper {
    padding: 0 10px;
    margin-bottom: 50px;
    max-width: 100%;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-carousel {
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
  }

  .testimonials-track {
    width: 100%;
  }

  .testimonial-card {
    padding: 25px 12px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-rating {
    font-size: 16px;
    gap: 3px;
    margin-bottom: 12px;
  }

  .testimonial-card h4 {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .testimonial-card span {
    font-size: 10px;
    margin-bottom: 12px;
    display: block;
    line-height: 1.3;
  }

  .testimonial-card p {
    font-size: 12px;
    line-height: 1.55;
    padding: 0 8px;
    margin: 12px auto 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .quote {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .quote-left {
    top: 8px;
    left: 8px;
  }

  .quote-right {
    bottom: 8px;
    right: 8px;
  }

  .divider02 {
    width: 60px;
    height: 2px;
    margin: 12px auto 0;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .testimonial-prev {
    left: -10px;
  }

  .testimonial-next {
    right: -10px;
  }

  .testimonial-dots {
    margin-top: 18px;
    gap: 7px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .footer-card {
    padding: 35px 25px;
    border-radius: 30px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .email-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .social-title {
    font-size: 13px;
  }

  .social a {
    width: 28px;
    height: 28px;
  }

  .social img {
    width: 24px;
    height: 24px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 14px;
  }

  ul li {
    font-size: 12px;
  }

  .footer-contact .icon img {
    width: 18px;
    height: 18px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .circle {
    width: 36px;
    height: 36px;
  }

  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .clients-count {
    font-size: 13px;
  }

  .clients-label {
    font-size: 10px;
  }

  .brochure-btn {
    width: 90px;
    height: 90px;
  }

  .video-box {
    width: 120px;
    height: 70px;
  }

  .highlight-right h3 {
    font-size: 14px;
  }

  .about-heading {
    font-size: 22px;
  }

  .about-tag {
    padding: 8px 18px;
    font-size: 12px;
  }

  .accordion-item {
    padding: 14px 18px;
  }

  .accordion-title {
    font-size: 13px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-card {
    padding: 14px;
    min-height: 260px;
  }

  .news-img {
    height: 120px;
  }

  .achievements h2 {
    font-size: 22px;
  }

  .stat-number {
    font-size: 24px;
  }

  /* Mobile Testimonials - Very Small Screens */
  .testimonials-carousel-wrapper {
    padding: 0 8px;
    margin-bottom: 40px;
    max-width: 100%;
    width: calc(100% - 16px);
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-carousel {
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
  }

  .testimonials-track {
    width: 100%;
  }

  .testimonial-card {
    padding: 22px 10px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-rating {
    font-size: 14px;
    gap: 2px;
    margin-bottom: 10px;
  }

  .testimonial-card h4 {
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .testimonial-card span {
    font-size: 9px;
    margin-bottom: 10px;
    display: block;
    line-height: 1.3;
  }

  .testimonial-card p {
    font-size: 11px;
    line-height: 1.5;
    padding: 0 6px;
    margin: 10px auto 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .quote {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .quote-left {
    top: 6px;
    left: 6px;
  }

  .quote-right {
    bottom: 6px;
    right: 6px;
  }

  .divider02 {
    width: 50px;
    height: 2px;
    margin: 10px auto 0;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .testimonial-prev {
    left: -8px;
  }

  .testimonial-next {
    right: -8px;
  }

  .testimonial-dots {
    margin-top: 15px;
    gap: 6px;
  }

  .testimonial-dot {
    width: 9px;
    height: 9px;
  }

  .footer-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-brand p {
    font-size: 11px;
  }

  .email-btn {
    padding: 9px 16px;
    font-size: 11px;
  }

  .social a {
    width: 26px;
    height: 26px;
  }

  .social img {
    width: 22px;
    height: 22px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 13px;
  }

  ul li {
    font-size: 11px;
    margin-bottom: 10px;
  }
}


/* ABOUT US PAGE */

/* About Hero Section */
.about-hero {
  min-height: 60vh;
  background: url("images/About-US.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.about-hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 72px;
  line-height: 1.1;
  color: #ffc800;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding: 120px 0 60px;
  }

  .about-hero-subtitle {
    font-size: 12px;
  }

  .about-hero-title {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 36px;
  }
}


/* About Company Section */
.about-company-section {
  padding: 100px 0;
  background: #fff;
}

.about-company-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left - Image with overlapping cards */
.about-company-left{
  position: relative;
}

.about-company-image{
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.feature-card{
  padding: 28px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-yellow{
  background: #ffc400;
}

.feature-card-blue{
  background: #3c3fa6;
}

.feature-icon{
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.feature-title{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card-yellow .feature-title {
  color: #1a1a1a;
}

.feature-card-blue .feature-title {
  color: #fff;
}

.feature-description{
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.feature-card-yellow .feature-description {
  color: #333;
}

.feature-card-blue .feature-description {
  color: rgba(255, 255, 255, 0.95);
}

/* Right - Content */
.about-company-right {
  padding-top: 0;
}

.about-company-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-red {
  color: #e74c3c;
  font-weight: 700;
}

.title-gray {
  color: #7a8ba8;
  font-weight: 400;
}

.red-line{
  width: 60px;
  height: 3px;
  background: #e74c3c;
  margin: 15px 0 30px;
}

.about-company-description {
  font-size: 13px;
  line-height: 1.9;
  color: #999;
  margin-bottom: 40px;
}

/* Stats */
.about-stats {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stat-number-large {
  font-size: 72px;
  font-weight: 700;
  color: #e74c3c;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .about-company-wrapper {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }

  .about-company-title {
    font-size: 36px;
  }

  .stat-number-large {
    font-size: 56px;
  }
}

  .about-company-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-company-title {
    font-size: 32px;
  }

.stat-number-large{
  font-size:56px;
  color:#e31e24;
  font-weight:700;
}

.stat-label{
  font-size:13px;
  color:#555;
}

  .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-company-title {
    font-size: 28px;
  }

  .stat-number-large {
    font-size: 40px;
  }

  .feature-card {
    padding: 25px 20px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
