/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}
/* Utility classes */
.btn {
  padding: 12px 24px;
  
  }
.btn-primary {
  background-color: blue;
  color: #fff;
}
.btn-primary:hover {
  background-color: #007bff;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid #007bff;
  color: #007bff;
}
.btn-secondary:hover {
  background-color: #007bff;
  color: #fff;
}

/* Navbar styles
/* Basic reset for list styles */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Navbar styles */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Logo styles */
.navbar .logo img {
  height: 50px; /* adjust size as needed */
  width: auto;
  display: block;
}

/* Link styles */
.nav-links a {
  text-decoration: none;
  color: #000; /* black text for contrast */
  font-family: 'Montserrat', serif;
  font-size: 1em;
  position: relative;
}
/* Optional: underline animation on hover */
.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: blue;
  transition: width 0.3s;
  width: 0;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Basic styles omitted for brevity, focus on responsiveness */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Logo */
.navbar .logo img {
  height: 50px; /* adjust as needed */
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Hide menu toggle on larger screens */
.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  /* Hide nav links initially */
  .nav-links {
    position: absolute;
    top: 70px; /* adjust based on your navbar height */
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    display: none; /* hidden by default */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Show menu toggle button */
  .menu-toggle {
    display: block;
  }

  /* Show menu when active */
  .nav-links.show {
    display: flex;
  }
}
.contact-info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #333;
}
/* Hero section with background image & overlay */
.hero {
   /* Replace with your preferred image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Optional overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112.5%;
  background: rgba(0,0,0,0.4);/* Adjust overlay transparency as needed */
  z-index: 1;
}
.decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  animation: float 10s ease-in-out infinite;
}

.shape1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.shape2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  animation-delay: 5s;
}

/* Floating animation for shapes */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Style for typed text */
#typed {
  opacity: 0; /* start hidden */
  animation: fadeInSubtle 2s ease-in-out forwards;	
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* Content container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
  padding: 20px;
}

/* Heading styles */
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  animation: fadeInUp 1s ease-out;
}

/* Paragraph styles */
.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

/* CTA Button */
.btn-primary {
  background-color: #ff6f61;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff3b2e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }
}

/* About section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.about-text {
  flex: 1 1 300px;
  padding: 20px;
}
.about-text h2 {
  font-family: 'Montserrat', serif;
  font-size: 2.5em;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.2em;
  line-height: 1.6;
}
.about-image {
  flex: 1 1 300px;
  padding: 20px;
}
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.05);
}

/* Services slider */
.services-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}
.services-section h2 {
  font-family: 'Montserrat', serif;
  font-size: 2.5em;
  margin-bottom: 40px;
}
/* Slider container */
/* Container for the entire slider with arrows */
.service-slider-container {
  position: relative;
  max-width: relative;
  margin: 50px auto;
  overflow: hidden;
  padding: 20px 40px; /* space for arrows */
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#prev {
  left: 10px;
}
#next {
  right: 10px;
}
/* Slider wrapper */
.service-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Cards wrapper - flex row */
.cards-wrapper {
  display: flex;
  gap: 20px;
}

/* Individual card styling */
.card {
  min-width: 250px;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05); /* Slightly enlarge for boom effect */
  /* Optional: add a shadow or glow for more impact */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.card img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
}

.card p {
  font-size: 0.95em;
  color: #555;
}
/* Contact form */
/* Section styling */
.contact-section {
  background-color: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Title with animation */
.section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form styles */
/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contact Section with animated background */
.contact-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 50px 20px;
  overflow: hidden;
  min-height: 100vh;
  background-size: 600% 600%;
}

/* Overlay for subtle effects */
.background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Container */
.container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  flex-wrap: wrap;
}

/* Graphic side */
.graphic-side {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
}
.animated-graphic {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.animated-graphic:hover {
  transform: scale(1.05);
}

/* Form side */
.form-side {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Floating Labels Input & Textarea */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 20px 15px 10px 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: white;
  font-size: 1rem;
  color: black;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 10px #ffd70055;
}

label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 5px;
  color: light-grey;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Float label when input is focused or has value */
input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: black;
  background: rgba(0,0,0,0.2);
  padding: 0 5px;
  border-radius: 3px;
}

/* Submit Button */
.submit-btn {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #ffd700;
  color: #222;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Animations */
@keyframes gradientAnimation {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@media(max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .graphic-side,
  .form-side {
    flex: 1 1 100%;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
/* Footer styles with grid */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: 'Montserrat', serif;
  font-size: 2em;
  margin-bottom: 10px;
}
.footer-column h4 {
  margin-bottom: 10px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-column ul li a:hover {
  text-decoration: underline;
}
iframe {
  border: none;
  border-radius: 10px;
}

/* Responsive adjustments */
@media(max-width:768px) {
  .about-container {
    flex-direction: column;
  }
  .contact-container {
    flex-direction: column;
  }
}
/* Testimonial Section */
.testimonial {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
	font-family: 'Montserrat', serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align:center;
}


.section-title::after {
  content: '';
  height: 3px;
  width: 60px;
  background-color: #007bff;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Container for all testimonials */
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual testimonial card */
.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Header with user photo and info */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  margin-right: 15px;
}

.client-info {
  text-align: left;
}

.client-name {
  font-size: 1.2em;
  margin: 0 0 8px;
  font-weight: 600;
  color: #333;
}

.star-rating {
  color: #ffcc00; /* Gold color for stars */
  font-size: 1.2em;
}

/* Quote bubble */
.quote {
  position: relative;
  font-style: italic;
  font-size: 1em;
  color: #555;
  padding: 15px 20px;
  background: #e0f7fa;
  border-radius: 15px;
  line-height: 1.4;
}

.quote::before {
  content: '“';
  font-size: 3em;
  position: absolute;
  top: -10px;
  left: 15px;
  color: #007bff;
}

.quote p {
  margin: 0;
}