/* General */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFA500;
}

/* Top Bar */
.top-bar {
    background: #FFA500;
    padding: 8px 0;
    font-size: 14px;
    color: #fff;
}
.top-left, .top-right {
    list-style: none;
    padding: 0;
    margin: 0;
}
.top-left li,
.top-right li {
    margin-right: 15px;
}
.top-left a,
.top-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.top-left a:hover,
.top-right a:hover {
    color: #FFD700;
}


/* Existing Navbar styles continue below */


/* Hero Section */
.hero-section {
    /* background: url('../images/3.jpg') center center/cover no-repeat; */
    height: 90vh;
    background-attachment: fixed;
}

/* Why Choose Us */
.why-us {
    background: #FFA500;
    padding: 60px 0;
}

.why-us i {
    color: #fff;
}

/* Cards */
.card-title {
    font-size: 18px;
    font-weight: 600;
}

.card img {
    height: 180px;
    object-fit: cover;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* HEADER */
.main-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 999;
    position: relative;
}
.top-bar {
    /* background: #3F84B1; */
    background: #FFA500;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.contact-info span {
    margin-right: 20px;
}
.user-links a {
    margin-left: 15px;
    color: #fff;
    font-weight: 600;
}
.user-links a:hover {
    color: #FFD700;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #3F84B1;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}
.logo span {
    color: #34ad00;
}
.main-nav {
    position: relative;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.nav-links li a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 16px 10px;
}
.nav-links li a:hover {
    /* color: #34ad00; */
    color: #FFA500; 
    text-decoration: underline;
}

/* Hamburger */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}
#menu-toggle {
    display: none;
}

/* Mobile */
/* @media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        
    }
    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
} */

.close-icon {
    display: none;
}
 @media screen and (max-width: 768px) {
    .nav-container {
        position: relative;
        overflow-x: hidden;
    }

    .menu-icon {
        display: block;
        font-size: 26px;
        cursor: pointer;
        z-index: 1101;
        padding: 15px;
        color: #000;
        background: #fff;
    }

    .nav-links {
        flex-direction: column;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        background: #fff;
        padding-top: 80px; /* logo + spacing */
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1100;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        transform: translateX(0);
    }

    .nav-links li {
        list-style: none;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }
    
    .close-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    z-index: 1102;
    padding: 5px 10px;
  }
}


/* FOOTER */
.main-footer {
    background: #f8f9fa;
    padding: 40px 0 20px;
    color: #333;
}
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #333;
    text-decoration: none;
}
.footer-links a:hover {
    color: #FFA500;
}
.footer-bottom {
    background: #FFA500;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

/* PAGE HEADER */
.page-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.page-header .breadcrumb a {
  color: #FFA500;
}
.page-header .breadcrumb .active {
  color: #666;
}

/* ABOUT SECTION */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: #3F84B1; */
  color: #12110e;
  margin-bottom: 1rem;
}
.section-padding {
  padding: 60px 0;
}

/* ENQUIRY FORM */
.card-header {
  font-size: 1.25rem;
  font-weight: 600;
}
.btn-success {
  background: #3F84B1;
  border: none;
}
.btn-success:hover {
  background: #2c8a00;
}

/* ALERTS */
.alert {
  border-radius: 0;
}

.page-header {
    background: #f7f9fb;
    border-bottom: 1px solid #ddd;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    /* color: #3F84B1; */
     color: #FFA500;
}

h2.text-primary {
    font-size: 2rem;
    font-weight: 700;
}
ul.list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.btn-success {
    background-color: #34ad00;
    border-color: #34ad00;
    font-weight: 600;
}
.btn-success:hover {
    background-color: #2d8f00;
    border-color: #2d8f00;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f0e0c;
}
h2.text-primary {
    font-size: 1.8rem;
    font-weight: bold;
}
label {
    font-weight: 600;
}
.btn-success {
    background-color: #34ad00;
    border-color: #34ad00;
}
.btn-success:hover {
    background-color: #2a9000;
}
