:root {
  --green: #1D3B31;
  --yellow: #F5B100;
  --white: #ffffff;
  --gray: #f8f8f8;
  --font: 'Inter', sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background-color: var(--white);
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
/* Header */
header {
  background: var(--green);
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 12px;
}

nav a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

nav a {
  transition: color 0.3s ease;
}

.btn-outline {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--yellow);
  border-radius: 25px;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

nav.show {
  display: block; /* Changed from flex to block for vertical stacking */
  background: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: #ffffff;
  cursor: pointer;
  gap: 5px;
  margin-left: 15px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 5px;
}

@media (max-width: 768px) {
  nav {
    display: none; /* Hide nav by default on small screens */
  }

  nav.show {
    display: block; /* Show nav when "show" class is added */
    position: absolute; /* Position the menu vertically */
    top: 70px; /* Adjust depending on your header height */
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  nav a {
    display: block; /* Stack nav items vertically */
    padding: 12px 20px;
    text-align: center; /* Center the text */
  }

  .hamburger {
    display: flex; /* Show hamburger on small screens */
  }
}

/* Hero Section */
.hero {
  background-color: var(--gray);
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding-right: 30px;
}

.hero-text .tagline {
  background: var(--yellow);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--green);
}

.hero-text h1 {
  font-size: 42px; /* Name size */
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  color: #111;
}

.role-text {
  font-size: 28px; /* smaller than name */
  font-weight: 650;
  color: #333; /* optional, slightly lighter */
}

.location-text {
  font-size: 20px; /* optional, smallest text */
  font-weight: 650;
  color: #555;
}


.hero-text .highlighted {
  color: var(--yellow);
  /* Ensures yellow color */
}

.italic-underline {
  font-style: italic;
  text-decoration: underline;
  font-weight: normal;
  /* removes bold */
  color: var(--yellow);
  /* keep yellow color */
}

.hero-text .line-break {
  display: block;
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 16px;
  color: #333;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .primary:hover {
  background: var(--yellow);
  transform: scale(1.05);
}

.hero-buttons .primary {
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons .hireme-btn {
  background: none;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons .hireme-btn:hover {
  background: var(--yellow);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(29, 59, 49, 0.2);
}

.hero-img-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.profile-img {
  max-width: 100%;
  width: 320px;
  height: auto;
  border-radius: 50%;
  z-index: 1;
  background-color: transparent;
  /* Ensures no white bg */
}

/* Optional rotating circle */
.circular-hire {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
  z-index: 0;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .view-all-btn {
    align-self: flex-start;
    margin-left: 0;
  }

  .portfolio-heading {
    font-size: 20px;
  }
}

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

  .about-text {
    padding: 0;
  }

  .about-stats {
    justify-content: center;
  }
}

/* Responsive */
@media(max-width: 992px) {

  .hero-inner,
  .about-inner {
    flex-direction: column;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 10px 0;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .btn-outline {
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Scroll Banner */
.scroll-banner {
  white-space: nowrap;
  overflow: hidden;
  background: var(--yellow);
  color: var(--green);
  font-weight: 600;
  padding: 10px;
}

.scroll-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 15s linear infinite;
}

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

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

.services-section {
  padding: 60px 20px;
  background: var(--white);
  color: #111;
}

.services-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.services-section .title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-section .tagline {
  font-weight: 600;
  font-size: 14px;
  color: #111;
  /* black for "Services" */
  margin-bottom: 6px;
}

.services-section .tagline .dash {
  color: var(--yellow);
  /* yellow for — dash */
  margin-right: 5px;
}

.services-section .section-title {
  font-size: 28px;
  font-weight: 700;
  position: relative;
}

.services-section .section-title .highlight {
  color: var(--yellow);
}

.view-all-btn {
  background-color: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-right: 20px;
  /* adjust as needed */
}

.view-all-btn:hover {
  background-color: var(--yellow);
  color: var(--green);
}

.view-all-btn i {
  margin-left: 10px;
  color: var(--yellow);
  /* arrow color yellow */
  font-size: 14px;
  background: none;
  /* remove previous background if any */
}


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

.card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  max-width: 320px;
  background: #dddddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card a {
  font-weight: 600;
  font-size: 14px;
  color: var(--yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }

  .services-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .view-all-btn {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }

  .view-all-btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .services-section .section-title {
    font-size: 22px;
  }

  .services-section .tagline {
    font-size: 13px;
  }
}


/* About Section */
.about {
  background: var(--green);
  color: var(--white);
  padding: 60px 20px;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  width: 320px;
  /* increased from 280px */
  border-radius: 50%;
}

.about-text {
  flex: 1;
  padding: 20px;
}

/* .tagline {
  font-size: 14px;
  font-weight: 600;
  color: #fff; 
  margin-bottom: 10px;
  text-transform: uppercase;
} */
.about-text .tagline {
  font-weight: 600;
  font-size: 14px;
  color: #f0f0f0;
  /* black for "Services" */
  margin-bottom: 6px;
}

.tagline .dash {
  color: var(--yellow);
  margin-right: 5px;
}

.italic-name {
  font-style: italic;
  font-weight: normal;
}

.highlight-number {
  color: var(--yellow);
  font-weight: 700;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text h3 span {
  color: var(--yellow);
}

.about-text p {
  font-size: 16px;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.about-stats div {
  font-size: 16px;
  line-height: 1.4;
}

.download-btn {
  background: var(--yellow);
  padding: 10px 20px;
  color: var(--green);
  font-weight: bold;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #e0a800;
}

/* Portfolio Section */
.portfolio {
  padding: 60px 0;
  background: var(--gray);
  /* Use your defined variable or replace with a color like #f9f9f9 */
}

.portfolio-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header section with tagline and title */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.portfolio-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tagline {
  font-size: 18px;
  color: #111;
  font-weight: 500;
}

.dash {
  color: var(--yellow);
  margin-right: 6px;
}

.portfolio-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.project-highlight {
  font-style: italic;
  font-weight: normal;
  color: var(--yellow);
}

/* View All Button */
.view-all-btn {
  background-color: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.view-all-btn i {
  margin-left: 10px;
  color: var(--yellow);
}

.view-all-btn:hover {
  background-color: var(--yellow);
  color: var(--green);
}

/* Responsive Image Grid */
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Auto adjusts column number based on screen size */
  gap: 20px;
  justify-items: center;
}

.project-card {
  /* Keep cards centered and responsive */
  position: relative;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.project-card img:hover {
  transform: scale(1.05);
}

/* Optional: Add styles for the 'hamburger' menu for mobile view */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 5px auto;
  background: #333;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #nav-menu {
    display: none;
  }
}
#nav-menu {
  display: none;
}

#nav-menu.show {
  display: block; /* or flex, depending on your layout */
}

/* Cards Grid */
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Individual Card */
.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-card h3 {
  padding: 15px 10px;
  font-size: 16px;
  color: var(--green);
  font-weight: 600;
}

.journey-section {
  background-color: var(--green);
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-line {
  color: var(--yellow);
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--white);
}

.section-subtitle {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yellow-dash {
  color: var(--yellow);
  font-weight: bold;
  margin-right: 5px;
}

.white-text {
  color: var(--white);
}

.icon-img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.highlight-yellow-italic {
  font-style: italic;
  font-weight: normal;
  color: var(--yellow);
}

.journey-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.journey-box {
  flex: 1 1 45%;
  background: transparent;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--yellow);
}

.journey-box.full {
  flex: 1 1 100%;
}

.icon-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-heading img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.icon-heading h3 {
  font-size: 20px;
  color: var(--yellow);
  margin: 0;
}

.timeline-entry {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.year {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 4px;
}

.timeline-entry h4 {
  font-size: 16px;
  margin: 4px 0;
  color: var(--white);
}

.timeline-entry p {
  font-size: 14px;
  color: #f1f1f1;
  margin: 2px 0;
}

.timeline-entry ul {
  margin: 5px 0 0;
  padding-left: 20px;
  list-style: disc;
  color: #dddddd;
}

.timeline-entry ul li {
  font-size: 14px;
  margin-bottom: 4px;
}

.journey-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  flex: 1 1 45%;
}

.journey-card.full {
  flex: 1 1 100%;
}

.center-heading {
  justify-content: center;
  text-align: center;
  margin-bottom: 25px;
}

.experience-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.experience-block {
  flex: 1 1 45%;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  /* Yellow left line */
  position: relative;
}

/* Ensure no other container (like journey-box) gets a line */
.journey-box {
  padding: 20px;
  border: none;
  /* Prevent extra borders */
  background-color: #1D3B31;
  border-radius: 10px;
}

.experience-block h4 {
  margin-bottom: 5px;
  color: var(--white);
}

.experience-block p,
.experience-block ul {
  color: var(--white);
}

.experience-block ul {
  padding-left: 20px;
  margin-top: 5px;
}

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

  .journey-box {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 22px;
  }

  .icon-heading h3 {
    font-size: 18px;
  }
}











.contact-wrapper {
  padding: 60px 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Contact Box */
.contact-box {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.info-block a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-block a img:hover {
  transform: scale(1.2);
  opacity: 0.8;
  cursor: pointer;
}

/* Left Side */
.contact-left {
  flex: 1 1 35%;
  background-color: #1D3B31;
  color: var(--white);
  padding: 40px 30px;
}

.contact-left h2 {
  font-size: 26px;
  margin: 10px 0 20px;
}

.highlight-yellow {
  color: var(--yellow);
  font-style: italic;
  font-weight: 500;
}

.contact-left p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-block img {
  width: 20px;
  height: 20px;
}

.info-block span {
  margin-left: 15px;
}

/* Right Side */
.contact-right {
  flex: 1 1 65%;
  padding: 40px 30px;
  background: #fff;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.black-text {
  color: var(--black);
}

.yellow-dash {
  color: var(--yellow);
  font-weight: bold;
  margin-right: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row label {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fefefe;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
}

.submit-btn:hover {
  background-color: #15442f;
}

/* Two-column form rows */
.form-row-two {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row-two .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fefefe;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 30px 10px;
  }

  .contact-box {
    flex-direction: column;
    width: 100%;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    width: 100%;
    padding: 30px 20px;
  }

  .contact-left {
    text-align: center;
  }

  .info-block {
    justify-content: center;
    text-align: left;
  }

  .form-row-two {
    flex-direction: column;
  }
}


.testimonials {
  background-color: var(--green);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.section-title p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title p {
  color: var(--white);
  /* ✅ White for "Clients Testimonials" */
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title p::before {
  content: "— ";
  color: var(--yellow);
  /* ✅ Yellow dash before the text */
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  /* ✅ Make main heading bold */
  color: var(--white);
}

.section-title h2 span {
  color: var(--white);
  /* ✅ White text */
  font-style: italic;
  /* ✅ Italic */
  font-weight: normal;
  /* ✅ Not bold */
}

.section-title h2 {
  font-size: 28px;
  color: var(--white);
}

.section-title h2 span {
  color: var(--yellow);
  font-style: italic;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
  overflow: hidden;
  padding: 0 30px;
}

.testimonial-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background-color: var(--white);
  color: #111;
  border-radius: 12px;
  padding: 25px;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.stars {
  color: gold;
  font-size: 16px;
  margin-bottom: 10px;
}

.stars span {
  color: #111;
  font-weight: bold;
  margin-left: 6px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-top: 20px;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.author div {
  text-align: left;
}

.author strong {
  display: block;
  font-size: 15px;
}

.author span {
  font-size: 13px;
  color: #555;
}

.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: var(--yellow);
  color: var(--green);
  border: none;
  font-size: 24px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
}

#prev {
  left: 0;
}

#next {
  right: 0;
}

.nav-btn:hover {
  background-color: #d9a100;
}

/* ✅ Responsive for Tablets */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ✅ Responsive for Mobiles */
@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nav-btn {
    top: auto;
    bottom: -30px;
  }
}

/* FOOTER STYLES */
.footer {
  background-color: var(--white);
  color: #111;
  font-family: var(--font);
  padding: 40px 20px 0;
  margin-top: 60px;
  border-top: 1px solid #ddd;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--yellow);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-top h2 {
  font-size: 28px;
  font-weight: 600;
}

.footer-top .highlight {
  color: var(--yellow);
}

.footer-top .btn {
  background-color: var(--green);
  color: var(--white);
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-top .btn:hover {
  background-color: #153027;
}

/* GRID SECTION */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: var(--max-width);
  margin: 40px auto;
}

/* Brand Column */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
}

.footer-brand .dot {
  color: var(--yellow);
  font-size: 20px;
  margin-right: 5px;
}

.footer-brand p {
  margin: 12px 0 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.social-icons a {
  margin-right: 12px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Navigation */
.footer-nav h4,
.footer-contact h4,
.footer-news h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 6px 0;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: var(--yellow);
}

/* Contact Column */
.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

/* Newsletter */
.footer-news form {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer-news input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.footer-news button {
  padding: 10px 14px;
  border: none;
  background-color: var(--green);
  color: var(--white);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.italic-word {
  font-style: italic;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-brand h3,
.footer-nav h4,
.footer-contact h4 {
  color: var(--yellow);
}

.footer-news button:hover {
  background-color: #153027;
}

.footer-bottom {
  background-color: var(--green);
  color: var(--white);
  padding: 15px 20px;
  width: 100%;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.7;
  cursor: pointer;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.highlight-yellow {
  color: var(--yellow);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}


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

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

  .footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}