
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Poppins:wght@400;600&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #222;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1A1B37 !important;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
  color: #444;
}

a {
  text-decoration: none;
  color: #007BFF;
}

section {
  scroll-margin-top: 80px; /* Adjust this based on your nav height */
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh; /* Fill full visible window height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('/assets/images/concrete-bg.jpg') no-repeat center center/cover;
  color: white;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content h1 {
  color: #1A1B37;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.stagger-text .line {
  display: block;
  transition: transform 0.4s ease-in-out, color 0.3s ease-in-out;
  transform-origin: center;
  will-change: transform;
  cursor: pointer;
}

.stagger-text .line:hover {
  transform: translateY(-8px) scale(1.08) rotate(-1deg);
  color: #004a99;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.hero-line {
  white-space: nowrap;
  margin-bottom: 0.5rem;
}

.hero-char {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}

.hero-char.space {
  display: inline-block;
  width: 0.3em; /* adjust based on font size */
  opacity: 0; /* or 1, if you want to animate spaces too */
}

.animate-up {
  animation: riseUp 0.6s ease-out forwards;
}

.animate-down {
  animation: riseDown 0.6s ease-out forwards;
}

@keyframes riseUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

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

.hero-heading .hero-line:nth-child(2),
.hero-heading .hero-line:nth-child(3) {
  font-style: italic;
  color: #00ff9f;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #1A1B37;
  color: #00ff9f !important;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #0056b3;
    background-color: #00ff9f ;
  color: #1A1B37 !important;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #007BFF;
  color: white;
}

.btn-secondary {
  background: white;
  color: #007BFF;
  border: 2px solid #007BFF;
}

/* ABOUT SECTION */
.about-brief {
  background: #f0f0f0;
  padding: 3rem 2rem;
  text-align: center;
}

.blog-preview {
  padding: 5rem 2rem;
}

.blog-preview .section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 300px;               
  object-fit: cover;          
  display: block;
  border-radius: 8px;         
}


.blog-content {
  padding: 1.25rem;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #007BFF;
}

.blog-content h3 a {
  text-decoration: none;
  color: inherit;
}

.blog-content h3 a:hover {
  text-decoration: underline;
}

.blog-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #6c757d;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.read-more-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #0056b3;
}



/* SERVICES SECTION */
.services {
  padding: 3rem 2rem;
  background: white;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-cards h3 {
  color: #1a1a1a;;
}

.card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* PRODUCTS SECTION */
.products-preview {
  padding: 3rem 2rem;
  background: #fdfdfd;
  text-align: center;
}

/* BLOG SECTION */
.blog-preview {
  padding: 3rem 2rem;
  background: #e9f3ff;
  text-align: center;
}

/* CONTACT SECTION */
.contact {
  padding: 3rem 2rem;
  background: #222;
  color: white;
  text-align: center;
}

.contact p {
  margin: 0.5rem 0;
}

/* General section heading */
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p {
  max-width: 700px;
  margin: auto;
}

.section-light {
  background: #fff;
  color: #333;
}

.section-dark {
  background: #222;
  color: #fff;
}

.section-accent {
  background: #f0f6ff;
  color: #111;
}

.section-brand {
  background: #1a1b37;
}

/* SITE HEADER + NAVIGATION */
.site-header {
  background: white;
  color: #1A1B37;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: solid 10px #1A1B37;
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo img {
  height: 50px;       /* Adjust based on design */
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

.btn-contact {
  background-color: #1A1B37;
  color: #00ff9f !important;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  height: 100%;         /* Match height of other nav items */
  line-height: 1.2;     /* Prevent vertical stretching */
}


.btn-contact:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}
@media (max-width: 600px) {
  .logo img {
    height: 40px; /* Smaller logo on mobile */
  }
}


.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: #1A1B37;
  text-decoration: none;
  font-weight: 500;
    display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1A1B37;
  cursor: pointer;
}

.speciality {
  padding: 3rem 2rem;
  background: #ffffff;
  text-align: center;
}

.speciality h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.speciality .tagline {
  font-style: italic;
  color: #007BFF;
  margin-bottom: 2rem;
}

.speciality-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: left;
  max-width: 1100px;
  margin: auto;
}

.column {
  flex: 1 1 300px;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.column h3 {
  color: #0056b3;
  margin-top: 1rem;
}

.modern-list {
  list-style: none;
  padding-left: 0;
}

.modern-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.modern-list li i {
  color: #00ff9f;
  margin-right: 1rem;
  font-size: 1rem;
}

.parallax-images {
  position: absolute ;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.parallax {
  position: absolute ;
  width: clamp(280px, 22vw, 480px);
  opacity: 0.9;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.parallax:nth-child(1) {
  top: 8%;
  left: 10%;
  transform: rotate(-4deg);
}

.parallax:nth-child(2) {
  top: 15%;
  right: 10%;
  transform: rotate(4deg);
}

.parallax:nth-child(3) {
  bottom: 15%;
  left: 10%;
  transform: rotate(-3deg);
}

.parallax:nth-child(4) {
  bottom: 8%;
  right: 10%;
  transform: rotate(-3deg);
}


.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.about-text {
  flex: 1 1 450px;
  text-align: left;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

.about-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 55%;
  text-align: left;
  color: #333;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #007BFF;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.why-choose-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  font-size: 1rem;
}

.why-choose-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.why-choose-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #2e7d32; /* or your brand green */
}


.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.products-preview {
  padding: 5rem 2rem;
}

.products-preview .section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #444;
}

.projects-marquee {
  padding: 2rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.projects-marquee h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.marquee-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.marquee-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Tweak */
@media (max-width: 600px) {
  .marquee-item {
    width: 180px;
  }
}


.text-center {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.contact-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.contact-text {
  flex: 1 1 50%;
}

.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #007BFF;
}

.contact-text p {
  margin-bottom: 1rem;
  color: #333;
}

.contact-details {
  list-style: none;
  padding-left: 0;
}

.contact-details li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

.contact-details a {
  color: #007BFF;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-image {
  flex: 1 1 40%;
  text-align: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-map {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
}

.form-wrapper, .map-wrapper {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #444;
}

.contact-intro .lead-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.contact-info {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
    text-decoration: none;
  }

  .whatsapp-btn:active {
    transform: scale(0.98);
  }

  .whatsapp-btn svg {
    flex-shrink: 0;
  }


.map-embed iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.site-footer {
  background: #1a1b37;
  color: #eee;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap; /* allow wrap on smaller screens */
  gap: 2rem;
  justify-content: space-between;
}

/* Ensure each column takes equal width but fits within the row */
.footer-col {
  flex: 1 1 220px; /* try reducing from 250px to allow more columns */
  min-width: 200px;
}

.footer-col p, h3, .footer-col h4 {
  color: #00ff9f;
  margin-bottom: 1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #00ff9f;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials a {
  margin-right: 0.75rem;
  display: inline-block;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-socials img:hover {
  filter: brightness(1.5);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;

}
.footer-bottom p {
  color: #fff;
}

.marquee-strip {
  background: #f2f2f2;
  overflow: hidden;
  padding: 0;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.marquee {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  background: #fff;
  color: #ffffff;
}

.marquee span {
  display: inline-block;
  padding-right: 2rem;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.marquee-left span {
  animation-name: marquee-left;
  background: #1a1b37;
}

.marquee-right span {
  animation-name: marquee-right;
  background: #00ff9f;
}

/* Fade-in section effects */
.section-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.section-container.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* Modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* Modal grid layout */
.modal-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Logo styles */
.modal-left, .modal-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info a,
.contact-intro p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.error-message {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #e63946;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.blog-heading {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 1rem 3rem;
}

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

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

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

.blog-content {
  padding: 1rem;
}

.blog-content h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

.blog-content p {
  color: #555;
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #007BFF;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-article {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  line-height: 1.8;
}

.blog-hero, .blog-image-mid {
  width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.tags {
  margin-top: 0.5rem;
}

.tag {
  background-color: #f0f0f0;
  color: #333;
  padding: 3px 8px;
  font-size: 0.8rem;
  border-radius: 5px;
  margin-right: 5px;
  display: inline-block;
}

.quality-quote {
  background-color: #1a1b37;
  padding: 3rem 1.5rem;
  text-align: center;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.quality-quote h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white !important;
}

.quality-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #ffffff;
  padding: 1.5rem;
  border-left: 5px solid #25D366;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quality-quote blockquote p {
  margin-bottom: 1rem;
}


@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }

    .hero-content {
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 2; /* ensure it sits above parallax images */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero {
    height: auto;
    padding-bottom: 2rem;
    display: block !important;
  }

  .hero-heading {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
  }

  .hero-line {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
    text-align: center;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

.parallax-images {
  position: static !important; /* Ensure it's in normal document flow */
  display: flex !important;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  pointer-events: auto;
  z-index: auto;
}


  .parallax-images::-webkit-scrollbar {
    display: none;
  }

.parallax {
  position: static !important;
  flex: 0 0 45%;          /* reduced from 80% */
  max-width: 45%; 
  height: auto;
  transform: none !important;
  scroll-snap-align: start;
  opacity: 1 !important;
}


  /* Disable all absolute positioning on mobile */
  .parallax:nth-child(n) {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .stagger-text .line {
    font-size: 1.2rem;
  }

    .about-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text {
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
    .contact-form {
    gap: 0.75rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1rem;
  }
  .contact-flex {
    flex-direction: column;
    text-align: center;
  }

  .contact-text, .contact-image {
    flex: 1 1 100%;
  }

  .modal-content {
    margin-top: 2rem;
    padding: 1rem;
    max-height: 95vh;
    overflow-y: auto;
  }
  .modal-logo {
    width: 100%;
    text-align: center;
  }

  .modal-logo img {
    width: 100%;           /* Take full width of container */
    max-width: 100%;       /* Prevent it from overflowing */
    height: auto;
    display: block;        /* Prevent any inline gaps */
    margin: 0 auto;        /* Center if needed */
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .quality-quote h2 {
    font-size: 1.5rem;
  }

  .quality-quote blockquote {
    font-size: 1rem;
    padding: 1rem;
  }

}

@media (min-width: 768px) {
  .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
  .modal-left,
  .modal-right {
    width: 100%; /* Ensure each column takes full width of its grid cell */
  }
}


@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
