* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
:root {
  /* Primary Brand Colors */
  --primary-blue: #1e40af;       /* Deep blue */
  --primary-blue-light: #2563eb; /* Gradient start */
  --primary-blue-dark: #1e3a8a;  /* Gradient end */

  /* Accent */
  --accent-blue: #3b82f6;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;

  /* Text */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-color: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
}

:root {
  --primary-color: #8b6f47;
  --primary-dark: #6b5437;
  --secondary-color: #a67c52;
  --accent-color: #c19a6b;
  --text-dark: #2c2416;
  --text-medium: #5a4a3a;
  --text-light: #8b7a6a;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1eb;
  --bg-white: #ffffff;
  --border-color: #e5ddd5;

  --bg-color: #e9ecef;
  --calc-bg: #ffffff;
  --display-bg: #3d719a;
  --btn-light: #f0f4f7;
  --btn-dark: #b0c4de;
  --btn-blue: #9fb6cd;
  --text-color: #000;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Lato", sans-serif;

  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #3b82f6;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f4f7;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #f0f4f7;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f0f4f7;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: #f0f4f7;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background:var(--accent-blue) ;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #f0f4f7;
  margin: 3px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 12vh;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #1e40af;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e5e7eb;
}

/* CATEGORY SECTION */
.categories {
  padding: 60px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
  color: #1e40af;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
}
.card li {
  list-style: none;
}

.card a {
  text-decoration: none;
  font-weight: bold;
  color: #2563eb;
}
.card a:hover {
  text-decoration: underline;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-container {
  max-width:70%;
  margin: 5rem 0 0 0;
  padding: 20px;
}

.about-section {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    text-align: center;
  color: #3f7cf3;
  margin-bottom: 15px;
  font-size: 24px;
}

.about-section p {
  margin-bottom: 12px;
  font-size: 15px;
}

ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

ul li {
  margin-bottom: 6px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.input-group textarea {
  resize: none;
}

button {
  background: #3f7cf3;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #2f65d9;
}
.footer-bottom {
  background-color: #3b82f6;
  border-top: 1px solid rgba(245, 241, 235, 0.2);
  padding-top: 1rem;
  text-align: center;
}
.footer-bottom a {
  text-decoration: none;
  color: #f0f4f7;
  margin: 2px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  color: #f0f4f7;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 768px) {
  .about-container {
  max-width:100%;
}

  header h1 {
    font-size: 22px;
  }

  section {
    padding: 20px;
  }
}



/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -110%;
    width: 95%;
    text-align: center;
    background: var(--accent-blue);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
