* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333; /* make it visible on white header */
}
/* Top Header */
.top-header {
  background: #111;
  color: #fff;
  font-size: 14px;
}
.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
}
.top-header .contact-info span {
  margin-right: 15px;
}
.top-header .contact-info i {
  margin-right: 5px;
}
.top-header .social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: color 0.3s;
}
.top-header .social-icons a:hover {
  color: #f39c12;
}

/* Navigation */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.logo span {
  color: #f39c12;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  position: relative;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s;
}
nav ul li a:hover {
  background: #f39c12;
  color: #fff;
}

/* Dropdown */
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border: 1px solid #ddd;
}
nav ul li:hover ul.dropdown {
  display: block;
}
nav ul li ul.dropdown li {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
flex-direction: column;
        background: #fff;
        position: absolute;
        top: 125px;
        right: 0;
        width: 100%;
        display: none;
        border-left: 1px solid #ddd;
        z-index: 1;
    }
  }

  nav ul.active {
    display: flex; /* show when toggled */
  }

  nav ul li {
    border-bottom: 1px solid #ddd;
  }
    .menu-toggle {
    display: block;
  }

  /* Hide nav on mobile by default */
  nav ul {
    display: none;
  }



/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  /*min-height: 90vh;*/
  background: url('../images/logo/banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 50px 0px;
}

.hero-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  display: flex;
  gap: 30px;
  max-width: 1100px; /* keeps it from being full width */
  width: 100%;
  margin: 0 auto;
}

/* Left Column: Form */
.hero-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 6px;
  flex: 1;
  min-width: 300px;
}

.hero-form h2 {
  margin-bottom: 15px;
  color: #333;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.hero-form button {
  background: #f39c12;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background: #d98208;
}

/* Right Column: Info */
.hero-info {
  color: #fff;
  flex: 1;
  min-width: 300px;
}

.hero-info h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.call-btn {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #1f8f4d;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-info h1 {
    font-size: 26px;
  }
}


/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
}

.why-choose .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.why-choose .subheading {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-box i {
  font-size: 32px;
  color: #f39c12;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}


/* Our Products Section */
.products {
  padding: 60px 20px;
  background: #f8f9fa;
}

.products .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.products .subheading {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  /*height: 200px;*/
  object-fit: cover;
}

.product-card h3 {
  font-size: 18px;
  color: #333;
  margin: 15px 0;
}

.product-btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.product-btn:hover {
  background: #d98208;
}


/* About Us Section */
.about-us {
  padding: 60px 20px;
  background: #ffffff;
}

.about-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.about-btn:hover {
  background: #d98208;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }
  
.product-grid {
    display: grid;
    grid-template-columns: auto!important;
    gap: 25px;
}
}

/* Testimonials Slider Section */
.testimonials-slider {
  padding: 60px 20px;
  /*background: #f9f9f9;*/
  text-align: center;
}

.testimonials-slider .container {
  max-width: 700px;
  margin: auto;
}

.testimonials-slider h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.testimonials-slider .subheading {
  color: #555;
  margin-bottom: 40px;
}

.slider {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s ease, transform 1s ease;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

/* Controls */
.slider-controls {
  margin-top: 15px;
}

.slider-controls button {
  background: #003366;
  border: none;
  color: #fff;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.slider-controls button:hover {
  background: #0056b3;
}

.features-section {
  position: relative;
  background: url('../images/logo/cta.webp') no-repeat center center/cover;
  padding: 60px 20px;
}

.features-section .overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px 20px;
  border-radius: 12px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 30px 20px;
  margin: 15px;
  text-align: center;
  flex: 1 1 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.features-section .overlay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-box h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
}

.btn-wrapper {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.call-btn {
  background: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: #cc5200;
}
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #003366;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  font-size: 15px;
}

.faq-answer.open {
  padding: 15px 20px;
}
/* Disclaimer */
.disclaimer-section {
  background: #f8f8f8;
  padding: 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.disclaimer-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #003366;
  color: #fff;
  padding-top: 40px;
  font-family: Arial, sans-serif;
  padding-bottom: 45px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col ul li a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.footer-col i {
  color: #ffcc00;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  margin-top: 20px;
  background: #002244;
  font-size: 13px;
}

.call-now-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color:#003366;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 5px dotted;
}

.call-now-btn i {
  font-size: 20px;
}

.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h2 {
  color: #003366;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.contact-info i {
  color: #003366;
  margin-right: 10px;
}

.contact-form {
  flex: 1 1 350px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  background: #003366;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}



