/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFD700; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #dcbb62;  /* The default color of the main navmenu links */
  --nav-hover-color: #B8860B; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a0a0a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #3b3b3b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fd680e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f4f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #333333;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .navmenu {
    position: static;
    right: auto;
    width: auto;
    overflow: visible;
    background: none;
  }

  .navmenu ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .navmenu li {
    margin: 0 15px;
  }

  .navmenu a {
    padding: 10px 0;
    color: var(--nav-color);
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #333333;
  padding: 50px 0;
  text-align: center;
  color: #eee;
}

.footer .copyright {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.5px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #be9d53;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# HERO - CLEAN PREMIUM BANNER (NO CTA)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 2;
}

/* Content */
.hero .container {
  position: relative;
  z-index: 3;
  color: #fff;
}

/* Tag Line */
.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Heading */
.hero h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #dcbb62;
}

/* Subtext */
.hero p {
  font-size: 20px;
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

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

  .hero p {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }
}
/* CTA WRAP */
.hero-btn-wrap {
  margin-top: 25px;
}

/* BUTTON STYLE */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  border: 1px solid #dcbb62;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  background: transparent;
}

/* HOVER */
.hero-btn:hover {
  background: #dcbb62;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# TEXT ANIMATIONS
--------------------------------------------------------------*/

/* Base hidden state */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

/* Fade Up Animation */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delays (stagger effect) */
.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}
/*--------------------------------------------------------------
# ABOUT - PREMIUM DESIGN
--------------------------------------------------------------*/

.about {
  background: #f8f6f2;
}

/* Section Title */
.section-title h2 {
  font-size: 36px;
  font-weight: 600;
}

.section-title p {
  color: #777;
}

/* Cards */
.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Headings */
.about-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* List */
.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card ul li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

/* Bullet style */
.about-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a96a;
  font-size: 18px;
}

/* Plot tags */
.plot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
}

.plot-tags span {
  padding: 10px 18px;
  background: #c8a96a3b;
  color: #000;
  border-radius: 30px;
  font-weight: 500;
}

/* Center Card */
.center-card {
  text-align: center;
}

/*--------------------------------------------------------------
# ANIMATION (reuse if already added)
--------------------------------------------------------------*/
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 26px;
  }

  .about-card {
    padding: 20px;
  }

  .about-card h3 {
    font-size: 18px;
  }

  .plot-tags span {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/*--------------------------------------------------------------
# AMENITIES - PREMIUM DESIGN
--------------------------------------------------------------*/

.amenities {
  background: #f9f7f3;
}

/* Card */
.amenity-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  height: 100%;
}

/* Icon */
.amenity-card i {
  font-size: 32px;
  color: #c8a96a;
  margin-bottom: 15px;
  display: inline-block;
}

/* Title */
.amenity-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Hover Effect */
.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.amenity-card:hover i {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# ANIMATION
--------------------------------------------------------------*/
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .amenity-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .amenity-card h3 {
    font-size: 16px;
  }

  .amenity-card i {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Connectivities Section - Premium Design
--------------------------------------------------------------*/

/* Top Cards */
.connect-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.connect-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Icon */
.connect-card .icon {
  width: 70px;
  height: 70px;
  background: #333333;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.4s;
}

.connect-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

/* Heading */
.connect-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description */
.connect-card p {
  font-size: 14px;
  color: #777;
}

/* List Cards */
.list-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 28%);
  transition: 0.3s;
  height: 100%;
}

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

/* Highlight card */
.list-card.highlight {
  background: linear-gradient(135deg, var(--accent-color), #d4a017);
  color: #fff;
}

.list-card.highlight li {
  color: #fff;
}

/* Titles */
.list-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Lists */
.list-card ul {
  list-style: none;
  padding: 0;
}

.list-card ul li {
  padding: 8px 0;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

/* Custom bullet */
.list-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 12px;
}

.list-card.highlight ul li::before {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .connect-card {
    padding: 30px 20px;
  }

  .connect-card h3 {
    font-size: 18px;
  }

  .list-card {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Smooth zoom effect */
.gallery-img:hover {
  transform: scale(1.05);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .gallery-img {
    height: 180px;
  }
}