:root {
  --blue: #003f5c;
  --red: #d7263d;
  --purple: #6a0572;
  --green: #5cae60;
  --yellow: #f4b942;
  --white: #ffffff;
  --dark: #222;
  --light-gray: #f9f9f9;
}


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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-gray);
  color: var(--dark);
  line-height: 1.6;
  display: flex;
}

/* Sidebar */
.side-nav {
  width: 240px;
  background: var(--blue);
  color: white;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px 20px;
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 998;
}

.side-nav h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--yellow);
}



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

.side-nav li {
  margin-bottom: 15px;
}

.side-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  transition: color 0.3s ease;
}

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


.sidebar-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  background: var(--blue);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
  cursor: pointer;
  display: none;
}
/* Sidebar Styling */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Hidden by default */
  width: 250px;
  height: 100%;
  background-color: #033a56;
  color: white;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar h2 {
  color: #FFA500;
  margin-bottom: 2rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 1rem;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Toggle Button */
.sidebar-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  background: #033a56;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1100;
  border-radius: 4px;
}

/* Sidebar Open State */
.sidebar.open {
  left: 0;
}


/* Main Content */
.main-content {
  margin-left: 240px;
  width: calc(100% - 240px);
  padding-bottom: 60px;
}

/* Header */
header.hero {
  background: url('images/header-bg.jpg') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 60px 20px 100px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo {
  width: 90px;
  height: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.icon {
  width: 24px;
  height: 24px;
  fill: white;
  transition: transform 0.2s ease;
}

.icon.fb { fill: #1877f2; }
.icon.wa { fill: #25D366; }
.icon.li { fill: #0077b5; }

.icon:hover {
  transform: scale(1.2);
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 40px;
}

/* Sections */
section {
  padding: 50px 40px;
  margin: 40px auto;
  max-width: 1200px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  font-weight: 300;
  margin-bottom: 15px;
}

/* Product Grid */
.product-page {
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  margin: 0.5rem 0;
}

.price {
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

button {
  padding: 0.5rem 1rem;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  border-radius: 5px;
}

button:hover {
  background-color: #555;
}

/* Gallery Slider (Our Work) */
.gallery-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
}

.gallery-track a {
  flex: 0 0 calc(100% / 3);
  display: block;
}

.gallery-track img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.05);
}

/* Contact Form */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  padding: 10px 25px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: var(--purple);
}

.contact-info {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-item {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item:hover {
  color: var(--blue);
}

/* Footer 
footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #9140b6;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}*/
footer {
  width: 100%;
  background: #9140b6;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .sidebar-toggle {
    display: block;
  }

  .side-nav {
    left: -100%;
  }

  .side-nav.open {
    left: 0;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-track a {
    flex: 0 0 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.services-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  flex: 1 1 calc(33.333% - 30px);
  max-width: 100%;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 10px;
  font-weight: 700;
}


.side-nav ul li a.active {
  background: #19b4c5;   
  color: #eec215;   
  font-weight: bold;
  text-decoration: underline; 
  border-radius: 5px;
  padding: 6px 10px;
  display: block;
}

