* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.munazzam-info {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 14px;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

nav a:hover, nav a.active {
    color: #d4a745;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c5f2d;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('/pic1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d4a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #b8902f;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: #2c5f2d;
    font-size: 36px;
    margin-bottom: 20px;
    border-bottom: 3px solid #d4a745;
    padding-bottom: 10px;
    display: inline-block;
}

.content-section h3 {
    color: #2c5f2d;
    font-size: 24px;
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 48px;
    color: #d4a745;
    margin-bottom: 20px;
}

/* Packages Table */
.packages-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.packages-table thead {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7f3e 100%);
    color: white;
}

.packages-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.packages-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.packages-table tbody tr:hover {
    background: #f8f9fa;
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.certificate-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.certificate-icon {
    font-size: 64px;
    color: #d4a745;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c5f2d;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d4a745;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #d4a745;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #d4a745;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .company-name {
        font-size: 18px;
    }

    .header-content {
        position: relative;
    }

    .packages-table {
        font-size: 12px;
    }

    .packages-table th,
    .packages-table td {
        padding: 8px;
    }

    .packages-table-wrapper {
        border-radius: 5px;
    }
}

/* dropdown base */
nav ul li.dropdown {
    position: relative;
}

nav ul li .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* little arrow like the screenshot */
nav ul li.dropdown .dropdown-toggle::after {
    content: "▾";
    font-size: 0.6rem;
    color: #2c5f2d;
}

/* dropdown menu box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: none;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #2c5f2d;
}

/* show on hover (desktop) */
@media (min-width: 769px) {
    nav ul li.dropdown:hover > .dropdown-menu {
        display: block;
    }
}
@media (max-width: 768px) {
  /* dropdown should be full width in mobile */
  .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      background: #fff;
      display: none; /* default closed */
  }

  /* when JS opens it, we'll set display:block inline */
  nav ul li.dropdown .dropdown-toggle::after {
      /* a bit darker for mobile */
      color: #d4a745;
  }
}
/* top bar base (desktop) */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 14px 14px 0 0; /* rounded top like screenshot */
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* mobile fix */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;      /* stack */
        align-items: center;         /* center text */
        text-align: center;
    }

    .contact-info,
    .munazzam-info {
        font-size: 13px;
        line-height: 1.4;
    }

    /* if the email is long, let it wrap cleanly */
    .contact-info span:nth-child(2) {
        word-break: break-all;
    }
}
.cert{
    margin:30px 30px 30px 30px;
}
.map-section {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .map-section {
        padding: 30px 15px;
    }
    .map-container iframe {
        height: 300px;
    }
}
.cert {
    max-width: 900px;        /* optional, to keep it nice on desktop */
    margin: 40px auto;
    padding: 0 15px;         /* so it doesn’t touch screen edges on mobile */
}

.cert img {
    width: 100%;             /* take full width of parent */
    max-width: 100%;         /* don’t go wider than screen */
    height: auto;            /* keep aspect ratio */
    display: block;
    border: 1px solid #ddd;  /* optional */
    border-radius: 6px;      /* optional */
}
@media (max-width: 480px) {
  .cert img {
    max-height: 80vh;
    object-fit: contain;
  }
}

/* slide */


/* === Simple Hero Slider === */
.simple-hero { position: relative; }

.sh-slider {
  position: relative;
  width: 100%;
  height: 80vh;              /* adjust if you want */
  min-height: 380px;
  overflow: hidden;
  background: #000;          /* fallback color while images load */
}

.sh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.sh-slide.sh-active { opacity: 1; z-index: 2; }

.sh-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* makes the image behave like background-cover */
  filter: brightness(.65);   /* darken for readable text */
}

/* .sh-caption {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 0 16px;
} */
.sh-caption {
    position: relative;
    z-index: 3;
    margin: 100px 0px 0px 0px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 0 16px;
}

.sh-caption h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: .6rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.4);
}
.sh-caption p { font-size: clamp(1rem, 1vw + .8rem, 1.25rem); margin-bottom: 1rem; }

.sh-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #d4a745;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.sh-btn:hover { background: #b8902f; }

/* arrows */
.sh-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  color: #fff;
  border: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: grid; place-items: center;
  z-index: 4;
}
.sh-prev { left: 12px; }
.sh-next { right: 12px; }
.sh-arrow:hover { background: rgba(0,0,0,.6); }

.reg {
    font-size: 25px !important;
    line-height: 20px;
    font-weight: bolder;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .sh-slider { height: 60vh; min-height: 320px; }
  .sh-arrow { width: 36px; height: 36px; font-size: 18px; }
}

