/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: white;
    padding: 15px 20px;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

  
/* Mobile Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none;
}

/* Navigation Menu */
.menu {
    list-style: none;
    display: flex;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
}

.menu a:hover {
    background: #444;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: black;
    min-width: 180px;
    list-style: none;
    padding: 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column;
        background: black;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
        z-index: 1000;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h2, .hero h4, .hero p, .hero .btn {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.4rem;
}

.hero h4 {
  font-size: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.btn {
    background: yellow;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
} */


.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #cc5500;
}

/* About Section */
.about {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content {
    padding: 40px 20px;
    background: #fff;
}

.about-content .container {
    max-width: 900px;
    margin: auto;
    color: #333;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.about-content h3 {
    margin-top: 30px;
    color: #111;
    font-size: 1.3rem;
}

.about-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.about-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-content .highlight {
    margin-top: 30px;
    font-weight: bold;
    color: #ff9800;
    font-size: 1.1rem;
}

.intro, .features, .cta {
    padding: 60px 20px;
    text-align: center;
  }
  
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .feature-item {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .feature-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  .cta {
    background-color: #f4f4f4;
  }
  
  .cta .btn {
    background-color: #000;
    color: #fff;
  }


  .about-company {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
    padding-bottom: 0;
  }
  
  .about-company .container {
    max-width: 900px;
    margin: auto;
  }
  
  .about-company h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
  }
  
  .about-company h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .about-company p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .reasons-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  
  .reasons-list li {
    margin-bottom: 20px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
  }
  
  .reasons-list li::before {
    content: "✔";
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .about-company .highlight {
    font-weight: bold;
    color: #ff6600;
    margin-top: 30px;
    font-size: 1.1rem;
    text-align: center;
  }
  
  .note-section {
    background-color: #fffdf5;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    border-top: 2px solid #f0c040;
  }
  
  .note-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .note-heading {
    background-color: #fff3cd;
    border-left: 5px solid #f0c040;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #856404;
    border-radius: 5px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .feature-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .feature-box:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
  }
  
  .feature-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  .note-title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .note-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .simple-footer {
    background-color: #f8f5f0;
    text-align: center;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #ddd;
  }
  
  .simple-footer a {
    color: #1ca745;
    text-decoration: none;
    margin: 0 4px;
  }
  
  .simple-footer a:hover {
    text-decoration: underline;
  }
  
  .simple-footer p {
    margin: 6px 0;
    line-height: 1.5;
  }
  
