
  :root {
  --dark-red: #e36511;
  --black: #000000;
  --white: #ffffff;
  --orange: #e36511;
}

body {
  font-family: "Times New Roman", Times, serif;
  color: #333;
}

p, h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", Times, serif;
}



/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 127, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 127, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 127, 0, 0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* Navbar */
/* Navbar */
.navbar {
  background-color: rgb(251, 250, 250); /* More transparency */
  animation: slideInDown 0.5s ease-out;
  padding: 4px 20px; /* Reduced padding for less height */
  min-height: 20px; /* Ensures a smaller height */
  font-family: "Times New Roman", Times, serif;

}


/* Navbar animation */
@keyframes slideInDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Navbar container */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo (Left Side) */
.navbar-brand {
  display: flex;
  align-items: center;
  border-radius: 80px;
}

.navbar-logo {
  max-height: 50px;
  width: auto;
}

/* Navbar items (Right Side) */
.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: var(--black) !important;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  text-decoration: none;
}

/* Underline effect on hover */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}

/* Navbar Toggle Button */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 10px;
}

/* Ensure the icon is visible */
.navbar-toggler-icon {
  background-color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 3px;
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  bottom: -10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }
}



/* Headline Section */
.headline {
  background-color: var(--orange);
  color: var(--white);
  padding: 15px 0;
  position: relative;
  animation: fadeIn 0.8s ease-out;
  font-family: "Times New Roman", Times, serif;
}

.headline-text {
  font-size: 1.1rem;
  margin: 0;
  
}

.headline-contact {
  text-align: right;
}

.headline-contact a {
  color: var(--white);
  margin-left: 15px;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.headline-contact a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.headline-contact i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.headline-contact a:hover i {
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  background-color: var(--black);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-content p {
  animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-content .btn {
  animation: slideInLeft 1s ease-out 0.7s both;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  animation: scaleIn 15s infinite alternate;
}

@keyframes scaleIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-image {
  position: relative;
  border: 5px solid var(--white);
  border-radius: 10px;
  filter: brightness(1.2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: rotate(3deg);
  animation: slideInRight 1s ease-out 0.3s both;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover {
  transform: rotate(0deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  animation: pulseGlow 2s infinite;
}



/* Section Titles */
.section-title {
  position: relative;
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease-out;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--orange);
  animation: widthGrow 0.8s ease-out;
}

@keyframes widthGrow {
  from { width: 0; }
  to { width: 70px; }
}

/* About */
.about {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text {
  padding: 30px;
  animation: slideInRight 0.8s ease-out;
  position: relative;
}
.about-section .lead {
  color: #e36511;
  font-family: "Times New Roman", Times, serif;
  font-size: 25px; /* Adjust size as needed */
  line-height: 1.0;
  font-weight: bold;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: black !important;
  margin-bottom: 10px;
  animation: countUp 2s ease-out forwards !important;
  opacity: 1 !important;

}
.see-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  
  opacity: 1;
  
}
.see-more-btn:hover {
  background-color:  #c6540f;
  transform: scale(1.05);
}
.see-more-btn:active {
  transform: scale(0.95); /* Optional: slight press effect */
}
.see-more-btn-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Services */
.services {
  padding: 80px 0;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRQTKuSIJsOIWBHdDkYFoNCfNLulsP6Skh36g&s');
  background-size: cover;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  opacity: 0.8;
  
  background-repeat: no-repeat;
}
.service-heading {
  color: #e36511; /* Change to your preferred color */
  font-weight: 20px;
  margin-bottom: 30px; /* Make it bold */
  font-size: 2.2rem; /* Adjust size */
  text-align: center; /* Center align */
  
}
.service-subheading {
  color: #f9f9f9; /* Darker color for readability */
  font-weight: 500; /* Medium boldness */
  font-size: 1.8rem; /* Slightly larger text */
  text-align: center; /* Center align */
  margin-bottom: 20px;
}



/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  padding: 25px;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 30px;
  border-bottom: 3px solid transparent;
  animation: fadeIn 0.8s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  
  width: 400px; /* Fixed width */
  height: 300px; /* Fixed height */
  box-sizing: border-box; /* Ensure padding doesn't increase size */
  overflow: hidden; /* Optional: prevent overflow of content */
}


/* Animations for cards */
.slider-item.active .service-card:nth-child(1) { animation-delay: 0.2s; }
.slider-item.active .service-card:nth-child(2) { animation-delay: 0.4s; }
.slider-item.active .service-card:nth-child(3) { animation-delay: 0.6s; }

/* Reset animations when switching slides */
.slider-item:not(.active) .service-card {
  opacity: 0;
  animation: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 8px solid #e36511;
}

.service-icon {
  color: #e36511;
  font-size: 2.8rem;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

/* Services Slider Styles */
.services-slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.4s ease;
}

.slider-item {
  flex: 0 0 100%;
  display: none;
}

.slider-item.active {
  display: block;
}

/* Navigation Arrows */
.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
  margin-left: -20px;
}

.slider-arrow.next {
  margin-right: -20px;
}

/* Dots Navigation */
.slider-dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

/* FadeIn Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Projects */
.projects {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.project-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
  animation: fadeIn 0.8s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  box-shadow: 0 4px 15px rgba(198, 84, 15, 0.5); /* Orange shadow */
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }

/* Hover Effect: Enhancing the Orange Glow */
.project-card:hover {
  box-shadow: 0 8px 20px rgba(198, 84, 15, 0.8); /* Brighter orange shadow on hover */
  transform: translateY(-5px); /* Slight lift effect */
}

/* Project Image */
.project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Project Image Hover Effect */
.project-card:hover .project-img {
  transform: scale(1.1);
}

/* Project Details */
.project-details {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.project-card:hover .project-details {
  transform: translateY(0);
}

/* Project Button */
.project-btn {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background-color: var(--dark-red);
  color: var(--white);
  transform: scale(1.1);
}


/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-image: url("Testinomials1.png");
  background-size: cover;
  color: var(--white);
  background-repeat: no-repeat;
}

.testimonial-card {
  background-color: rgb(255, 251, 251);
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  position: relative;
  animation: fadeIn 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;  /* Ensure all cards have the same height */
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: transparent ;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  color: var(--orange); /* Corrected: Use 'color' instead of 'font-color' */
  margin-bottom: 20px;
  flex-grow: 1;  /* Allows text area to expand */
}


.testimonial-author {
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  color:var(--orange);
  align-items: center;
  margin-top: auto;  /* Push author info to bottom of card */
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--orange);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

/* For equal heights in a row-based layout */
.testimonials .row {
  display: flex;
  flex-wrap: wrap;
}

.testimonials .col-md-4,
.testimonials .col-lg-4 {
  display: flex;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--white);
  animation: fadeIn 0.8s ease-out;
}

.footer-text {
  margin-bottom: 20px;
  color: #aaa;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.footer-social {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-links {
  list-style: none;
  padding: 0;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.footer-links li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #aaa;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

footer {
  background-color: #5c5b5b; /* Fire Orange */
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 16px;
}

footer a {
  color: #31adec /* Contrast color for links */
  
  
}

footer a:hover {
  text-decoration: underline;
}




/* Image Dropzone */
.image-upload {
  border: 2px dashed #ddd;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
  0% { border-color: #ddd; }
  50% { border-color: var(--orange); }
  100% { border-color: #ddd; }
}

.image-upload:hover {
  border-color: var(--orange);
  animation: none;
  background-color: rgba(255, 127, 0, 0.05);
}

.image-upload i {
  font-size: 2rem;
  color: #aaa;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.image-upload:hover i {
  color: var(--orange);
  transform: translateY(-5px);
}

/* Scroll Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated Progress Bars */
.progress {
  height: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: var(--dark-red);
  transition: width 1.5s ease;
}

/* Loading Animation */
.loading-animation {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.loading-animation div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid var(--orange);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--orange) transparent transparent transparent;
}

.loading-animation div:nth-child(1) {
  animation-delay: -0.45s;
}

.loading-animation div:nth-child(2) {
  animation-delay: -0.3s;
}

.loading-animation div:nth-child(3) {
  animation-delay: -0.15s;
}

/* Button Hover Effect */
.btn-hover-effect {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hover-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-hover-effect:hover::after {
  left: 100%;
}









/* contact page */

/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  /*background-image: url("OIP.jpg");*/
  color: #333;
}

/* HEADER SECTION */
.header {
  width: 100%;
  height: 400px;
  background: url("contact.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.header-content {
  position: relative;
  z-index: 2;
  animation: fadeInDown 1.5s ease-in-out;
}

/* CONTACT SECTION */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 40px auto;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  animation: fadeInUp 1.5s ease-in-out;
}

.contact-card {
  background: #fff;
  padding: 20px;
  margin: 30px;
  border-radius: 5px;
  border: 0.5px solid #ac2902;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  flex: 4;
  text-align: center;
  transition: transform 0.6s ease, box-shadow 0.8 ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 3px 7px 15px rgba(0, 0, 0, 0.2);
}

/* CONTACT CARD IMAGE ICON */
.contact-card img {
  width: 50px; /* Reduced size */
  height: 50px; /* Maintain aspect ratio */
  margin-bottom: 10px;
}

/* LABEL DESIGN */
.contact-label {
  font-size: 24px; /* Smaller font size */
  padding: 6px 10px; /* Adjust padding for a smaller look */
  border-radius: 10px;
}

/* CONTACT FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  width: 60%;
  margin: 40px auto;
  border-radius: 8px;
  border: 0.5px solid #e36511;
  
  box-shadow: 0px 6px 18px rgba(227, 101, 17, 0.4); /* Orange glow */
  text-align: center;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-form:hover {
  box-shadow: 0px 8px 25px rgba(227, 101, 17, 0.6); /* Stronger shadow on hover */
  transform: translateY(-3px); /* Slight lift effect */
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #e36511;
}
.contact-form .form-group {
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #faf7f7;
  border-radius: 8px;
  border: 0.5px solid #060505;
  font-size: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0px 0px 8px #d4530d(255, 88, 21, 0.5);
  outline: rgba(0, 0, 0, 0.1);
}

.btn-submit {
  background-color: #e36511;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background-color: #d4530d;
  transform: scale(1.05);
}

/* MAP SECTION */
.map-container {
  width: 60%;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 3px 4px 12px rgba(227, 101, 17, 0.6); /* Orange shadow */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.map-container:hover {
  box-shadow: 0px 8px 25px rgba(227, 101, 17, 0.8); /* Stronger orange shadow on hover */
  transform: translateY(-3px); /* Slight lift effect */
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Animation for the map appearance */
@keyframes mapAnimation {
  0% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.map-container {
  animation: mapAnimation 0.8s ease-out;
}

@keyframes mapAnimation {
  0% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
/* FEEDBACK SECTION */
.feedback-container {
  background: #fff;
  padding: 20px;
  width: 60%;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(227, 101, 17, 0.6);
  text-align: center;
  animation: fadeInUp 1.5s ease-in-out;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feedback-container:hover {
  box-shadow: 0px 8px 20px rgba(227, 101, 17, 0.8);
  transform: translateY(-3px);
}

.feedback-container h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e36511;
}

/* Star rating styles */
.stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stars span {
  font-size: 30px;
  cursor: pointer;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.stars span:hover,
.stars span.active {
  color: #e36511;
  transform: scale(1.2);
}

.feedback-container textarea {
  width: 80%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  resize: vertical;
}

.submit-btn {
  background-color: #e36511;
  color: #fff;
  padding: 10px 20px;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
  background-color: #e36511;
  transform: scale(1.05);
}
