 /* Global Font Styles */
body {
     font-family: 'Noto Sans', sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: 'Noto Sans', sans-serif;

.logo-header{
  width: 300px!important;
}

}
.site-header {
  background-color: #13356b;
  color: #fff;
  padding: 15px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.logo span {
  color: #33b240;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 14px;
}

.main-nav ul li a:hover {
  color: #33b240;
}

.call-now {
  background-color: #33b240;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.call-now:hover {
  background-color: #2ca334;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .call-now {
    margin-top: 10px;
  }
}
/* Banner Styles */
.hero-banner {
  background: url('../images/logo/banner.webp') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  color: #fff;
  position: relative;
  padding: 0 5%;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(19, 53, 107, 0.7);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #33b240;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #2ca334;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    justify-content: center;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
  background-color: #f8f8f8;
  font-size: 14px; /* Smaller font size */
}

.why-choose h2 {
  text-align: center;
  color: #13356b;
  font-size: 24px;
  margin-bottom: 40px;
}

.why-choose h2 span {
  color: #33b240;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #33b240;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
  color: #13356b;
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-box p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .why-choose {
    padding: 40px 20px;
  }

  .why-choose h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feature-box h3 {
    font-size: 14px;
  }

  .feature-box p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .why-choose {
    padding: 30px 20px;
  }

  .why-choose h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-box h3 {
    font-size: 14px;
  }

  .feature-box p {
    font-size: 12px;
  }

  .logo-header{
  width: 220px!important;
}
}

/* Our Services Section */
.our-services {
  padding: 80px 20px;
  background-color: #fff;
}

.our-services .section-title {
  text-align: center;
  font-size: 24px;
  color: #13356b;
  margin-bottom: 60px;
}

.our-services .section-title span {
  color: #33b240;
}

.services-list {
  list-style-type: none;
  padding: 0;
}

.service-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  flex-shrink: 0;
  margin-right: 20px;
}

.service-icon img {
  width: 250px;
/*  height: 50px;*/
  object-fit: contain;
}

.service-content {
  flex-grow: 1;
}

.service-content h3 {
  font-size: 20px;
  color: #13356b;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect for images */
.service-item:hover .service-icon img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    padding: 15px;
  }

  .service-icon {
    margin-bottom: 15px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 13px;
  }

  .service-icon img {
    width: 150px;
  
  }
  .guide-image img {
    width: 60%!important;
    height: auto!important;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.cta-btn {

    font-size: 12px!important;

}
.resource-item {
    width: 100%!important;
  
}
}

@media (max-width: 480px) {
  .service-item {
    flex-direction: column;
    padding: 12px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 12px;
  }

}


/* DIY Guide Section */
.diy-guide {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.diy-guide .section-title {
  text-align: center;
  color: #13356b;
  font-size: 24px;
  margin-bottom: 40px;
}

.diy-guide .section-title span {
  color: #33b240;
}

.guide-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.guide-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: calc(50% - 15px);
  transition: all 0.3s ease;
}

.guide-item:hover {
  transform: translateY(-10px);
}

.guide-image img {
  width: 50%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.guide-content {
  padding: 20px;
}

.guide-content h3 {
  color: #13356b;
  font-size: 18px;
  margin-bottom: 15px;
}

.guide-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.guide-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #33b240;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.guide-btn:hover {
  background-color: #28a430;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .guide-item {
    width: 100%;
  }

  .diy-guide .section-title {
    font-size: 20px;
  }

  .guide-content h3 {
    font-size: 16px;
  }

  .guide-content p {
    font-size: 13px;
  }

  .guide-btn {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .diy-guide .section-title {
    font-size: 18px;
  }

  .guide-content h3 {
    font-size: 14px;
  }

  .guide-content p {
    font-size: 12px;
  }

  .guide-btn {
    font-size: 12px;
  }
}


/* Resources Section */
.resources {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.resources .section-title {
  text-align: center;
  color: #13356b;
  font-size: 24px;
  margin-bottom: 40px;
}

.resources .section-title span {
  color: #33b240;
}

.resource-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.resource-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: calc(50% - 15px);
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-10px);
}

.resource-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #33b240;
}

.resource-content {
  padding: 20px;
}

.resource-content h3 {
  color: #13356b;
  font-size: 18px;
  margin-bottom: 15px;
}

.resource-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #33b240;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.resource-btn:hover {
  background-color: #28a430;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .resource-item {
    width: 100%;
  }

  .resources .section-title {
    font-size: 20px;
  }

  .resource-content h3 {
    font-size: 16px;
  }

  .resource-content p {
    font-size: 13px;
  }

  .resource-btn {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .resources .section-title {
    font-size: 18px;
  }

  .resource-content h3 {
    font-size: 14px;
  }

  .resource-content p {
    font-size: 12px;
  }

  .resource-btn {
    font-size: 12px;
  }
}


/* Resources Section */
.resources {
  padding: 60px 20px;
  background-color: #fff;
}

.resources .section-title {
  text-align: center;
  font-size: 24px;
  color: #13356b;
}

.resources .section-title span {
  color: #33b240;
}

.resource-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.resource-item {
  background-color: #fff;
  width: 260px;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 20px;
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.resource-icon {
  margin-bottom: 20px;
}

.resource-icon img {
  width: 50px;
  height: 50px;
}

.resource-item h3 {
  font-size: 20px;
  color: #13356b;
  margin-bottom: 15px;
}

.resource-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.resource-btn {
  font-size: 14px;
  color: #fff;
  background-color: #33b240;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.resource-btn:hover {
  background-color: #278c2b;
}


/* CTA Section */
.cta {
  background: linear-gradient(135deg, #13356b, #33b240);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('cta-bg.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.cta h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta p {
  font-size: 17px;
  color: #f4f4f4;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn i {
  margin-right: 8px;
}

.call-btn {
  background-color: #33b240;
  color: #fff;
  border: 2px solid #33b240;
}

.contact-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover i {
  transform: translateX(5px);
}


.site-footer {
  background-color: #13356b;
  color: #fff;
  padding-top: 40px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: #33b240;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-logo p {
  margin: 0;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #33b240;
}

.footer-disclaimer {
  background-color: #0f2a53;
  padding: 15px 20px;
  text-align: center;
  color: #ccc;
  font-size: 12px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 20px;
  background-color: #0b203e;
  color: #fff;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.about-us {
  padding: 60px 20px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.about-us .section-title {
  text-align: center;
  font-size: 24px;
  color: #13356b;
  margin-bottom: 30px;
}

.about-us .section-title span {
  color: #33b240;
}

.about-us p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  text-align: center;
}


.diy-info {
  padding: 60px 20px;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

.diy-info .section-title {
  text-align: center;
  font-size: 24px;
  color: #13356b;
  margin-bottom: 30px;
}

.diy-info .section-title span {
  color: #33b240;
}

.diy-info p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  text-align: center;
}


.resources-info {
  padding: 60px 20px;
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 1.7;
}

.resources-info .section-title {
  text-align: center;
  font-size: 24px;
  color: #13356b;
  margin-bottom: 30px;
}

.resources-info .section-title span {
  color: #33b240;
}

.resources-info p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  text-align: center;
}
.privacy-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #13356b;
  margin-bottom: 30px;
}

.privacy-intro {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: #444;
  margin-bottom: 40px;
}

.privacy-block {
  margin-bottom: 35px;
}

.privacy-block h2 {
  font-size: 20px;
  color: #33b240;
  margin-bottom: 10px;
}

.privacy-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 26px;
  }

  .privacy-block h2 {
    font-size: 18px;
  }

  .privacy-intro, .privacy-block p {
    font-size: 14px;
  }
}



.terms-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #13356b;
  margin-bottom: 30px;
}

.terms-intro {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: #444;
  margin-bottom: 40px;
}

.terms-block {
  margin-bottom: 35px;
}

.terms-block h2 {
  font-size: 20px;
  color: #33b240;
  margin-bottom: 10px;
}

.terms-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .terms-title {
    font-size: 26px;
  }

  .terms-block h2 {
    font-size: 18px;
  }

  .terms-intro, .terms-block p {
    font-size: 14px;
  }
}
