:root {
  --primary-color: #FF6F00;
  --secondary-color: #004A7C;
  --light-blue: #E3F2FD;
  --pastel-pink: #F8BBD0;
  --white: #ffffff;
  --dark-gray: #333333;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), #FF9800);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 10px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/l138ML.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Alternative hero backgrounds */
#hero.bg-alt1 {
  background-image: url('../img/ooRxgF.jpg');
}

#hero.bg-alt2 {
  background-image: url('../img/p3ULr3.jpg');
}

#hero.bg-alt3 {
  background-image: url('../img/qd4Te2.jpg');
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#thankyou{
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.thankyou-content{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;

}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 600px;
  z-index: 2;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-content .btn {
  font-size: 16px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.hero-content .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
#about {
  padding: 100px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 0 0 60%;
}

.about-image {
  flex: 0 0 35%;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
#services {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Importance Section */
#importance {
  padding: 100px 0;
  background-color: var(--white);
}

.importance-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.importance-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.importance-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #FF9800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

/* Advantages Section */
#advantages {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: var(--secondary-color);
}

/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-container {
  position: relative;
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.testimonial {
  min-width: 100%;
  padding: 40px;
  background-color: var(--light-blue);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  background-color: var(--light-gray);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary-color);
}

/* Contact Form Section */
#contact {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

/* Location Section */
#location {
  padding: 100px 0;
  background-color: var(--white);
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.location-info {
  flex: 0 0 calc(50% - 15px);
}

.location-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.location-info p {
  margin-bottom: 15px;
}

.location-map {
  flex: 0 0 calc(50% - 15px);
  min-height: 300px;
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-blue);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.btn-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-reject {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

/* SVG Logo Styles */
.logo-svg {
  fill: var(--secondary-color);
}

.logo-accent {
  fill: var(--primary-color);
}


/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px;
}

.policy-content h1 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-content ul li {
  margin-bottom: 5px;
}

/* Add error message styling */
.error-messages {
  background-color: rgba(255, 111, 0, 0.1);
  border-left: 3px solid var(--primary-color);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.error-messages ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.error-messages li {
  color: #d32f2f;
  margin-bottom: 5px;
}

.error-messages li:last-child {
  margin-bottom: 0;
}

.error-message {
  color: #d32f2f;
} 