/* Common CSS for all pages */
:root {
   --orange: #ff7300;          /* main orange */
    --dark: #222;
    --light: #f9f9f9;
    --accent: #ffb84d; 
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    padding: 0 1rem;
    margin: 0 auto;
}

header {
    background: var(--orange);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 6px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

main {
    margin: 2rem 0 4rem 0;
}

/* Footer */
footer {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 -2px 6px var(--shadow);
}

/* General section titles */
h1, h2, h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.6rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: var(--dark);
    color: var(--accent);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
}

/* Grid helper */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Responsive for smaller screens */
@media(max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Business Card Style for Contact Page */
.business-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 3px 12px var(--shadow);
    max-width: 500px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.business-card h2 {
    margin-bottom: 0.5rem;
}

.business-card p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.contact-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-icons a {
    color: var(--orange);
    font-size: 2.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-icons a:hover {
    color: var(--accent);
}

/* Embeded map styling */
.map-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 12px var(--shadow);
}

/* Cards for Products/Services */
.card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 18px var(--shadow);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: #444;
}

.banner-slideshow {
  margin-top: 1.5rem; /* Adjust gap size as needed */
}

main section p {
  margin-bottom: 2rem; /* Adds space below paragraphs */
}

main section .btn {
  margin-top: 1rem; /* Adds space above the button */
}
footer {
  margin-top: 2rem;
}



main {
  padding-bottom: 2rem;
}
