/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #b30000;
  color: #fff;
  padding: 1rem 0;
  overflow-x: hidden;
}

/* Container inside Header */
header .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allows items to move to next line */
}


/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.logo img {
  width: 60px;       /* adjust as needed */
  height: 60px;
  border-radius: 50%; /* makes it round */
  object-fit: cover;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffcccc;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
              url('https://images.unsplash.com/photo-1503437313881-503a91226402') center/cover no-repeat;
  color: #fff;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  background: #b30000;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #800000;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
}

/* Page Content Sections */
.page-content {
  padding: 4rem 0;
  background: #f9f9f9;
  min-height: 70vh;
}

.page-content .container {
  width: 90%;
  margin: auto;
  max-width: 1000px;
}

.page-content h2 {
  color: #b30000;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.page-content h3 {
  margin-top: 1.5rem;
  color: #333;
}

/* Services */
.service {
  background: #fff;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 5px solid #b30000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  background: #b30000;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #800000;
}

#form-status {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
}

/* Popup Overlay */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Popup Box */
.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease;
}

/* Close Button */
#popup-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

#popup-title {
  margin-top: 10px;
  font-size: 22px;
  color: #222;
}

#popup-message {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------- Contact Section (New) ---------- */
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}


/* Optional container wrapper */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section h2 {
  color: #b30000;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 20px;
}

/* FORM (left) */
form#contact-form {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
}

/* Inputs */
form#contact-form input,
form#contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

/* Button */
form#contact-form button {
  background: #b30000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* CONTACT INFO (right) */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background-color: #b30000;   /* brand red background */
  color: #fff;                 /* white text */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.5;
}

.contact-info i {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background-color: #1da851;
  transform: scale(1.05);
}

/* Force all text and links inside the red card to be white */
.contact-info, 
.contact-info * {
  color: #fff !important;
}

/* ---------- Responsive (mobile/tablet) ---------- */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
  }

  form#contact-form,
  .contact-info {
    width: 100%;
    max-width: 100%;
  }

  .contact-info {
    margin-top: 30px;
  }
}

/*style to Icon*/
.contact-info i {
  color: #b30000;           /* your brand color */
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #444;
  line-height: 1.5;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1da851;
}

/* ---------- About Section ---------- */
.about-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* keep side by side on wide screens */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT SIDE: About Text */
.about-text {
  flex: 1 1 60%
  min-width: 50%;
}

.about-text h2 {
  color: #b30000;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text h3 {
  color: #b30000;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
}

.about-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* RIGHT SIDE: CEO BOX */
.ceo-box {
  flex: 0 0 35%;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CEO Image Styling */
.ceo-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.ceo-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%; /* makes it a perfect circle */
  object-fit: cover; /* ensures image fills the circle */
  border: 4px solid #b30000; /* brand border */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


.ceo-info {
  padding: 20px;
  text-align: left;
}

.ceo-info h3 {
  color: #b30000;
  margin-bottom: 10px;
  font-size: 22px;
}

.ceo-info p {
  color: #555;
  line-height: 1.5;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ceo-box {
    margin-top: 30px;
    width: 90%;
    max-width: 400px;
  }

  .about-text {
    width: 90%;
  }

  .ceo-info {
    text-align: center;
  }

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 768px) {
  /* Header adjustments */
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    background: #b30000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav.show {
    display: flex;
  }

  .logo {
    font-size: 1.2rem;
    gap: 6px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }
}
