:root {
  /* Fonts */
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lora", serif;
  /* Colors */
  --accent: #ffb703;
  --p2: rgba(0, 0, 0, 0.5);
  --color-default: #2d2f36; /* Dark Gray for body text */
  --color-p2: #101e46; /* Fresh Blue for main brand color */
  --color-primary: #3b76bb; /* Fresh Blue for main brand color */
  --color-secondary: #ff6b6b; /* Coral Red for highlights */
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}
span {
  color: var(--color-secondary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/* Topbar */
.topbar {
  background: #f8f9fa;
  color: #333;
  font-size: 14px;
  padding: 6px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.topbar-left a {
  margin-right: 12px;
  display: inline-block;
}

.topbar-left img {
  width: 16px;
  height: 16px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.topbar-left img:hover {
  filter: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-right .phone {
  color: #1e3a8a;
  font-weight: 600;
}

.btn-small {
  padding: 6px 14px;
  background: #facc15;
  color: #111;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-small:hover {
  background: #eab308;
  color: white;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-p2));
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f87171;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(to right, var(--color-primary), var(--color-p2));
  color: #fff;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.3;
}

.hero-text h1 span {
  color: #f87171;
}

.hero-text p {
  margin: 20px 0;
  font-size: 16px;
  color: #d1d5db;
}

.btn {
  display: inline-block;
  background: #f87171;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover {
  background: #dc2626;
}

.hero-img img {
  width: 480px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/* services */
.services {
  background-color: #fff;
  width: 100%;
}
.services .info {
  width: 50%;
  margin: auto;
  text-align: center;
}
.services .info h1 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.services .info h2 {
  font-size: 50px;
  /* position: absolute; */
  text-align: center;
  /* 
  top: 60px; */
  color: var(--color-p2);
  font-family: var(--font-secondary);
}

.services .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.services .card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  height: 300px;
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Image covers whole card */
.services .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Title overlay (hidden by default) */
.services .card h3 {
  position: absolute;
  bottom: 0;
  top: 0;
  width: 100%;
  background: rgba(30, 58, 138, 0.8);
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.services .card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0px 10px 22px rgba(0, 0, 0, 0.2));
}

.services .card:hover img {
  transform: scale(1.1);
}

.services .card:hover h3 {
  opacity: 1;
}

.services .cards .centerlogo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .cards .centerlogo img {
  height: 200px;
}

/* brands */
.brands {
  padding: 60px;
  background: #f8fafc;
  text-align: center;
}
.brands h1 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 180px;
  opacity: 0.15;
}
.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 20%; /* 5 logos per row */
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.carousel-item img:hover {
  filter: grayscale(0%);
}

/* Arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 58, 138, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: #1e3a8a;
}

/* Expertise Section */
.expertise {
  padding: 80px 60px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}
.expertise h1 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 40px;
}

/* Card container */
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Individual card */
.expertise-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  position: relative;
}

/* Headings */
.expertise-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 15px;
}

/* Paragraphs */
.expertise-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

/* Hover Effects */
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* about us */
.about-us {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9fafb, #e5e7eb);
}
.about-us h1 {
  text-align: center;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #374151;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-highlights li {
  font-size: 16px;
  color: #111827;
  margin-bottom: 10px;
}

.about-btn {
  background: #1e3a8a;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: var(--color-p2);
}
.engines-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
  text-align: center;
}
.engines-section h1 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.engines-header h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.engines-header p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  height: 500px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.card img {
  max-width: 100%;
  border-radius: 8px;
  height: 400px;
}
.card h3 {
  margin: 10px 0;
  font-size: 18px;
}
.card button {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
.pagination {
  text-align: center;
  margin-top: 20px;
}
.pagination button {
  padding: 10px 15px;
  margin: 0 5px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.pagination button.active {
  background: #0056b3;
}

/* delliver section */
.delivery-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.delivery-section h1 {
  color: transparent;
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.delivery-header {
  text-align: center;
  margin-bottom: 50px;
}

.delivery-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

.delivery-header p {
  color: #555;
  font-size: 1.1rem;
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.delivery-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.delivery-text p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.features li {
  font-size: 1rem;
  margin: 10px 0;
  color: #333;
}

.btn-primary {
  padding: 12px 30px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fb8500;
}

.delivery-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.delivery-image img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

.delivery-image .overlay {
  position: absolute;
  top: 0;
  /* display: none; */
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--p2);
}

/* testimonials */
.testimonials {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}
.testimonials h1 {
  color: transparent;
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.testimonials .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  /* height: ; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.client-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 14px;
  color: #777;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
  padding: 80px 20px;
}
.contact-section h1 {
  color: transparent;
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-p2);
  font-size: 150px;
  opacity: 0.15;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.contact-info h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 16px;
  color: #334155;
  margin-bottom: 10px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e3a8a;
  outline: none;
}

.btn-send {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-image: url("imgs/image.png");
  background-size: cover;
  background-position: center;

  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 50px 20px 20px;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.61);
  padding: 50px 20px;
  border-radius: 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.footer-column h3,
.footer-column h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column p,
.footer-column ul {
  font-size: 16px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  /* color: #e2e8f0; */
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3b82f6;
}
.footer-column iframe {
  height: 200px;
  width: 280px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #e2e8f0;
}

.footer-bottom a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#goTopBtn:hover {
  background: #3b82f6;
}

.fixed-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-buttons a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 30px;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed-buttons .email-btn {
  background: #0073e6;
}

.fixed-buttons .email-btn:hover {
  background: #005bb5;
}

.fixed-buttons .whatsapp-btn {
  background: #25d366;
}

.fixed-buttons .whatsapp-btn:hover {
  background: #1da851;
}

@media (max-width: 600px) {
  .fixed-buttons a {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* dropdown */
ul li {
  position: relative;
}
ul li a {
  display: block;
  /* padding: 12px 5px; */
  color: white;
  text-decoration: none;
  /* background: #333; */
}

ul li ul {
  display: none;
  position: absolute;
  /* background: #333; */
  padding: 0;
  margin: 0;
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 999;
}
ul li ul li a {
  font-size: 12px;
  padding: 10px 10px;
}
ul li:hover ul {
  display: block;
}
