/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  color: #cbd5e1;
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 1rem; }
a { text-decoration: none; color: inherit; }
h1,h2,h3 { font-weight: 700; color: #ffffff; }
p { font-weight: 400; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 14px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover { background: #0284c7; }

.btn-secondary {
  border: 2px solid #0ea5e9;
  padding: 12px 30px;
  border-radius: 50px;
  color: #0ea5e9;
  font-weight: 600;
  transition: 0.3s;
}
.btn-secondary:hover { background: #0ea5e9; color: white; }

/* Hero */
.hero-section {
  padding: 140px 20px 100px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
}
.hero-section h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-section p { font-size: 1.2rem; margin-bottom: 40px; }

/* Services */
.services-section { padding: 100px 20px; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; margin-top: 50px;
}
.service-box {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.service-box:hover { transform: translateY(-8px); background: #334155; }

/* Portfolio Preview */
.portfolio-preview { padding: 100px 20px; text-align: center; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-top: 50px;
}
.portfolio-box {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Contact CTA */
.contact-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  text-align: center;
  color: white;
  border-radius: 0;
}
.contact-cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-cta p { font-size: 1.2rem; margin-bottom: 30px; }

/* Responsive Navigation */
@media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background: #1e293b;
      position: absolute;
      right: 20px;
      top: 80px;
      padding: 20px;
      border-radius: 10px;
    }
    nav ul.show {
      display: flex;
    }
    #menu-toggle {
      display: block;
      font-size: 28px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
    }
  }
  @media (min-width: 769px) {
    #menu-toggle { display: none; }
    nav ul { display: flex !important; gap: 20px; }
  }
  /* === Shared Page Hero === */
.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    color: white;
  }
  .page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* === About Content === */
  .about-content {
    padding: 80px 20px;
    background-color: #1e293b;
    color: #cbd5e1;
    max-width: 1000px;
    margin: auto;
  }
  .about-content h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: white;
  }
  .about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .about-content ul {
    margin: 20px 0;
    padding-left: 20px;
  }
  .about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    list-style: none;
    position: relative;
  }
  .about-content ul li::before {
    content: '✔';
    color: #0ea5e9;
    font-weight: bold;
    margin-right: 10px;
  }

  /* Portfolio Hover Effect */
.portfolio-box {
    background: #1e293b;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .portfolio-box:hover {
    background: #334155;
    transform: translateY(-8px);
  }
  /* === Blog Page === */
.blog-section {
    padding: 100px 20px;
    background-color: #1e293b;
    text-align: center;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .blog-card {
    background: #0f172a;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  .blog-card:hover {
    background-color: #334155;
    transform: translateY(-8px);
  }
  
  .blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .blog-card p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 30px;
  }
  /* === Blog Details === */
.blog-details-content {
    padding: 100px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #1e293b;
    border-radius: 15px;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .blog-details-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  
  .blog-details-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
  }
  
  .blog-details-content ul li::before {
    content: '✔';
    color: #0ea5e9;
    margin-right: 10px;
    font-weight: bold;
  }
  /* === Contact Page === */
.contact-section {
    padding: 100px 20px;
    background-color: #1e293b;
    max-width: 700px;
    margin: auto;
    border-radius: 15px;
    color: #cbd5e1;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .contact-info {
    font-size: 1.1rem;
    margin-top: 20px;
  }
  
  .success-msg {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .error-msg {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 20px;
  }
  /* === Header/Nav === */
.site-header {
    background-color: #0f172a;
    border-bottom: 1px solid #1e293b;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
  }
  
  nav ul {
    display: flex;
    gap: 25px;
  }
  
  nav ul li a {
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    color: #0ea5e9;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    font-size: 28px;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #1e293b;
      position: absolute;
      top: 70px;
      right: 20px;
      padding: 20px;
      border-radius: 8px;
    }
    nav ul.show {
      display: flex;
    }
    .menu-toggle {
      display: block;
    }
  }
  
  .small-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 50px;
  }
  
  .site-footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 1rem;
  }

  /* === Portfolio Detail Pages === */
.project-detail-section {
    padding: 80px 20px;
    background-color: #1e293b;
    border-radius: 15px;
    max-width: 1000px;
    margin: 50px auto;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .project-detail-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 40px 0 20px;
  }
  
  .project-detail-section p {
    margin-bottom: 20px;
  }
  
  .project-detail-section ul {
    margin-bottom: 40px;
    padding-left: 20px;
  }
  
  .project-detail-section ul li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
    padding-left: 25px;
  }
  
  .project-detail-section ul li::before {
    content: "✔";
    color: #0ea5e9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .video-demo {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .video-demo iframe {
    width: 100%;
    height: 480px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
  }

  /* === Pricing Section === */

.pricing-section {
    padding: 80px 20px;
    background-color: #1e293b;
    text-align: center;
    color: #cbd5e1;
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .price-box {
    background: #0f172a;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 2px solid #0ea5e9;
  }
  
  .price-box:hover {
    transform: translateY(-10px);
  }
  
  .price-box h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .price-box p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .price-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0ea5e9;
  }
  
  .price-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 250px;
  }
  
  .price-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #334155;
  }
  
  /* Highlight middle package */
  .price-box.popular {
    border: 3px solid #f59e0b;
  }
  
  /* === Quote Form Section === */
  
  .quote-form-section {
    padding: 80px 20px;
    background-color: #1e293b;
    color: #cbd5e1;
  }
  
  .quote-form-section form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0f172a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }
  
  .quote-form-section .form-group {
    margin-bottom: 25px;
    text-align: left;
  }
  
  .quote-form-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
  }
  
  .quote-form-section input,
  .quote-form-section textarea,
  .quote-form-section select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #334155;
    color: #fff;
    font-size: 1rem;
  }
  
  .quote-form-section button {
    padding: 15px 30px;
    background-color: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  
  .quote-form-section button:hover {
    background-color: #0284c7;
  }

  /* === Floating Action Buttons === */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  
  .fab img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .fab img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
  }

  .fab {
    animation: bounceIn 0.8s ease;
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
/* === Enhanced Navigation v3.1 === */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo a {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

nav ul {
  display: flex;
  gap: 35px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  position: relative;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0ea5e9;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #0ea5e9;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav .get-quote-btn {
  padding: 10px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
}

nav .get-quote-btn:hover {
  background: #0284c7;
}

/* Responsive Menu Enhancements */
@media (max-width: 992px) {
  .nav-container {
    padding: 1rem;
  }
  nav ul {
    flex-direction: column;
    background: #1e293b;
    position: absolute;
    right: 20px;
    top: 80px;
    padding: 20px 40px;
    border-radius: 10px;
    display: none;
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
  }
}
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.service-box img {
  width: 200px;
  margin-bottom: 20px;
}

.service-box {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 40px 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid #0ea5e9;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.portfolio-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.portfolio-img:hover img {
  transform: scale(1.1);
}

.portfolio-img .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.portfolio-img:hover .overlay {
  opacity: 1;
}

.contact-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  text-align: center;
  color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.contact-cta:hover {
  transform: translateY(-5px);
}

.contact-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.contact-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta .btn-primary {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 700;
}
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #0ea5e9;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a img {
  width: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
}

.enhanced-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.enhanced-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.service-box img.service-icon {
  width: 200px;
  height: 150px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.service-box:hover img.service-icon {
  transform: scale(1.15);
}
.portfolio-box img.portfolio-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.portfolio-box {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-box img.portfolio-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.portfolio-box h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
  min-height: 50px; /* Ensures title block stays uniform */
}

.portfolio-box p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #cbd5e1;
  min-height: 80px; /* This keeps the descriptions aligned */
}

.portfolio-box a.btn-primary {
  margin-top: auto;
  align-self: center;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 50px 0;
}
.gallery img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* === Portfolio Detail Global Improvements === */

.project-detail-section {
  padding: 80px 20px;
  background-color: #1e293b;
  border-radius: 15px;
  max-width: 1100px;
  margin: 50px auto;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.project-detail-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin: 40px 0 20px;
}

.project-detail-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #cbd5e1;
}

.project-detail-section ul {
  margin-bottom: 40px;
  padding-left: 25px;
}

.project-detail-section ul li {
  list-style: none;
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  font-size: 1.1rem;
}

.project-detail-section ul li::before {
  content: "✔";
  color: #0ea5e9;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Video Responsive */
.video-demo {
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-demo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* Gallery Styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

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

/* CTA Button Centered */
.project-detail-section .btn-primary {
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #ffffff;
  transition: 0.3s;
}

.project-detail-section .btn-primary:hover {
  background: #0284c7;
}
.blog-thumbnail {
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.blog-thumbnail:hover {
  transform: scale(1.05);
}

.blog-detail-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
}
/* Blog Hero Enhancements */
.blog-hero {
  background: linear-gradient(135deg, #0284c7, #0f172a);
  padding: 140px 20px 100px;
  text-align: center;
  border-bottom: 3px solid #0ea5e9;
}

.blog-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.3rem;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero {
  background: linear-gradient(135deg, #0ea5e9, #0f172a);
  padding: 140px 20px 100px;
  text-align: center;
  border-bottom: 3px solid #0284c7;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.3rem;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-section {
  padding: 100px 20px;
  background-color: #1e293b;
  border-radius: 15px;
  max-width: 700px;
  margin: 60px auto;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  background: #334155;
  color: #fff;
  border: none;
  font-size: 1rem;
}

.contact-info {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #cbd5e1;
}

.success-msg {
  color: #22c55e;
  font-weight: bold;
  margin-bottom: 30px;
}

.site-logo {
  max-width: 180px;   /* ✅ force consistent width */
  height: auto;       /* ✅ keep proportional height */
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
}
.footer-logo img {
  max-height: 50px;
  margin-bottom: 20px;
}
/* Updated Header Styling */
.site-header {
  background-color: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}