/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #3E293C;
}

/* ==========================================================================
   Standardized Header & Mobile Menu
   ========================================================================== */
header#header {
  position: fixed; /* stays at top when scrolling */
  top: 0;
  width: 100%;
  background: #3E293C; /* deep violet */
  color: white;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

/* Logo */
.logo-link {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  color: goldenrod;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  object-fit: contain;
}

/* Desktop Navigation */
nav.nav {
  display: flex;
  gap: 1.5rem;
}

a.nav-link {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s ease;
}

a.nav-link:hover,
a.nav-link.active {
  color: #FFC000;
}

/* Mobile Menu Button (Hamburger) */
#mobile-menu-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

#mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
}

/* Animate hamburger to 'X' */
#mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Panel */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(62, 41, 60, 0.9); /* Slightly transparent background */
  backdrop-filter: blur(8px); /* Increased blur for a more frosted glass effect */
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

#mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}

/* Staggered animation for menu links */
#mobile-menu.active a.mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

a.mobile-nav-link {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  width: 80%;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Remove border from the last link */
a.mobile-nav-link:last-child {
  border-bottom: none;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open { overflow: hidden; }

/* Responsive Breakpoint */
@media (max-width: 768px) {
  nav.nav { display: none; } /* Hide desktop nav */
  #mobile-menu-btn { display: block; } /* Show hamburger button */
}

.hero {
  position: relative; /* For overlay */
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* For animations */
}

/* Add an overlay to all hero sections for consistency and readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 18, 57, 0.6); /* Dark violet overlay */
  z-index: 1;
}

/* Ensure hero text is above the overlay */
.hero .hero-text {
  position: relative;
  z-index: 2;
}

.home-hero {
  background-image: url('images/steptodown.com881855.jpg');
  animation: zoomInBg 20s ease-out infinite alternate;
}
.about-hero { background-image: url('images/about\ us.webp'); }
.gallery-hero { background-image: url('images/gallary\ background.jpg'); }
.blog-hero { background-image: url('images/blog\ 2.jpg'); }
.contact-hero { background-image: url('images/contact\ us\ 2.jpg'); }

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: fadeInDown 1s ease-out 0.3s;
  animation-fill-mode: backwards;
}

.hero-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: backwards;
}
.btn {
  background: #FFC000;
  padding: 12px 30px;
  border-radius: 50px;
  margin: 5px 10px;
  color: #3E293C;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #FFC000;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.btn-outline:hover {
  background: white;
  color: #3E293C;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.hero .cta-buttons {
  animation: fadeInUp 1s ease-out 0.9s;
  animation-fill-mode: backwards;
}
/* Grid Section */
.grid {
    padding: 60px 20px;
    background: #f8f8f8;
    margin-top: 40px;
}

.grid h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #3E293C;
    margin-bottom: 40px;
    position: relative;
}

.grid h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FFC000;
    margin: 15px auto;
}
/* Footer */
.footer {
  background: #3E293C;
  color: #fff;
  padding: 48px 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3, 
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffc000;
}

.footer-col p {
  font-size: 14px;
  line-height: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffc000;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FFC000;
  text-shadow: 0 0 10px #FFC000;
}

.footer-bottom {
  text-align: left;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(135deg, #3E293C); /* stylish deep violet */
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge i {
  font-size: 20px;
  color: #ffd700; /* gold icon for contrast */
}

.badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


/* about highlight */
/* About Us Section */
.about-section {
  background: #ffffff; /* White background */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 2.5rem;
  color: #3b0a45; /* Deep violet */
  margin-bottom: 20px;
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3b0a45; /* Deep violet */
  margin-bottom: 15px;
  animation: fadeInUp 1.5s ease-in-out;
}

.highlight {
  color: #FFC000; /* Golden highlight */
  font-weight: bold;
}

/* Simple Animation */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomInBg {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

@keyframes subtleGradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


/* GRID (Mission, Vision, Values) */
.grid {
  text-align: center;
  padding: 60px 20px;
}
.grid h2 {
  margin-bottom: 40px;
  font-size: 32px;
}
.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.card i {
  font-size: 32px;
  color: #FFC000;
  margin-bottom: 15px;
}



/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px); /* Reduced card width */
  justify-content: center; /* Center the cards within the grid */
  gap: 2rem;
  padding: 3rem 5rem;
  background: #3E293C;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-grid {
    padding: 3rem 1rem; /* Adjust padding for mobile */
  }
}

.card {
  width: 100%; /* Ensure card fills the grid column */
}

.card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-img {
  width: 100%;
  height: 180px; /* Reduced image height */
  object-fit: cover;
}

.card-content {
  padding: 1.2rem; /* Reduced padding */
}

.card-content h2 {
  font-size: 1.2rem; /* Reduced heading size */
  color: #FFC000;
  margin-bottom: 0.8rem;
}

.card-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-content p {
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-grid .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #5D3D5A);
  color: #fff;
  font-weight: bold;
  width: 150px; /* Set a fixed width */
  text-align: center; /* Center the text inside the button */
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #FFC000);
  transform: scale(1.05);
}
.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: linear-gradient(145deg, #3E293C, #5D3D5A);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card i {
    color: #ffc000;
    font-size: 2.5rem;
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #FFC000;
}

.card:hover i {
    animation: iconWobble 0.8s ease-in-out;
}

@keyframes iconWobble {
    0% {
        transform: scale(1) rotate(0);
    }
    25% {
        transform: scale(1.2) rotate(-10deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

/* Responsive design for cards */
@media (max-width: 900px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 20px;
    }
    
    .card:nth-child(7) {
        grid-column: 1 / -1;
        /* Center the last odd item */
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .card-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .grid h2 {
        font-size: 1.8rem;
    }
    
    .card {
        min-height: 100px;
        padding: 20px 15px;
    }

    .card:nth-child(7) {
        grid-column: auto; /* Reset from tablet view */
    }
    
    .card i {
        font-size: 2rem;
    }
}
/* Responsive design */
@media (max-width: 900px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .card:nth-child(7) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .grid h2 {
    font-size: 1.8rem;
  }
  
  .card {
    min-height: 100px;
    padding: 20px 15px;
    font-size: 16px;
  }
}


/* Trust bar */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 20px;
  background: #f8f8f8;
  max-width: 1200px;
  margin: 40px auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 60%);
  z-index: 1;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3E293C;
  border-radius: 50%;
  padding: 12px;
  z-index: 2;
}

.trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.trust-text {
  z-index: 2;
}

.trust-text h3 {
  color: #3E293C;
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.trust-text p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust {
    grid-template-columns: 1fr;
  }
}
.why-choose {
  background: linear-gradient(270deg, #f0f2f5, #e6e9ee, #f0f2f5);
  background-size: 400% 400%;
  animation: subtleGradient 15s ease infinite;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 !important;
  clip-path: none !important;
  overflow: visible !important;
}
.why-choose h2 {
  font-size: 2rem;
  color: #3E293C;
  margin-bottom: 40px;
  position: relative;
}
.why-choose h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #FFC000;
  margin: 15px auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.why-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.why-card i {
  font-size: 2.2rem;
  color: #FFC000;
  margin-bottom: 15px;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.testimonials {
  background: linear-gradient(270deg, #3E293C, #5D3D5A, #3E293C);
  background-size: 400% 400%;
  animation: subtleGradient 20s ease infinite;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.testimonials h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.testimonial {
  max-width: 600px;
  margin: 0 auto 25px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
}
.testimonial h4 {
  margin-top: 10px;
  color: #FFC000;
}
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #3E293C, #5D3D5A);
  color: white;
}
.cta-final h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.cta-final .btn {
  background: #FFC000;
  color: #3E293C;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
}
.cta-final .btn:hover {
  background: #FFC000;
}
/* Contact Section */
.contact-section {
  padding: 3rem 5%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h2 {
  color: #3E293C;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-info a {
  text-decoration: none;
  color: #3E293C;
  font-weight: bold;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 1rem;
  color: #3E293C;
}

/* Contact Section Grid */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr; /* stack items */
    gap: 20px;
  }

  .contact-info, 
  .contact-form {
    padding: 20px;
    font-size: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    font-size: 14px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 20px;
    text-align: center;
  }
}

.contact-section {
  background: #f8f8f8;
  padding: 40px 20px;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #3E293C; /* deep violet */
}

.contact-container p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 15px;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #3E293C;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3E293C;
  outline: none;
}

.contact-form button {
  padding: 14px;
  background: #3E293C; /* violet */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #3E293C;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 15px;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin: 0.7rem 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border: 1px solid #3E293C;
  box-shadow: 0 0 6px #3E293C;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #231239, #231239);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #FFC000,#f0e13a);
  transform: translateY(-2px);
}
/* Footer */
footer {
  background: #231239;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
.floating-buttons {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.call-button, .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  text-decoration: none;
}

.call-button:hover, .whatsapp-button:hover {
  transform: scale(1.1);
}

.call-button i {
  color: #1565c0;
  font-size: 2.2rem;
}

.whatsapp-button img {
  width: 36px;
  height: 36px;
}

/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Common Style */
.floating-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Call Button */
.call-btn {
  background: #3E293C; /* Green shade for call */
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #3E293C; /* Official WhatsApp Green */
  content: "Hello, I'm interested in your fabrication services. Can I get a quote?";
}

/* Hover Effects */
.floating-buttons a:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Glow Animation for floating buttons */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
#back-to-top-btn {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Positioned on the left */
  width: 50px;
  height: 50px;
  background-color: #3E293C;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0; /* Hidden by default */
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none; /* Use JS to show */
}

/* --- Notification Styles --- */
#notification-container {
  position: fixed;
  top: 80px; /* Below the header */
  right: 20px;
  z-index: 2000;
}

.notification {
  background-color: #3E293C;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  border-left: 5px solid #FFC000;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.error {
  background-color: #c0392b;
  border-left-color: #e74c3c;
}


/* --- Footer Styles --- */
footer {
  background-color: #231239; /* deep violet */
  color: #ecf0f1; /* Light gray text */
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  border-top: 5px solid #FFC000; /* Orange top border */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  padding: 20px;
  min-width: 250px;
  box-sizing: border-box;
}

.footer-column h3 {
  color: #FFC000; /* Orange for headings */
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: bold;
}

.footer-column p {
  font-size: 0.9em;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #FFC000;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-contact p i {
  margin-right: 10px;
  font-size: 1.1em;
  color: #FFC000;
}

.social-icons a {
  color: #ecf0f1;
  font-size: 1.3em;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFC000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8em;
  color: #bfbdc7;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Responsive styles for buttons in hero section */
.cta-buttons .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem auto;
  width: 100%; /* Full width on smaller screens */
  max-width: 300px; /* Limit width on larger screens */
}

@media (min-width: 768px) {
  .cta-buttons .btn {
    width: auto; /* Revert to auto width on larger screens */
    margin: 0 0.5rem; /* Add spacing between buttons */
  }
}

/* Animation for timeline */
.timeline-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
