@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.main-hero {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  height: auto;
  padding-top: 2rem;
  padding-left: 20px;
  padding-right: 20px;
}
.navbar {
  background-color: #ffffff;
  color: #000000;
  border-radius: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 130px;
  margin-right: 0.5rem;
  border-radius: 10px;
}

.navbar-logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.mobile-close-btn{
    display: none;
}


.navbar-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.navbar-links li a {
  text-decoration: none;
  color: #000000;
  padding: 0.5rem 1rem;
  border: 1px solid #555;
  border-radius: 30px;
  transition: background 0.3s;
}

.navbar-links li a:hover {
  background-color: #000000;
  color: #ffffff;
}

.call-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  background: #000000;
  color: white;
  border: 2px solid #656565;
}

.call-btn:hover {
  transform: translateY(-1px);
}


.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  position: relative;
}

.menu-icon,
.close-icon {
  transition: opacity 0.3s ease;
}

.close-icon {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 868px) {

    .mobile-menu-header {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
  }

  .mobile-close-btn {
    position: absolute;
    right: 20px;
    top: -40px;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    display: block;
    border: none;
    color: #000000;
    padding: 10px;
  }
  .navbar-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    padding-right: 10px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #ffffff;
    padding-top: 5rem;
    padding-left: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding-top: 3rem;
  }

  .navbar-links.active {
    right: 0;
  }

  .call-btn {
    display: none;
  }

  .navbar-logo span {
    font-size: 1rem;
  }

  .navbar-logo img {
    width: 150px;

    margin-right: 0.5rem;
    border-radius: 10px;
  }
  .navbar-links.active ~ .navbar-toggle {
    display: none;
  }
}

/* Navbar End  */

.hero {
  background: transparent;
}

.hero-container {
  max-width: 1200px;
  padding: 60px 10px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  text-align: left;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c2c2c;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  font-weight: 400;
  font-size: 1.6rem;
  color: #333;
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-btn {
  background: #000000;
  color: white;
  border: 2px solid #222;
}

.call-btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.btn-outline:hover {
  transform: translateY(-2px);
}

/* Responsive Styling */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 span {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0rem;
  }
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 10px;
  }

  .hero-text,
  .hero-image {
    flex: none;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h1 span {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* variety */

.team-section {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  position: relative;
  display: inline-block;
}


.team-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.team-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  min-height: 400px; /* Ensure space for content */
}

.team-member {
  min-width: 100%;
  padding: 0 15px;
  transition: all 0.5s ease;
  text-align: center;
  flex-shrink: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.team-member.active {
  opacity: 1;
  position: relative;
}

.member-image {
  width: 400px;
  height: 400px;
  border-radius: 10%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #333;
}

.member-position {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.member-description {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fffbfb;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #333;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .member-image {
    width: 220px;
    height: 220px;
    border-radius: 10%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .slider-btn {
    display: none;
  }

  .team-member {
    padding: 0 30px;
  }
}

/* Steps  */
/* INSTRUCTION SECTION */

/* INSTRUCTION SECTION - FEATURES */
.section.instruction {
  padding: 50px 0px;
  position: relative;
  background: transparent;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 20 0px;
    text-align: center;
}

.section.instruction .section-title,
.section.instruction .section-text {
  text-align: center;
}

.section.instruction .section-title {
  margin-bottom: 15px;
  color: #2c2c2c;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section.instruction .section-text {
  font-size: 1.1rem;
  margin: 15px auto 35px;
  max-width: 600px;
  color: #555;
  line-height: 1.6;
}

.instruction-list {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.instruction-list > li {
  list-style: none;
}

@media (min-width: 768px) {
  .instruction-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .instruction-card {
    position: relative;
  }
  
  .instruction-list > li:nth-child(even) .instruction-card::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .instruction-list {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .instruction-list > li:nth-child(even) .instruction-card::after {
    display: block;
  }
  
  .instruction-list > li:last-child .instruction-card::after {
    display: none;
  }
}

.instruction-card {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
    cursor: pointer;

}

.card-banner {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin-bottom: 20px;
  display: inline-block;
  padding: 15px;
  border-radius: 50%;
  background: rgba(246, 211, 101, 0.1);
}

.instruction-card:hover .card-banner {
  transform: rotateY(360deg);
}

.instruction-card .img {
  margin-inline: auto;
  margin-block-end: 12px;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.card-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fda085;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.card-title {
  font-size: 1.2rem;
  margin: 5px 0 15px;
  color: #2c2c2c;
  line-height: 1.3;
  font-weight: 700;
}

.card-text {
  color: #555;
  font-size: 0.8rem;
  line-height: 1.6;
}


/* Model section start */


        .models-section {
        background: transparent;
        padding: 60px 0px;
        max-width: 1200px;
        margin: auto;
      }

    .models-section-title {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 15px;
        color: #2c2c2c;
        line-height: 1.2;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
      }

      .models-section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
        border-radius: 2px;
      }

      .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        margin: 0 auto 50px;
        max-width: 700px;
        color: #555;
        line-height: 1.6;
      }

      .model-container {
        display: flex;
        height: 60vh;
        min-height: 500px;
        margin-bottom: 60px;
        border-radius: 20px;
        overflow: hidden;
        background: transparent;
      }

      .model-container:nth-child(even) {
        flex-direction: row-reverse;
      }

       .model-specs {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        position: relative;
      }
      .model-image{

        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        position: relative;

      }

      .model-image {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px 0 0 20px;
      }

      .model-container:nth-child(even) .model-image {
        border-radius: 0 20px 20px 0;
      }

      .model-image img {
        max-width: 100%;
        max-height: 90%;
        object-fit: contain;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
        transition: transform 0.4s ease;
      }

      .model-image img:hover {
        transform: scale(1.03);
      }

      .model-specs {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 253, 253, 0.95) 100%);
        border-radius: 0 20px 20px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
      }

      .model-container:nth-child(even) .model-specs {
        border-radius: 20px 0 0 20px;
      }

      .model-name {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
      }

      .model-name:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
        border-radius: 2px;
      }

      .model-description {
        font-size: 1.05rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 25px;
        max-width: 90%;
      }

      .specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 90%;
      }

      .spec-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }

      .spec-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(246, 211, 101, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e67e22;
        font-size: 1.2rem;
        flex-shrink: 0;
      }

      .spec-text {
        flex: 1;
      }

      .spec-title {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
        font-size: 1.1rem;
      }

      .spec-value {
        font-size: 0.95rem;
        color: #666;
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        .model-container {
          flex-direction: column !important;
          height: auto;
          min-height: auto;
        }
        
        .model-image, .model-specs {
          width: 100%;
          min-height: 50vh;
          border-radius: 0 !important;
        }
        
        .model-image {
          border-radius: 20px 20px 0 0 !important;
        }
        
        .model-specs {
          border-radius: 0 0 20px 20px !important;
        }
        
        .specs-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .section-title {
          font-size: 2.2rem;
        }
        
        .model-name {
          font-size: 1.8rem;
        }
        
        .model-description {
          font-size: 1rem;
        }
      }

      @media (max-width: 480px) {
        .section-title {
          font-size: 1.8rem;
        }
        
        .section-subtitle {
          font-size: 1rem;
        }
        
        .model-image, .model-specs {
          padding: 25px;
        }
        
        .model-name {
          font-size: 1.6rem;
        }
      }


      /* Logo*/


      /* Logo Section Styles */
/* Partners Section Styles */
.partners-section {
  
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-card:hover img {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
}

.partner-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.9) 0%, rgba(253, 160, 133, 0.9) 100%);
  color: white;
  padding: 10px;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 500;
}

.partner-card:hover .partner-overlay {
  bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partner-card {
    height: 100px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}



/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.1) 0%, rgba(253, 160, 133, 0.1) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-content {
  flex: 1;
  max-width: 600px;
}

.cta-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
}

.cta-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  border-radius: 2px;
}

.cta-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn i {
  font-size: 1rem;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: white;
  border: 2px solid transparent;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
}

.cta-btn-secondary:hover {
  background: #2c2c2c;
  color: white;
  transform: translateY(-3px);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #fda085;
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 160, 133, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
}

/* Responsive CTA */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .cta-form {
    width: 100%;
    order: -1;
    margin-bottom: 30px;
  }
}

.quote-btn{
    cursor: pointer;
}
@media (max-width: 480px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-form {
    padding: 20px;
  }
}

/* Popup Form Styles */
.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.form-popup.active {
  opacity: 1;
  visibility: visible;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.form-popup.active .form-container {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #fda085;
}

.form-container h3 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.form-container h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  border-radius: 2px;
}

/* Update the button to look like a button */
#quoteBtn {
  background: transparent;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#quoteBtn:hover {
  background: #2c2c2c;
  color: white;
  transform: translateY(-3px);
}




/* Footer Styles */
.site-footer {
  padding: 20px 0 0;
  margin-top: 60px;
  background-color: white;
  
}

.footer-container {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.footer-title {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.footer-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: white;
  transform: translateY(-3px);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #e67e22;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #555;
}

.contact-info i {
  margin-right: 10px;
  color: #e67e22;
  margin-top: 3px;
}

.contact-info a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #e67e22;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #777;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #e67e22;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}