* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #f7f7fb;
}

/* STICKY HEADER & NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 39, 68, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}


.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
    
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing:3px;
  color: #f4b400;
  white-space: nowrap;
  text-transform: uppercase;
}

    /* NAV BAR */
    
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f4b400;
}

    /* GENERAL SECTIONS */
    
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  scroll-margin-top:  120px;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* HOME SECTION */

.home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
}

.home-text {
  flex: 1;
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.home h1 {
  font-size: 2rem;
  line-height: 1.3;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.5rem;
  background: #4f46e5;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #3730a3;
  transform: translateY(-2px);
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f4b400;
  color: #111;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
}

.read-more-btn:hover {
  background: #d99c00;
  transform: translateY(-2px);
}

.hidden-content {
  display: none;
  margin-top: 15px;
}
    

.about-section {
  padding: 80px 20px;
  background: #ffffff;
  scroll-margin-top: 120px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image,
.about-content {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.card-container,
.pricing-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hidden-content {  
  display: none;  
  margin-top: 15px;
}
s

.card-container,
.pricing-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card,
.price-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-item {
  background: #e5e7eb;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.featured {
  border: 3px solid #4f46e5;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* ==========================================
   FOOTER SECTION
========================================== */
.footer {
  background: #111111;
  color: #ffffff;
  padding-top: 60px;
  font-family: Arial, sans-serif;
}

/* ==========================================
   MAIN FOOTER CONTAINER
========================================== */
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;

  padding-bottom: 40px;
}

/* ==========================================
   FOOTER HEADINGS
========================================== */
.footer-column h2,
.footer-column h3 {
  color: #d4af37; /* Gold Accent */
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ==========================================
   TEXT STYLES
========================================== */
.footer-column p {
  line-height: 1.8;
  color: #cccccc;
  margin: 0;
}

/* ==========================================
   LIST STYLES
========================================== */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  color: #cccccc;
  line-height: 1.8;
}

/* ==========================================
   LINK STYLES
========================================== */
.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

/* ==========================================
   CONTACT INFO
========================================== */
.contact-info li {
  line-height: 1.8;
}

/* ==========================================
   SOCIAL MEDIA ICONS
========================================== */
.social-links {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;

  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #d4af37; /* Gold Accent */
  color: #111111;
  transform: translateY(-3px);
}

/* ==========================================
   FOOTER BOTTOM
========================================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
  color: #999999;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}


/* MOBILE RESPONSIVE DESIGN */

@media (max-width: 768px) {

  html {
    scroll-padding-top: 120px;
  }

  /* NAVBAR */

  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .brand {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* HOME SECTION */

  .home {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .home-text h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .home-text p {
    font-size: 1rem;
  }

  .home-image {
    width: 100%;
    max-width: 320px;
    margin-top: 1.5rem;
  }

  /* ABOUT SECTION */

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-image img {
    width: 100%;
    max-width: 280px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  /* SERVICES */

  .card-container {
    flex-direction: column;
  }

  /* PROJECT GRID */

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .grid-item {
    padding: 2rem 1rem;
  }

  /* GENERAL SECTIONS */

  .section,
  .about-section {
    padding: 3rem 1rem;
  }

  /* CONTACT FORM */

  .contact-form {
    padding: 1.5rem;
  }
  .footer {
    padding-top: 40px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-column h2,
  .footer-column h3 {
    margin-bottom: 15px;
  }

  .social-links {
    margin-top: 15px;
    justify-content: center; /* Remove this line if you want left-aligned icons */
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 15px 10px;
  }

}
