@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}

/*
Orange #ef7f08
Blue #3b2a96
*/


/* W1.................................................MOB */	
    .w1 {
      width: 100%;
      background: #fff;
      border-bottom: 3px solid #ef7f08;
		font-family: 'Poppins', sans-serif;
		letter-spacing: 1px;
		position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
		
    }

    .w1-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .w1-logo img {
      height: 80px;
      width: auto;
    }

    .w1-burger {
      font-size: 30px;
      color: #ef7f08;
      cursor: pointer;
      display: block;
    }

    .w1-mobile-menu {
      width: 100%;
      background-color: #3b2a96;
      max-height: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: max-height 0.4s ease;
    }

    .w1-mobile-menu.show {
      max-height: 1000px;
    }

    .w1-mobile-menu a {
      color: #fff;
      padding: 15px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		transition: 0.3s ease;
    }
.w1-mobile-menu a:hover {
      color: #ef7f08;
	transition: 0.3s ease;
    }
    .w1-desktop-right {
      display: none;
      text-align: right;
    }

    .w1-phone {
  font-size: 20px;
  color: #fff;
  background-color: #ef7f08;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.w1-phone:hover {
  background-color: #3b2a96;
}
   .w1-desktop-menu {
		margin-top: 20px;
		
    }
    .w1-desktop-menu a {
      margin-left: 20px;
      text-decoration: none;
      color: #3b2a96;
      font-weight: bold;
		transition: color 0.3s ease;
    }
.w1-desktop-menu a:hover {
      color: #ef7f08;
    }

    @media (min-width: 800px) {
      .w1-burger {
        display: none;
      }

      .w1-mobile-menu {
        display: none !important;
      }

      .w1-desktop-right {
        display: block;
      }
    }

/* Desktop Dropdown */
/* Desktop Dropdown */
.w1-dropdown {
  position: relative;
  display: inline-block;
}

.w1-dropdown > a {
  display: inline-block;
  padding: 15px 20px;
  font-weight: bold;
  color: #3b2a96;
  text-decoration: none;
}

.w1-dropdown > a:hover {
  color: #ef7f08;
}

.w1-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  min-width: 200px;
  z-index: 1000;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.w1-dropdown-content a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  color: #3b2a96;
  text-decoration: none;
  font-weight: normal;
  box-sizing: border-box;
  white-space: nowrap;
}

.w1-dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #ef7f08;
  box-shadow:  5px 5px 5px #888;
}

.w1-dropdown:hover .w1-dropdown-content {
  display: block;
}

/* Mobile Dropdown */
.w1-mobile-dropdown {
  color: #fff;
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.w1-mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-top: 10px;
}

.w1-mobile-dropdown-content a {
  padding: 15px;
  color: #fff;
  background-color: #2e217d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.w1-mobile-dropdown:hover .w1-mobile-dropdown-content {
  display: flex;
}


.w1.shrink {
  border-bottom-width: 2px;
}

.w1.shrink .w1-container {
  padding: 0px 15px;
  margin-bottom: -10px;
}

.w1.shrink .w1-logo img {
  height: 65px;
  padding-top: 5px;
  padding-bottom: 10px;
}
 @media (min-width: 800px) {
 .w1.shrink .w1-logo img {
  padding-top: 0px;
  padding-bottom: 0px;
}
}
.w1.shrink .w1-phone {
  font-size: 18px;
  margin-bottom: -15px;
  margin-top: 5px;
  padding: 4px 12px;
}
/* W2.................................................MOB */	

.w2 {
  font-family: 'Poppins', sans-serif;
  padding: 210px 20px 100px;
  text-align: center;
  position: relative;
  
}

.w2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.w2-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.w2 h1 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
	color: #3b2a96;
	text-transform: uppercase;
}
@media only screen and (min-width: 450px) {
.w2 h1 {
  font-size: 44px;
}
}
@media only screen and (min-width: 600px) {
.w2 h1 {
  font-size: 48px;
}
}
.w2 p {
  font-size: 20px;
  margin-bottom: 30px;
	color: #444;
}

.w2-btn {
  background-color: #ef7f08;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  display: inline-block;
	letter-spacing: 1px;
}

.w2-btn:hover {
  background-color: #c76706;
	color: #fff;
}


/* W3.................................................MOB */	

.w3 {
	width:100%;
	height:auto;
	padding: 40px 0px;
	background-color: #f9f9fc;
}
.w3-content {
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
		padding-left:30px;
		padding-right:30px;
	font-family: 'Poppins', sans-serif;
}
.w3 h2 {
	color: #3b2a96;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.w3 h3 {
	color: #ef7f08;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.w3 p,
.w3 li {
	color: #444;
	font-size: 17px;
	line-height: 30px;
	letter-spacing: 1px;
}
.w3 a:hover {
	color: #ef7f08;
	transition: color 0.3s ease;
}
.tick-list {
  list-style: none;
  padding-left: 15px;
}
/* W4.................................................MOB */	

.w4 {
  background-image: url('../images/contact-bg.webp');
  background-size: cover;
  background-position: top center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w4-content {
  padding: 40px;
  border-radius: 10px;
}

.w4 h4 {
  font-size: 50px;
	letter-spacing: 1px;
  margin-bottom: 40px;
}

.w4-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ef7f08;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
	letter-spacing: 1px;

}

.w4-button:hover {
  background-color: #c76706;
}


/* W5.................................................MOB */	
.w5-testimonials-wrapper {
      max-width: 1200px;
      margin: 0 auto;
	padding: 40px 20px 60px;
    }

   .w5-testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

    .w5-testimonial {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: block;
      position: relative;
		font-family: 'Poppins', sans-serif;
    }

    .w5-testimonial h3 {
      font-size: 16px;
      margin: 0 0 5px;
		
    }

    .w5-stars {
      width: 130px;
      margin: 5px 0 10px;
    }

    .w5-google-logo {
      width: 30px;
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .w5-testimonial p {
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    .w5-see-more-wrapper {
      text-align: center;
      margin-top: 20px;
    }

    .w5-see-more-btn {
      background: #ef7f08;
		width: 100%;
      color: #fff;
		font-size: 17px;
		letter-spacing: 1px;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .w5-see-more-btn:hover {
      background: #3b2a96;
    }

.w5-heading {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  color: #3b2a96;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

   /* Responsive columns */
@media (min-width: 600px) {
  .w5-testimonials-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
  }
}

@media (min-width: 900px) {
  .w5-testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .w5-testimonials-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TESTIMONIALS PAGE (W3).................................................MOB */	
.testimonials-wrapper {
      max-width: 1200px;
      margin: 0 auto;
	padding: 40px 20px 60px;
    }

   .testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

    .testimonial {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: block;
      position: relative;
		font-family: 'Poppins', sans-serif;
    }

    .testimonial h3 {
      font-size: 16px;
      margin: 0 0 5px;
		
    }

    .testimonials-stars {
      width: 130px;
      margin: 5px 0 10px;
    }

    .testimonials-google-logo {
      width: 30px;
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .testimonial p {
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    .testimonials-see-more-wrapper {
      text-align: center;
      margin-top: 20px;
    }

    .testimonials-see-more-btn {
      background: #ef7f08;
		width: 100%;
      color: #fff;
		font-size: 17px;
		letter-spacing: 1px;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .testimonials-see-more-btn:hover {
      background: #3b2a96;
    }

.testimonials-heading {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  color: #3b2a96;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

   /* Responsive columns */
@media (min-width: 600px) {
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
  }
}

@media (min-width: 900px) {
  .testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .testimonials-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* W6.................................................MOB */	
.w6-gallery {
	padding: 60px 0px;
	box-shadow: 0 -10px 20px  rgba(0, 0, 0, 0.2);
	
}
 .w6-gallery h3 {
      font-size: 30px;
	 font-family: 'Poppins', sans-serif;
	 color: #3b2a96;
	 text-align: center;
	 margin: 0;
    }
.w6-gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
	padding: 60px 20px;
  max-width: 1200px;
	margin: 0 auto;
}

.w6-image {
  width: 100%;
	max-height: 180px;
  cursor: pointer;
  border-radius: 4px;
  object-fit: cover;
}

@media (min-width: 600px) {
  .w6-gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 800px) {
  .w6-gallery-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1000px) {
  .w6-gallery-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

.w6-see-more-wrapper {
  text-align: center;
	padding: 0px 20px;
}

.w6-see-more-btn {
  background: #3b2a96;
  color: #fff;
		font-size: 17px;
		letter-spacing: 1px;
	width: 100%;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
	max-width: 1200px;
	margin: 0 auto;
}

.w6-see-more-btn:hover {
  background: #ef7f08;
}

/* Lightbox */
.w6-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.w6-lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

.w6-close, .w6-prev, .w6-next {
  position: absolute;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.w6-close {
  top: 20px;
  right: 30px;
}

.w6-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.w6-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}



/* W7.................................................MOB */	

.about-section {
  padding: 80px 20px;
  background-color: #fff;
	box-shadow: 0 -10px 20px  rgba(0, 0, 0, 0.2);
	font-family: 'Poppins', sans-serif;
}
.about-section h3 {
      font-size: 26px;
	  line-height: 38px;
	  letter-spacing: 2px;
	color: #3b2a96;
}
.about-section span {
      font-size: 24px;
	line-height: 32px;
	color: #666;
    }
.about-section p {
      font-size: 17px;
	line-height: 27px;
	color: #666;
    }
.about-container {
  display: flex;
	max-width: 1200px;
	margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.about-text {
  text-align: center;
  max-width: 600px;
 font-family: 'Poppins', sans-serif;
}

/* Desktop layout */
@media (min-width: 800px) {
  .about-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .about-image,
  .about-text {
    flex: 1;
  }

  .about-text {
    padding-left: 40px;
  }
}



/* W8.................................................MOB */	

.w8-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
	font-family: 'Poppins', sans-serif;
	color: #666;
	max-width: 1200px;
	margin: 0 auto;
}

.w8-left, .w8-right {
  padding: 20px;
  border-radius: 8px;
  flex: 1;
	
}
.w8-left img {
	max-width: 150px;
}
.w8-left a:hover {
	color: #ef7f08;
	transition: color 0.3s ease;
}
@media (min-width: 800px) {
  .w8-wrapper {
    flex-direction: row;
  }
}

/* W9.................................................MOB */	

.w9-wrapper {
  display: flex;
	background-color: #3b2a96;
  flex-direction: column;
  gap: 20px;
  padding: 10px 20px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
}

.w9-left, .w9-right {
	text-align: center;
  flex: 1;	
}
.w9-wrapper a:hover {
	color: #ef7f08;
	transition: color 0.3s ease;
}
@media (min-width: 800px) {
  .w9-wrapper {
    flex-direction: row;
  }
	.w9-left {
		text-align: left;
	}
	.w9-right {
		text-align: right;
	}
}
/* SERVICES................................................. */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
	font-family: 'Poppins', sans-serif;
  }

  .service-box {
    background: #3b2a96;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .service-box:hover {
    transform: scale(1.02);
  }

  .service-box img {
    width: 100%;
    height: auto;
    display: block;
  }

  .service-box-content {
    padding: 20px;
  }

  .service-box-content h4 {
    color: #ef7f08;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .service-box-content p {
  color: #fff;
    font-size: 16px;
    margin: 0;
  }

  @media (min-width: 600px) {
    .services-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 900px) {
    .services-wrapper {
      grid-template-columns: repeat(3, 1fr);
    }
  }

/* QUOTE POP UP................................................. */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

.popup-form {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  text-align: center;
}

.popup-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.popup-header h2 {
  color: #3b2a96;
  font-size: 22px;
  margin-bottom: 5px;
}

.popup-header p {
  font-size: 14px;
  color: #555;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.popup-form input,
.popup-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 5px;
	font-family: 'Poppins', sans-serif;
}

.popup-form button[type="submit"] {
  background: #ef7f08;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.popup-form button[type="submit"]:hover {
  background: #c86707;
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  background: none;
  border: none;
  color: #3b2a96;
  cursor: pointer;
}
@media only screen and (min-width: 600px) {
}

/* CALL US BUTTON................................................. */
.call-us-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ef7f08;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 100px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: background 0.3s ease;
}
.quote-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ef7f08;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
	box-sizing: border-box;
	padding-top: 25px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: background 0.3s ease;
}
/* Hover effect (shared) */
.call-us-btn:hover,
.quote-btn:hover {
  background: #d96f05;
}

/* Only show call button on small screens */
.call-us-btn {
  display: none;
}
@media (max-width: 799px) {
  .call-us-btn {
    display: block;
  }
}

/* Only show quote button on larger screens */
.quote-btn {
  display: none;
}
@media (min-width: 800px) {
  .quote-btn {
    display: block;
  }
}

