
    body {margin:0;font-family:"Ubuntu",sans-serif;}

    /* Header */
    .header-top {background:#ee3e3e;color:#fff;font-size:14px;padding:8px 0;}
    .header-top .container {display:flex;justify-content:space-between;align-items:center;}
    .header-top a {color:#fff;text-decoration:none;margin-right:15px;}
    .header-top a:hover {color:#ffd600;}

  .main-navigation {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 20px;
}

/* Navbar horizontal */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;   /* horizontal */
  align-items: center;
  gap: 20px;
}

.navbar-nav li {
  position: relative; /* dropdown absolute ke liye */
}

.navbar-nav a {
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 15px;
  display: active;
}

.navbar-nav a:hover {
  color: #2e7d32;
}

/* Dropdown (floating box only) */
.dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 0;
  min-width: 50px;
  max-height: 30px;
  overflow-y: auto;

  display: none; /* hidden by default */
  position: absolute;  /* ✅ floating */
  top: 100%;
  left: 0;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #333;
  padding: 8px 20px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #2e7d325b;
  color: #fff;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 5px;
}

    /* Hero Section */
    .hero-section {position:relative;width:100%;height:100vh;overflow:hidden;}
    .hero-single {position:relative;height:100vh;background-size:cover;background-position:center;display:flex;align-items:center;}
    .hero-single::after {content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);}
    .hero-content {position:relative;z-index:2;color:white;max-width:600px;padding:0 20px;}
    .hero-title {font-size:48px;font-weight:700;margin-bottom:20px;}
    .hero-title span {color:#ffd600;}
    .hero-content p {font-size:16px;margin-bottom:30px;}
    .theme-btn {display:inline-block;padding:12px 25px;border-radius:30px;background:#ee3e3e;color:#fff;text-decoration:none;margin-right:10px;}
    .theme-btn:hover {background:#ee3e3e;}
    .theme-btn2 {background:transparent;border:2px solid #fff;}
    .theme-btn2:hover {background:#fff;color:#ee3e3e;}

    @media(max-width:768px){
      .hero-title{font-size:32px;}
    }
  
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background Image Slides */
.hero-single {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay for readability */
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-sub-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ee3e3e;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: #ee3e3e; /* Green highlight */
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Hero Buttons */
.hero-btn .theme-btn,
.hero-btn .theme-btn2 {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-right: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary Green Button */
.hero-btn .theme-btn {
  background: linear-gradient(135deg, #ee3e3e, #ee3e3e);
  color: #fff;
  box-shadow: 0 4px 10px #ee3e3e(46, 125, 50, 0.3);
}

.hero-btn .theme-btn:hover {
  background: linear-gradient(135deg, #ee3e3e, #ee3e3e);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.4);
}

/* Secondary Outline Button */
.hero-btn .theme-btn2 {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.hero-btn .theme-btn2:hover {
  background: #fff;
  color: #ee3e3e;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}

/* Shapes (optional decorative elements) */
.hero-shape div {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.15);
  z-index: 0;
}

.hero-shape-1 { width: 120px; height: 120px; top: 10%; left: 5%; }
.hero-shape-2 { width: 80px; height: 80px; bottom: 20%; right: 10%; }
.hero-shape-3 { width: 50px; height: 50px; top: 40%; left: 15%; }
.hero-shape-4 { width: 100px; height: 100px; bottom: 30%; left: 5%; }
.hero-shape-5 { width: 60px; height: 60px; top: 25%; right: 20%; }
.hero-shape-6 { width: 70px; height: 70px; bottom: 10%; left: 50%; }

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-btn .theme-btn,
  .hero-btn .theme-btn2 {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* appointment area */
.appointment-form .form-control, 
.appointment-form .form-select {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: #ee3e3e;
  box-shadow: 0 0 5px rgba(46,125,50,0.4);
}

.appointment-form button {
  border-radius: 25px;
  font-weight: bold;
}
/* About Us */
.about-area {
  font-family: 'Ubuntu', sans-serif;
}

.about-img img {
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-experience-icon {
  font-size: 28px;
}

.about-text h2 {
  color: #222;
  font-weight: 700;
}

/* feature area */
.feature-area {
  background: #ee3e3e; /* green bg */
  position: relative;
  z-index: 1;
}

.feature-wrapper {
  margin-top: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 40px 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.feature-item .count {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 32px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.363);
}

.feature-icon {
  font-size: 50px;
  color: #080808;
  margin-bottom: 20px;
}

.feature-title {
  color: #333232;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p {
  color: #030303;
  font-size: 14px;
  line-height: 1.6;
}
/*services */
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      color: #333;
    }
    .service-area {
      padding: 60px 20px;
    }
    .site-heading {
      text-align: center;
      margin-bottom: 40px;
    }
    .site-heading h2 {
      font-size: 28px;
      margin: 10px 0;
    }
    .service-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }
    .service-item {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }
    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }
.service-img img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}
    .service-content {
      padding: 20px;
      flex-grow: 1;
    }
    .service-title {
      font-size: 18px;
      margin: 10px 0;
      color: #0077cc;
    }
    .service-text {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
    }
    .service-arrow {
      margin-top: 15px;
    }
    .service-arrow a {
      text-decoration: none;
      font-size: 14px;
      color: #0077cc;
      font-weight: bold;
    }
    .service-arrow a:hover {
      text-decoration: underline;
    }
    /* Counter Area */
.counter-area {
  background: linear-gradient(135deg, #a8b6f1 0%, #dec5f7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
}

.counter-box {
  background: #d5faf1;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.counter-box .icon {
  font-size: 40px;
  color: #ee3e3e; /* Green theme color */
  margin-bottom: 15px;
}

.counter-box .counter {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  display: block;
}

.counter-box h6.title {
  font-size: 16px;
  margin-top: 8px;
  font-weight: 500;
  color: #555;
}
.counter-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.counter-box {
    flex: 1 1 200px; /* Minimum width 200px, expand if space available */
    margin: 10px;
}
.counter-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ee3e3e; /* Customize color */
}
.counter-box h6 {
    margin-top: 5px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box {
    margin-bottom: 20px;
  }
}
/* FAQ Area */
.faq-area {
  background: #f9f9f9;
  padding: 120px 20px;
}

.faq-right .site-heading span {
  font-size: 14px;
  font-weight: bold;
  color: #ee3e3e;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-right .site-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.faq-right p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.faq-img img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.accordion-item {
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 18px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background 0.3s, color 0.3s;
}

.accordion-button span i {
  color: #ee3e3e;
  font-size: 18px;
}

.accordion-button:not(.collapsed) {
  background: #ee3e3e;
  color: #fff;
}

.accordion-button:not(.collapsed) span i {
  color: #fff;
}

.accordion-body {
  padding: 15px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  background: #fafafa;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-area {
    padding: 60px 20px;
  }
  .faq-right {
    margin-bottom: 30px;
  }
}
/* Call Area */
.call-area {
  background: linear-gradient(135deg, #9678cf, #639ad8);
  padding: 60px 20px;
  color: #fff;
  border-radius: 12px;
  margin: 40px 0;
}

.call-content span {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ee3e3e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.call-content h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

.call-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #f1f1f1;
  line-height: 1.6;
}

/* Emergency Call Box */
.emergency-call {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.emergency-call:hover {
  transform: translateY(-5px);
}

.emergency-call-icon {
  font-size: 32px;
  color: #ee3e3e;
  margin-right: 15px;
}

.emergency-call-info h5 {
  font-size: 14px;
  margin: 0;
  color: #ee3e3e;
}

.emergency-call-info h3 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: bold;
}

.emergency-call-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.emergency-call-info a:hover {
  color: #ee3e3e;
}

/* Responsive */
@media (max-width: 768px) {
  .call-content h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .emergency-call {
    flex-direction: column;
    text-align: center;
  }
  .emergency-call-icon {
    margin-bottom: 10px;
  }
}
/* Process Area */
.process-area {
  background: #f9f9f9;
  padding: 80px 20px;
}

.site-heading {
  margin-bottom: 50px;
}

.site-heading .site-title-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #ee3e3e;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.site-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.site-heading h2 span {
  color: #ee3e3e;
}

/* Process Single Box */
.process-single {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.process-single:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.process-single .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #0077cc;
  color: #fff;
  font-size: 28px;
}

.process-single .icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ee3e3e;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-single h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}

.process-single p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .site-heading h2 {
    font-size: 24px;
  }
  .process-single {
    padding: 20px 15px;
  }
  .process-single h4 {
    font-size: 16px;
  }
}
/* Testimonial Area */
.testimonial-area {
  background: linear-gradient(135deg, #77afd8, #f26bf7);
  padding: 100px 20px;
  position: relative;
}

.testimonial-area .site-title-tagline {
  color: #ee3e3e;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.testimonial-area .site-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonial-area .site-title span {
  color: #ee3e3e;
}

/* Testimonial Single Box */
.testimonial-single {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 15px;
}

.testimonial-single:hover {
  transform: translateY(-8px);
}

.testimonial-rate {
  color: #ee3e3e;
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-quote p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077cc;
}

.testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.testimonial-author-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Quote Icon */
.testimonial-quote-icon {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 26px;
  color: #0077cc;
  opacity: 0.2;
}

/* Owl Carousel Fix */
.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.testimonial-slider .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 6px;
  background: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.3s;
}
.testimonial-slider .owl-dot.active span {
  background: #ee3e3e;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-single {
    padding: 25px 20px;
  }
  .testimonial-quote p {
    font-size: 14px;
  }
}
/* Client Logo Section */
.client-logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.client-logo-track img {
  height: 70px;
  margin: 0 30px;
  transition: transform 0.3s ease;
  filter: none;
}

.client-logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer Area */
.footer-area {
  background: linear-gradient(135deg,#e0212b , #ce2c39);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 9px;
  line-height: 1.7;
}

.footer-widget-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer-widget-box {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-widget-box p {
  color: #ffffff;
  font-size: 16px;
}

.footer-contact{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-contact li {
  list-style: none;
  margin-bottom: 12px;
}

.footer-contact li a {
  color: #fffafa;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-contact li a i {
  margin-right: 10px;
  color: #f4c150;
}

/* Footer Links */
.footer-list {
  list-style: none;
  padding: 0;
}
.footer-list{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}


.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  color: #fff9f9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-list li a i {
  margin-right: 8px;
  color: #f4c150;
}

.footer-list li a:hover {
  color: #fff;
  padding-left: 8px;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.subscribe-form .theme-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #f4c150;
  border: none;
  border-radius: 5px;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form .theme-btn i {
  margin-left: 6px;
}

.subscribe-form .theme-btn:hover {
  background: #fff;
  color: #111;
}

/* Copyright */
.copyright {
  background: #9e2525;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
}

.copyright-text a {
  color: #f4c150;
  text-decoration: none;
  font-size: 15px;
  margin: 0;
}

.copyright-text a:hover {
  text-decoration: underline;
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.footer-social li a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  background: #222;
  color: #f4c150;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social li a:hover {
  background: #f4c150;
  color: #111;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-widget-wrapper {
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
/* contact  */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Ubuntu', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #e3f2fd, #ffffff);
      color: #333;
    }

    .contact-section {
      padding: 80px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .contact-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-title h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: rgba(214, 8, 8, 0.897);
    }

    .contact-title p {
      color: #555;
      font-size: 17px;
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    /* Contact Info Box */
    .contact-info {
      background: #cc2525;
      color: #fff;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .contact-info h3 {
      margin-bottom: 25px;
      font-size: 24px;
      color: #ffd700;
    }

    .info-item {
      margin-bottom: 20px;
      font-size: 16px;
    }

    .info-item strong {
      display: block;
      margin-bottom: 5px;
      color: #ffd700;
    }

    /* Contact Form */
    .contact-form {
      background: #fff;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-bottom: 25px;
      font-size: 24px;
      color: #cc2525;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid #ccc;
      border-radius: 10px;
      outline: none;
      font-size: 15px;
      transition: border 0.3s ease;
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      border: 1px solid #cc2525;
      box-shadow: 0 0 8px rgba(30,58,138,0.2);
    }

    .form-group textarea {
      resize: none;
      height: 130px;
    }

    .btn-submit {
      display: inline-block;
      background: linear-gradient(135deg, #cc2525, #e47373);
      color: #fff;
      padding: 14px 28px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
    }
    /* all service 1-16 */

  /* Services */

 body {
   font-family: Arial, sans-serif;
   background-color: #f9f9f9;
   color: #333;
 }

 .service-detail {
   padding: 60px 0;
 }

 .service-img img {
   width: 100%;
   max-width: 600px;
   height: auto;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
   display: block;
   margin: 0 auto;    /* center align */
 }

 .service-content h2 {
   font-size: 32px;
   font-weight: bold;
   margin-bottom: 20px;
 }

 .service-content p {
   font-size: 17px;
   line-height: 1.7;
   margin-bottom: 15px;
   color: #555;
 }

 .highlight-box {
   background: #fff;
   padding: 20px;
   border-left: 5px solid #007bff;
   border-radius: 8px;
   margin-top: 20px;
   box-shadow: 0 3px 8px rgba(0,0,0,0.1);
 }

 /* Specific highlight box colors */
 .service4 .highlight-box { border-left-color: #ee3e3e; }
 .service5 .highlight-box { border-left-color: #ffc107; }
 .service6 .highlight-box { border-left-color: #0d6efd; }
 .service7 .highlight-box { border-left-color: #ee3e3e; }
 .service8 .highlight-box { border-left-color: #6f42c1; }
 .service9 .highlight-box { border-left-color: #fd7e14; }
 .service10 .highlight-box { border-left-color: #dc3545; }
 .service11 .highlight-box { border-left-color: #0dcaf0; }
 .service12 .highlight-box { border-left-color: #0d6efd; }
 .service13 .highlight-box { border-left-color: #ee3e3e; }
 .service14 .highlight-box { border-left-color: #fd7e14; }
 .service15 .highlight-box { border-left-color: #6f42c1; }
 .service16 .highlight-box { border-left-color: #6f42c1; }
    /* About us page */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Ubuntu', sans-serif; line-height: 1.6; background: #f4f6f8; color: #333; }

    /* Banner */
    .banner {
      width: 100%;
      height: 300px;
      background: url('https://via.placeholder.com/1600x400.png?text=Atarashi+Denka+Bijon+Power') center/cover no-repeat;
      display: flex; justify-content: center; align-items: center; color: #fff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }
    .banner h1 { font-size: 48px; font-weight: 700; }

    /* About Section */
    .about-section { display: flex; flex-wrap: wrap; max-width: 1200px; margin: -100px auto 50px; background: #fff; border-radius: 12px; box-shadow: 0 6px 25px rgba(0,0,0,0.1); overflow: hidden; }
    .about-image { flex: 1; min-width: 300px; background: url('images/about.jpg') center/cover no-repeat; min-height: 400px; }
    .about-content { flex: 1; padding: 40px; }
    .about-content span { font-size: 14px; color: #ee3e3e; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
    .about-content h2 { margin: 15px 0; font-size: 28px; color: #222; }
    .about-content p { margin: 15px 0; font-size: 16px; }
    .about-content h4 { margin-top: 20px; color: #2e7d32; }
    .services-list { list-style: none; margin-top: 10px; }
    .services-list li { margin-bottom: 10px; font-size: 16px; }
    .services-list li i { color: #2e7d32; margin-right: 8px; }

    /* Mission & Vision */
    .mission-vision { max-width: 1200px; margin: 50px auto; background:#fff; padding:40px; border-radius:12px; box-shadow:0 6px 25px rgba(0,0,0,0.1); }
    .mission-vision h2 { color: #2e7d32; margin-bottom: 15px; }
    .mission-vision p { margin-bottom: 20px; font-size: 16px; }

    /* Our Strengths */
    .strengths { max-width: 1200px; margin:50px auto; display:flex; flex-wrap:wrap; gap:20px; }
    .strength-box { flex:1; min-width:250px; background:#2e7d32; color:#fff; padding:30px; border-radius:12px; text-align:center; }
    .strength-box.orange { background:#ffa500; }
    .strength-box.red { background:#ee3e3e; }
    .strength-box i { font-size:30px; margin-bottom:15px; }

    /* Our Team */
    .team { max-width:1200px; margin:50px auto; text-align:center; }
    .team h2 { color:#2e7d32; margin-bottom:30px; }
    .team-members { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
    .member { flex:1; min-width:200px; background:#fff; padding:20px; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.1); }
    .member img { width:100%; border-radius:50%; margin-bottom:15px; }

    /* Achievements */
    .achievements { max-width:1200px; margin:50px auto; background:#fff; padding:40px; border-radius:12px; box-shadow:0 6px 25px rgba(0,0,0,0.1); text-align:center; }
    .achievements h2 { color:#2e7d32; margin-bottom:15px; }
    .achievements p { font-size:16px; }

    /* Footer */
    footer { text-align:center; padding:20px 0; background:#222; color:#fff; margin-top:50px; }

    /* Responsive */
    @media(max-width: 768px) {
      .about-section { flex-direction: column; margin:-50px 20px 50px; }
      .about-image { min-height: 250px; }
      .strengths { flex-direction: column; }
    }
  /* products */
  
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      text-align: center;
    }
    header {
      background: #ee3e3e;
      color: #fff;
      padding: 20px;
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
    }
    .product {
      margin: 40px 0;
    }
    .product img {
      width: 100%; /* Full width */
      height: auto; /* Maintain aspect ratio */
      display: block;
      margin-bottom: 15px;
    }
    .product p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  text-align: left;   /* left align karne ke liye */
  max-width: 800px;   /* optional: text ko readable banane ke liye width limit */
  margin-left: auto;  /* center box alignment */
  margin-right: auto;
}

    .btn-link {
  display: block;  /* block banane ke liye */
  width: fit-content; /* sirf content jitna width lega */
  margin: 0 auto; /* center align karega */
  padding: 12px 25px;
  background: #ee3e3e;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

    .btn-link:hover {
      background: #c62828;
      
    }
  
  
  
  
  
  
  
  
  
  
  
                         
    

  
  



