/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e3a8a;
    color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown > li {
    position: relative;
    display: inline-block;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li {
    padding: 10px;
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown ul {
        position: static;
        display: none;
    }
    .dropdown:hover ul {
        display: block;
    }
    .logo {
        height: 40px;
    }
}
/* styles.css (updated) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

.logo {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown > li {
    position: relative;
    display: inline-block;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li {
    padding: 10px;
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.signup-btn:hover {
    background-color: #e0e7ff;
}

.hero {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    text-align: justify;
    max-width: 800px;
    margin: 20px auto;
}

.cta-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #e0e7ff;
}

.services {
    padding: 20px;
    text-align: center;
}

.services h2 {
    color: #1e3a8a;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background-color: #f0f4ff;
    padding: 20px;
    border-radius: 5px;
}

.service-item h3 {
    color: #1e3a8a;
}

.service-item p {
    text-align: justify;
    color: #2d4a9f;
}

.about {
    padding: 20px;
    background-color: #f0f4ff;
    text-align: justify;
}

.about h2 {
    color: #1e3a8a;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown ul {
        position: static;
        display: none;
    }
    .dropdown:hover ul {
        display: block;
    }
    .logo {
        height: 80px;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* styles.css (updated) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e3a8a;
    color: #ffffff;
    flex-wrap: wrap;
}

.logo {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.dropdown > li {
    position: relative;
    margin-left: 20px;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li {
    padding: 10px;
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.signup-btn:hover {
    background-color: #e0e7ff;
}

.header-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #1e3a8a;
    padding: 20px;
    margin-top: 10px;
}

.text-cta {
    flex: 1;
    text-align: center;
    color: #ffffff;
}

.text-cta h1 {
    font-size: 2em;
}

.text-cta p {
    text-align: justify;
    max-width: 600px;
    margin: 10px auto;
}

.cta-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #e0e7ff;
}

.image-slider {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.slide {
    display: none;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        width: 100%;
    }
    .dropdown > li {
        margin: 0;
        width: 100%;
    }
    .dropdown ul {
        position: static;
        width: 100%;
    }
    .dropdown ul li {
        width: 100%;
    }
    .logo {
        height: 50px;
        max-width: 200px;
    }
    .header-section {
        flex-direction: column;
    }
    .image-slider {
        max-width: 100%;
    }
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

.logo {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #ffffff;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.dropdown > li {
    position: relative;
    margin-left: 20px;
}

.dropdown > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.signup-btn:hover {
    background-color: #e0e7ff;
}

.header-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #2d4a9f; /* Distinct color from header */
    padding: 50px 20px;
    margin-top: 80px; /* Adjust for fixed header height */
    color: #ffffff;
}

.text-cta {
    flex: 1;
    text-align: center;
}

.text-cta h1 {
    font-size: 2.5em;
    color: #ffffff;
}

.text-cta p {
    text-align: justify;
    max-width: 600px;
    margin: 10px auto;
    color: #e0e7ff;
}

.cta-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #e0e7ff;
}

.image-slider {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.slide {
    display: none;
    width: 600px;
    height: 500px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        width: 100%;
    }
    .dropdown > li {
        margin: 0;
        width: 100%;
    }
    .dropdown ul {
        position: static;
        width: 100%;
    }
    .dropdown ul li {
        width: 100%;
    }
    .logo {
        height: 50px;
        max-width: 200px;
    }
    .header-section {
        flex-direction: column;
    }
    .image-slider {
        max-width: 100%;
    }
    .slide {
        width: 100%;
        height: 300px; /* Adjusted for mobile */
    }
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

.logo {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #ffffff;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.dropdown > li {
    position: relative;
    margin-left: 20px;
}

.dropdown > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.signup-btn:hover {
    background-color: #e0e7ff;
}

.text-cta {
    flex: 1;
    text-align: center;
}

.text-cta h1 {
    font-size: 2.5em;
    color: #ffffff;
}

.text-cta p {
    text-align: justify;
    max-width: 600px;
    margin: 10px auto;
    color: #e0e7ff;
}

.cta-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #e0e7ff;
}

.image-slider {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.slide {
    display: none;
    width: 600px;
    height: 500px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        width: 100%;
    }
    .dropdown > li {
        margin: 0;
        width: 100%;
    }
    .dropdown ul {
        position: static;
        width: 100%;
    }
    .dropdown ul li {
        width: 100%;
    }
    .logo {
        height: 50px;
        max-width: 200px;
    }
    .header-section {
        flex-direction: column;
    }
    .image-slider {
        max-width: 100%;
    }
    .slide {
        width: 100%;
        height: 300px; /* Adjusted for mobile */
    }
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1e3a8a;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e3a8a;
    color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #ffffff;
}

.nav-menu {
    display: flex;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.dropdown > li {
    position: relative;
    margin-left: 20px;
}

.dropdown > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #1e3a8a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown ul li a {
    color: #ffffff;
    text-decoration: none;
}

.dropdown ul li:hover {
    background-color: #2d4a9f;
}

.dropdown:hover ul {
    display: block;
}

.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 20px; /* Add margin to prevent overlap */
}

.signup-btn:hover {
    background-color: #e0e7ff;
}

.header-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #ffffff; /* Changed to white */
    padding: 50px 20px;
    margin-top: 80px; /* Adjust for fixed header height */
}

.text-cta {
    flex: 1;
    text-align: center;
}

.text-cta h1 {
    font-size: 2.5em;
    color: #1e3a8a; /* Blue text */
}

.text-cta p {
    text-align: justify;
    max-width: 600px;
    margin: 10px auto;
    color: #1e3a8a; /* Blue text */
}

.location-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.location-form input {
    padding: 10px;
    width: 200px;
    border: 1px solid #1e3a8a;
    border-radius: 5px 0 0 5px;
}

.quote-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #2d4a9f;
}

.image-slider {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.slide {
    display: none;
    width: 600px;
    height: 500px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

footer {
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1e3a8a;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        width: 100%;
    }
    .dropdown > li {
        margin: 0;
        width: 100%;
    }
    .dropdown ul {
        position: static;
        width: 100%;
    }
    .dropdown ul li {
        width: 100%;
    }
    .logo {
        height: 50px;
        max-width: 200px;
    }
    .header-section {
        flex-direction: column;
    }
    .image-slider {
        max-width: 100%;
    }
    .slide {
        width: 100%;
        height: 300px;
    }
    .signup-btn {
        margin-left: 0; /* Reset margin on mobile */
    }
    .location-form {
        flex-direction: column;
        align-items: center;
    }
    .location-form input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    .quote-btn {
        width: 100%;
        border-radius: 5px;
    }
}

/* styles.css (add to existing file) */
.quote-section {
    max-width: 800px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-section h1 {
    color: #1e3a8a;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.intro {
    color: #2d4a9f;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    width: 150px;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}

.calculate-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.calculate-btn:hover {
    background-color: #2d4a9f;
}

.quote-result {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e7ff;
    border-radius: 5px;
    text-align: left;
}

.quote-result h2 {
    color: #1e3a8a;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.quote-result p {
    color: #2d4a9f;
    margin: 5px 0;
    font-size: 1.1em;
}

.proceed-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.proceed-btn:hover {
    background-color: #2d4a9f;
}

/* Ensure content clears fixed header */
main {
    margin-top: 80px;
}

/* styles.css (add to existing file) */
.signup-section {
    max-width: 600px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signup-section h2 {
    color: #1e3a8a;
    font-size: 2em;
    margin-bottom: 20px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    text-align: left;
    font-size: 1em;
}

.signup-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 200px;
    margin: 10px auto;
}

.signup-btn:hover {
    background-color: #2d4a9f;
}

/* Ensure content clears fixed header */
main {
    margin-top: 80px;
}

/* styles.css (add to existing file) */
.dashboard-section {
    max-width: 800px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard-section h2 {
    color: #1e3a8a;
    font-size: 2em;
    margin-bottom: 20px;
}

.dashboard-section ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-section li {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #1e3a8a;
    color: #2d4a9f;
}

/* styles.css (add to existing file) */
.dashboard-section {
    max-width: 900px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dashboard-section h2 {
    color: #1e3a8a;
    font-size: 2em;
    margin-bottom: 20px;
}

.dashboard-card {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #1e3a8a;
    border-radius: 5px;
}

.dashboard-card h3 {
    color: #1e3a8a;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    width: 250px;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    width: 300px;
    resize: vertical;
}

.dashboard-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.dashboard-btn:hover {
    background-color: #2d4a9f;
}

.dashboard-card ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-card li {
    background-color: #f0f4ff;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #1e3a8a;
    color: #2d4a9f;
}

/* Ensure content clears fixed header */
main {
    margin-top: 80px;
}

/* styles.css (add to existing file) */
.login-section {
    max-width: 400px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-section h2 {
    color: #1e3a8a;
    font-size: 2em;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form label {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 5px;
}

.login-form input {
    padding: 10px;
    width: 100%;
    max-width: 250px;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    font-size: 1em;
}

.login-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #2d4a9f;
}

/* styles.css (add to existing file) */
.admin-section {
    max-width: 900px;
    margin: 100px auto 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.admin-section h2 {
    color: #1e3a8a;
    font-size: 2em;
    margin-bottom: 20px;
}

.admin-card {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #1e3a8a;
    border-radius: 5px;
}

.admin-card ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.admin-card li {
    background-color: #f0f4ff;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #1e3a8a;
    color: #2d4a9f;
}

.response-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-left: 10px;
}

.response-btn:hover {
    background-color: #2d4a9f;
}

.response-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.response-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.response-form label {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 5px;
}

.response-form textarea {
    padding: 10px;
    width: 300px;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    font-size: 1em;
}

/* Add this to your styles.css */
.main-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #1e3a8a 20%, 
        #1e3a8a 80%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* For a more distinctive spiral effect (alternative option) */
.main-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: 
        radial-gradient(circle at center, #1e3a8a 0%, transparent 70%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            #1e3a8a 10px,
            #1e3a8a 20px
        );
    background-size: 100% 100%, 20px 20px;
    border-radius: 4px;
}

/* Modify these styles in your existing CSS */
.signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px; /* Reduced from 20px */
    margin-right: 10px; /* Added to create space between buttons */
    order: 1; /* Ensure this comes before login */
}

.login-btn {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #ffffff;
    margin-left: 0; /* Remove any existing margin */
    order: 2; /* Ensure this comes after signup */
}

/* Add this new rule to group the buttons */
.button-group {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes group to the right */
}

/* Remove the previous ::after pseudo-element */
.main-header::after {
    display: none;
}

/* Add separator to header-section instead */
.header-section {
    position: relative; /* Needed for absolute positioning of pseudo-element */
    padding-bottom: 20px; /* Add space for the separator */
}

.header-section {
    padding: 50px 20px 30px; /* Increased bottom padding to 30px */
    /* ... other existing styles ... */
}

@media (max-width: 768px) {
    .header-section::after {
        width: 90%;
        height: 6px;
        bottom: -3px;
    }
    
    .header-section {
        padding-bottom: 25px;
    }
}

/* Specific styles for FORM signup button only */
.signup-form .signup-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    margin: 20px auto 0; /* Centers the button with top margin */
    display: block; /* Necessary for auto margins to work */
    width: 200px; /* Fixed width looks better for forms */
    transition: background-color 0.3s;
}

.signup-form .signup-btn:hover {
    background-color: #2d4a9f;
}

/* Keep HEADER signup button styles distinct */
.main-header .signup-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 10px 20px;
    margin: 0 10px; /* Spacing between header buttons */
    display: inline-block; /* Different from form button */
    width: auto; /* Different from form button */
    /* ... other header-specific styles ... */
}

/* Logout button styles */
.logout-btn {
    background-color: #e67e22; /* Red color for logout */
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #e67e22; /* Darker red on hover */
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logout-btn {
        margin: 10px 0 0 0;
        align-self: flex-end;
    }
}

/* Admin-specific styles */
.admin-logout-btn {
    background-color: #e67e22; /* Bright red for admin logout */
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.admin-logout-btn:hover {
    background-color: white;
    color: #e67e22;
    border-color: #e67e22;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1e3a8a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-logout-btn {
        margin: 15px 0 0 0;
        align-self: flex-end;
    }
}

/* Admin-specific form styles */
.admin-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-form .form-group {
    margin-bottom: 20px;
}

.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1e3a8a;
}

.admin-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.admin-submit-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: background-color 0.3s;
}

.admin-submit-btn:hover {
    background-color: #2d4a9f;
}

.back-btn {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.back-btn:hover {
    text-decoration: underline;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Admin-specific form styles */
.admin-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-form .form-group {
    margin-bottom: 20px;
}

.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1e3a8a;
}

.admin-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.admin-submit-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: background-color 0.3s;
}

.admin-submit-btn:hover {
    background-color: #2d4a9f;
}

.back-btn {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.back-btn:hover {
    text-decoration: underline;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Color Scheme from Logo */
:root {
    --primary-blue: #1e3a8a;  /* Dark blue from logo */
    --secondary-blue: #2d4a9f; /* Lighter blue */
    --accent-color: #e67e22;   /* For important elements */
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 30px 5%;
    background-color: var(--light-bg);
    border-bottom: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

/* Featured Service */
.featured-service {
    display: flex;
    padding: 80px 5%;
    background-color: #fff;
}

.featured-content {
    flex: 1;
    padding-right: 40px;
}

.featured-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.service-benefits {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.service-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits i {
    color: var(--secondary-blue);
}

.featured-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--dark-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-item p {
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--secondary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-blue);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: var(--primary-blue);
}

.client-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Coverage Area */
.coverage {
    display: flex;
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.coverage-map {
    flex: 1;
    padding-right: 40px;
}

.coverage-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coverage-content {
    flex: 1;
}

.coverage-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.coverage-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.location-list {
    display: flex;
    gap: 40px;
}

.location-list h3 {
    color: var(--secondary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.location-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-list i {
    color: var(--primary-blue);
}

/* Call to Action */
.cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--light-text);
    color: var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--light-text);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--light-text);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--light-text);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero, .featured-service, .coverage {
        flex-direction: column;
    }
    
    .hero-content, .featured-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .location-list {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ORANGE ACCENT STYLES ===== */
.orange-text { color: #e67e22; }
.orange-icon { color: #e67e22; }
.orange-link { color: #e67e22; }
.orange-link:hover { color: #1a2e6b; }

.btn-orange {
    background: #e67e22;
    color: white;
    border: 2px solid #e67e22;
}
.btn-orange:hover {
    background: transparent;
    color: #e67e22;
}

/* Service Icons */
.service-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.service-item:hover .service-icon-img {
    transform: scale(1.1);
}

/* Interactive Highlights */
.highlight-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    background: #f9f9f9;
    border-left: 4px solid #e67e22;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

/* Achievements */
.achievements {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.achievement {
    font-size: 1.2rem;
    font-weight: bold;
}

.service-icon-img {
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-img {
    transform: rotate(-5deg) scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(243, 111, 33, 0.3));
}

/* styles.css */
.uk-coverage-map {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pulse-dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.coverage-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f4ff 100%);
  padding: 60px 20px;
  text-align: center;
}

.coverage-section h2 {
  color: #1a2e6b;
  margin-bottom: 30px;
  position: relative;
}

.coverage-section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e67e22;
  margin: 15px auto 0;
}

/* Header Structure */
.main-header {
    background-color: #1a2e6b;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Logo */
.logo-container {
    flex: 0 0 200px;
}
.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav-menu {
    flex-grow: 1;
    padding: 0 20px;
}
.dropdown {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.dropdown > li > a {
    color: white;
    font-weight: 500;
}

/* Auth Buttons */
.auth-buttons {
    flex: 0 0 180px;
    display: flex;
    gap: 10px;
}
.signup-btn, .login-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
}
.signup-btn {
    background: #f36f21;
    color: white;
}
.login-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Dropdown Fix */
.dropdown-parent {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #1a2e6b;
    min-width: 200px;
    z-index: 1;
}
.dropdown-parent:hover .dropdown-content {
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    .nav-menu {
        order: 3;
        flex: 0 0 100%;
        padding: 15px 0 0;
        display: none;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        gap: 0;
    }
    .dropdown > li {
        padding: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .auth-buttons {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .logo-container {
        flex: 0 0 calc(100% - 100px);
        text-align: center;
    }
    .auth-buttons {
        flex: 0 0 100px;
    }
}

/* Add to styles.css */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.badge-item:nth-child(1) { animation-delay: 0.2s; }
.badge-item:nth-child(2) { animation-delay: 0.4s; }
.badge-item:nth-child(3) { animation-delay: 0.6s; }

.badge-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(26, 46, 107, 0.1));
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon {
    transform: scale(1.1) rotate(-5deg);
}

.badge-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a2e6b;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section Styling */
.hero {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(135deg, #1a2e6b 0%, #2d4a9f 100%);
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-quote {
    background-color: #e67e22;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e67e22;
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}

.btn-quote:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.btn-phone:hover {
    background-color: rgba(255,255,255,0.25);
    border-color: white;
}

.btn-phone i {
    font-size: 1.2rem;
}

/* Quote Form Styling */
.quote-section {
    padding: 60px 5%;
    background-color: #f0f4ff;
    text-align: center;
}

.quote-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 46, 107, 0.1);
}

.quote-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.quote-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
}

.quote-input:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
}

.btn-quote-submit {
    background-color: #e67e22;
    color: white;
    padding: 0 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quote-submit:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.phone-cta {
    margin-top: 20px;
    font-size: 1.1rem;
}

.phone-link {
    color: #1a2e6b;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #e67e22;
    transition: all 0.3s;
}

.phone-link:hover {
    color: #e67e22;
}

/* Hero Section Form Fix */
#parallax-hero {
    position: relative;
    background: #f5f5f5; /* Light gray background */
    padding: 80px 0;
    overflow: hidden;
}

.quote-container {
    width: 100%;
    max-width: none; /* Remove max-width restriction */
    padding: 40px 5%; /* Responsive side padding */
    background: transparent; /* Remove white background */
    box-shadow: none;
}

.quote-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    gap: 10px;
}

.quote-input {
    flex: 1;
    padding: 16px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    background: white;
    color: #333; /* Dark text color */
    transition: all 0.3s;
}

.quote-input::placeholder {
    color: #999; /* Lighter placeholder */
}

.quote-input:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
}

.btn-quote-submit {
    background: #e67e22;
    color: white;
    padding: 0 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-quote-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.phone-cta {
    text-align: center;
    margin-top: 20px;
    color: #555; /* Dark gray text */
}

.phone-link {
    color: #e67e22;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid;
    transition: all 0.3s;
}

.phone-link:hover {
    color: #e67e22;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #e67e22;
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Footer Styles */
.site-footer {
    background: #1a2e6b; /* Matching header color */
    color: white;
    padding: 40px 0 20px;
    font-size: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    color: #e67e22; /* Orange accent */
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e67e22;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e67e22;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.dev-link {
    color: #e67e22;
    font-weight: 600;
    text-decoration: none;
}

.dev-link:hover {
    text-decoration: underline;
}

.orange-icon {
    color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

/* Contact Page Styles */
.contact-page {
    background-color: #f9f9f9;
}

.contact-header {
    background: linear-gradient(135deg, #1a2e6b 0%, #2d4a9f 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.contact-breadcrumbs {
    font-size: 0.9rem;
    margin-top: 20px;
}

.contact-breadcrumbs a {
    color: #e67e22;
    text-decoration: none;
}

.contact-breadcrumbs span {
    color: #e0e7ff;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: #1a2e6b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4ff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a2e6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e7ff;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    background: #e67e22;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.info-card h2 {
    color: #1a2e6b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4ff;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    margin-top: 5px;
}

.info-item h3 {
    color: #1a2e6b;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-item p {
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    height: 250px;
}

.contact-faq {
    background: #f0f4ff;
    padding: 60px 0;
    border-top: 1px solid #e0e7ff;
    border-bottom: 1px solid #e0e7ff;
}

.contact-faq h2 {
    text-align: center;
    color: #1a2e6b;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #1a2e6b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #28a745;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 30px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
}

/* styles.css */
:root {
    --primary-blue: #1a2e6b;  /* Dark blue from logo */
    --secondary-blue: #2d4a9f; /* Lighter blue */
    --accent-color: #e67e22;   /* Orange for important elements */
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--primary-blue);
}

/* Global rule for centering section headings */
main section h1,
main section h2,
main section h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Header Structure */
.main-header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Logo */
.logo-container {
    flex: 0 0 200px;
}
.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav-menu {
    flex-grow: 1;
    padding: 0 20px;
}
.dropdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown > li {
    position: relative;
    margin-left: 20px;
}
.dropdown > li > a {
    color: var(--light-text);
    font-weight: 500;
    text-decoration: none;
}
.dropdown ul {
    display: none;
    position: absolute;
    background-color: var(--primary-blue);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.dropdown ul li {
    padding: 10px;
}
.dropdown ul li a {
    color: var(--light-text);
    text-decoration: none;
}
.dropdown ul li:hover {
    background-color: var(--secondary-blue);
}
.dropdown:hover ul {
    display: block;
}

/* Auth Buttons */
.auth-buttons {
    flex: 0 0 180px;
    display: flex;
    gap: 10px;
}
.signup-btn, .login-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}
.signup-btn {
    background: var(--accent-color);
    color: var(--light-text);
}
.login-btn {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}
.signup-btn:hover {
    background-color: #e67e22;
}
.login-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.15);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}
.btn-phone:hover {
    background-color: rgba(255,255,255,0.25);
    border-color: var(--light-text);
}
.btn-phone i {
    font-size: 1.2rem;
}
.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.trust-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--light-text);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 60px 5%;
    background-color: var(--light-bg);
}
.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-text);
}
.achievements {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.achievement {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 30px 5%;
    background-color: var(--light-bg);
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}
.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

/* Featured Service */
.featured-service {
    padding: 80px 5%;
    background-color: #fff;
}
.featured-service h2.section-title {
    margin-bottom: 40px;
}
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.tab-btn {
    padding: 10px 20px;
    border: none;
    background: var(--light-bg);
    color: var(--primary-blue);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.tab-btn.active {
    background: var(--primary-blue);
    color: var(--light-text);
}
.tab-content {
    display: none;
    flex-direction: row;
    gap: 20px;
}
.tab-content.active {
    display: flex;
}
.tab-image {
    flex: 1;
    position: relative;
}
.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.image-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: 5px;
}
.tab-details {
    flex: 1;
}
.tab-details h3 {
    font-size: 1.5rem;
}
.tab-details ul {
    list-style: none;
    padding: 0;
}
.tab-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-orange {
    background: var(--accent-color);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.btn-orange:hover {
    background: #e67e22;
}

/* Services Section */
.services {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.section-header {
    margin-bottom: 50px;
}
.section-header p {
    color: var(--dark-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.service-icon-img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s, filter 0.3s;
}
.service-item:hover .service-icon-img {
    transform: rotate(-5deg) scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(243, 111, 33, 0.3));
}
.service-item p {
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
}
.service-link {
    color: var(--secondary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.service-link:hover {
    text-decoration: underline;
}

/* Service Highlights */
.service-highlights {
    padding: 60px 5%;
    background-color: #fff;
}
.highlight-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.highlight-card {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s;
    text-align: center;
    min-width: 200px;
}
.highlight-card:hover {
    transform: translateY(-5px);
}
.highlight-card h3 {
    font-size: 1.4rem;
}
.highlight-card p {
    color: var(--dark-text);
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background-color: #fff;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.rating {
    color: #e67e22;
    margin-bottom: 20px;
}
.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}
.testimonial-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-blue);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-info h4 {
    margin: 0;
    color: var(--primary-blue);
}
.client-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Coverage Area */
.coverage {
    display: flex;
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.coverage-map {
    flex: 1;
    padding-right: 40px;
}
.coverage-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.coverage-content {
    flex: 1;
}
.coverage-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--dark-text);
}
.location-list {
    display: flex;
    gap: 40px;
}
.location-list h3 {
    color: var(--secondary-blue);
    font-size: 1.2rem;
}
.location-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-list i {
    color: var(--primary-blue);
}

/* Parallax Hero (Quote Section) */
#parallax-hero {
    position: relative;
    background: #f5f5f5;
    padding: 80px 0;
    overflow: hidden;
}
.quote-container {
    width: 100%;
    padding: 40px 5%;
    background: transparent;
    box-shadow: none;
}
.quote-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    gap: 10px;
}
.quote-input {
    flex: 1;
    padding: 16px 25px;
    border: 2px solid #e0e7ff;
    border-radius: 50px;
    font-size: 16px;
    background: white;
    color: var(--dark-text);
}
.quote-input::placeholder {
    color: #999;
}
.quote-input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
}
.btn-quote-submit {
    background: var(--accent-color);
    color: var(--light-text);
    padding: 0 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-quote-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}
.phone-cta {
    text-align: center;
    margin-top: 20px;
    color: #555;
}
.phone-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
}
.phone-link:hover {
    color: #e67e22;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 24px;
}
.bounce {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    background: linear-gradient(to right, var(--light-bg), #ffffff, var(--light-bg));
    flex-wrap: wrap;
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
.badge-item:nth-child(1) { animation-delay: 0.2s; }
.badge-item:nth-child(2) { animation-delay: 0.4s; }
.badge-item:nth-child(3) { animation-delay: 0.6s; }
.badge-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(26, 46, 107, 0.1));
    transition: transform 0.3s ease;
}
.badge-item:hover .badge-icon {
    transform: scale(1.1) rotate(-5deg);
}
.badge-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
    background: var(--primary-blue);
    color: var(--light-text);
    padding: 40px 0 20px;
    font-size: 15px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
}
.footer-heading {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links a {
    color: var(--light-text);
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: var(--light-text);
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.dev-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}
.dev-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    .nav-menu {
        order: 3;
        flex: 0 0 100%;
        padding: 15px 0 0;
        display: none;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        gap: 0;
    }
    .dropdown > li {
        padding: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-left: 0;
    }
    .dropdown ul {
        position: static;
        width: 100%;
    }
    .auth-buttons {
        margin-left: auto;
    }
    .hero, .featured-service, .coverage {
        flex-direction: column;
    }
    .hero-content, .featured-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .location-list {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .logo-container {
        flex: 0 0 calc(100% - 100px);
        text-align: center;
    }
    .auth-buttons {
        flex: 0 0 100px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn-quote, .btn-phone {
        width: 100%;
        text-align: center;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .quote-form {
        flex-direction: column;
    }
    .quote-input, .btn-quote-submit {
        width: 100%;
        border-radius: 6px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-section {
        min-width: 100%;
    }
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Orange Accent Styles */
.orange-text { color: var(--accent-color); }
.orange-icon { color: var(--accent-color); }
.orange-link { color: var(--accent-color); }
.orange-link:hover { color: var(--primary-blue); }

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.about-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.about-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Our Story Section */
.our-story {
    padding: 60px 5%;
    background-color: var(--light-bg);
}
.our-story .section-header p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Our Services Section */
.our-services {
    padding: 80px 5%;
    background-color: #fff;
}
.our-services .section-header p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-text);
}
.service-image {
    margin-bottom: 20px;
}
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Our Team Section */
.our-team {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-member {
    text-align: center;
}
.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.team-member p {
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 80px 5%;
    background-color: #fff;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.value-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.value-item i {
    font-size: 2rem;
    margin-bottom: 15px;
}
.value-item h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
}
.value-item p {
    color: var(--dark-text);
    font-size: 0.9rem;
}

/* Call-to-Action Section */
.about-cta {
    padding: 60px 5%;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    color: var(--light-text);
    text-align: center;
}
.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.about-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Responsive Design Updates for About Us Page */
@media (max-width: 992px) {
    .about-hero, .our-services, .our-team, .our-values {
        flex-direction: column;
    }
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    .service-image img {
        height: 150px;
    }
    .about-cta .btn-quote {
        width: 100%;
        text-align: center;
    }
}

/* Call-to-Action Section */
.about-cta {
    padding: 60px 5%;
    background: #6f797e; /* Sky blue background */
    color: var(--light-text); /* White for high contrast */
    text-align: center;
}
.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text); /* Darker text for readability */
}
.about-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.about-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Services Hero Section */
.services-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.services-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.services-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.services-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Service Details Section */
.service-details {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.detail-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.detail-item h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
}
.detail-item p {
    color: var(--dark-text);
    margin-bottom: 20px;
}
.detail-item ul {
    list-style: none;
    padding: 0;
}
.detail-item li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark-text);
}

/* Case Study Section */
.case-study {
    padding: 80px 5%;
    background-color: #fff;
}
.case-study-content {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.case-study-text {
    flex: 1;
}
.case-study-text h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
}
.case-study-text p {
    color: var(--dark-text);
    margin-bottom: 20px;
}
.case-study-image {
    flex: 1;
}
.case-study-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery Section */
.service-gallery {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Services CTA Section */
.services-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching about-cta */
    color: var(--light-text);
    text-align: center;
}
.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}
.services-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.services-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .case-study-content {
        flex-direction: column;
    }
    .case-study-text, .case-study-image {
        flex: 0 0 100%;
    }
}
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    .details-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 150px;
    }
    .services-cta .btn-quote {
        width: 100%;
        text-align: center;
    }
}

/* Service Hero Section (Individual Service Pages) */
.service-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.service-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.service-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.service-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.service-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Service CTA Section (Individual Service Pages) */
.service-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching services-cta and about-cta */
    color: var(--light-text);
    text-align: center;
}
.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text); /* Darker text for readability */
}
.service-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.service-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Responsive Design Updates for Service Hero and CTA */
@media (max-width: 992px) {
    .service-hero, .service-cta {
        padding: 80px 5% 40px;
    }
    .service-hero h1 {
        font-size: 2.2rem;
    }
    .service-cta h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    .service-hero .hero-subtitle {
        font-size: 1rem;
    }
    .service-cta .btn-quote {
        width: 100%;
        text-align: center;
    }
}

/* Testimonials Hero Section */
.testimonials-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.testimonials-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.testimonials-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.testimonials-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.testimonials-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Testimonials Grid Section */
.testimonials {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.testimonial-card .rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}
.testimonial-card .rating i {
    font-size: 1.2rem;
}
.testimonial-card p {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}
.testimonial-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
}
.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 15px;
    object-fit: cover;
}

/* Testimonials CTA Section */
.testimonials-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching other CTAs */
    color: var(--light-text);
    text-align: center;
}
.testimonials-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.testimonials-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}
.testimonials-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.testimonials-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.blog-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.blog-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.blog-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.blog-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.blog-post h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.blog-post p {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}
.blog-link {
    font-weight: 600;
    text-decoration: none;
}

/* Blog CTA Section */
.blog-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching other CTAs */
    color: var(--light-text);
    text-align: center;
}
.blog-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}
.blog-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.blog-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.faq-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.faq-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.faq-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.faq-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq {
    padding: 80px 5%;
    background-color: var(--light-bg);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-item input[type="checkbox"] {
    display: none;
}
.faq-item label {
    display: block;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    position: relative;
}
.faq-item label::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    transition: transform 0.3s;
}
.faq-item input[type="checkbox"]:checked + label::after {
    transform: rotate(180deg);
}
.faq-content {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    font-size: 1rem;
    color: var(--dark-text);
}
.faq-item input[type="checkbox"]:checked + label + .faq-content {
    display: block;
}

/* FAQ CTA Section */
.faq-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching other CTAs */
    color: var(--light-text);
    text-align: center;
}
.faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}
.faq-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.faq-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .testimonials-hero, .blog-hero, .faq-hero {
        padding: 80px 5% 40px;
    }
    .testimonials-hero h1, .blog-hero h1, .faq-hero h1 {
        font-size: 2.2rem;
    }
    .testimonials-cta h2, .blog-cta h2, .faq-cta h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-thumbnail {
        height: 150px;
    }
    .testimonials-hero h1, .blog-hero h1, .faq-hero h1 {
        font-size: 2rem;
    }
    .testimonials-hero .hero-subtitle, .blog-hero .hero-subtitle, .faq-hero .hero-subtitle {
        font-size: 1rem;
    }
    .testimonials-cta .btn-quote, .blog-cta .btn-quote, .faq-cta .btn-quote {
        width: 100%;
        text-align: center;
    }
}

/* Quote Hero Section */
.quote-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--light-text);
    margin-top: 80px; /* Account for fixed header */
}
.quote-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.quote-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.quote-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.quote-hero .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.quote-hero .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Quote Section */
.quote-section {
    padding: 80px 5%;
    background-color: var(--light-bg);
    text-align: center;
}
.quote-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group label {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}
.form-group input,
.form-group select {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(243, 111, 33, 0.3);
}
.quote-form .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    text-align: center;
}
.quote-form .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}
.quote-result {
    margin-top: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.quote-result h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.quote-result p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.quote-result .btn-orange {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    display: inline-block;
    margin-top: 20px;
}
.quote-result .btn-orange:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Quote CTA Section */
.quote-cta {
    padding: 60px 5%;
    background: #87CEEB; /* Sky blue, matching other CTAs */
    color: var(--light-text);
    text-align: center;
}
.quote-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.quote-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}
.quote-cta .btn-quote {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(243, 111, 33, 0.3);
}
.quote-cta .btn-quote:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .quote-hero, .quote-section, .quote-cta {
        padding: 80px 5% 40px;
    }
    .quote-hero h1 {
        font-size: 2.2rem;
    }
    .quote-cta h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .quote-hero h1 {
        font-size: 2rem;
    }
    .quote-hero .hero-subtitle {
        font-size: 1rem;
    }
    .quote-form .btn-quote, .quote-result .btn-orange, .quote-cta .btn-quote {
        width: 100%;
        text-align: center;
    }
}

/* Floating Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.chat-toggle {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.chat-toggle:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
.chat-options {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 10px;
    width: 200px;
}
.chat-options.active {
    display: block;
}
.chat-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}
.chat-option:hover {
    background-color: #f9f9f9;
}
.chat-option.whatsapp {
    color: #25D366;
}
.chat-option.telegram {
    color: #0088cc;
}
.chat-option.tawkto {
    color: var(--accent-color);
}

/* Newsletter Signup Form */
.newsletter {
    padding: 40px 5%;
    background: var(--primary-blue);
    color: var(--light-text);
    text-align: center;
}
.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 70%;
    font-size: 1rem;
}
.newsletter-form .btn-quote {
    padding: 10px 20px;
}
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input, .newsletter-form .btn-quote {
        width: 100%;
    }
    .chat-options {
        width: 180px;
    }
    .chat-toggle {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Featured Services Section */
.featured-services {
    padding: 80px 5%;
    background: var(--light-bg);
    text-align: center;
}
.services-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.carousel-container {
    overflow: hidden;
}
.carousel-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.carousel-slide.active {
    display: grid;
}
.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-details {
    text-align: left;
}
.service-details h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.service-details p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 20px;
}
.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.service-details ul li {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-details .btn-quote, .service-details .btn-orange {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 10px;
}
.service-details .btn-quote {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.service-details .btn-quote:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
}
.service-details .btn-orange {
    background-color: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}
.service-details .btn-orange:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}
.carousel-prev:hover, .carousel-next:hover {
    background: var(--accent-color);
}
.carousel-dots {
    text-align: center;
    margin-top: 20px;
}
.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.carousel-dots .dot.active {
    background: var(--accent-color);
}
@media (max-width: 992px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-details {
        text-align: center;
    }
    .service-details ul li {
        justify-content: center;
    }
    .service-image img {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .featured-services {
        padding: 60px 5%;
    }
    .service-details h3 {
        font-size: 1.6rem;
    }
    .service-details .btn-quote, .service-details .btn-orange {
        width: 100%;
        margin: 10px 0;
    }
    .carousel-prev, .carousel-next {
        padding: 8px;
        font-size: 1rem;
    }
}

/* Main Header */
.main-header {
    background: var(--primary-blue);
    color: var(--light-text);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%;
}
.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}
.logo-container {
    flex: 0 0 auto;
}
.logo {
    height: 50px;
    width: auto;
}
.nav-menu {
    flex: 1;
    text-align: center;
}
.dropdown {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.dropdown li {
    position: relative;
}
.dropdown a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px;
}
.dropdown a:hover {
    color: var(--accent-color);
}
.dropdown-parent {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
}
.dropdown-parent:hover .dropdown-content {
    display: block;
}
.dropdown-content li {
    padding: 10px 20px;
}
.dropdown-content a {
    color: var(--primary-blue);
    font-size: 0.9rem;
}
.dropdown-content a:hover {
    color: var(--accent-color);
}
.logo-auth-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.auth-icons {
    display: flex;
    gap: 15px;
}
.auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.auth-link .orange-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}
.auth-link:hover .orange-icon, .auth-link:hover .auth-text {
    color: #fff;
}
.auth-text {
    display: inline;
}

/* Header Section */
.header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    margin-top: 80px; /* Account for fixed header */
}
.text-cta {
    padding: 20px;
}
.text-cta h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.text-cta p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
}
.location-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}
.location-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    flex: 1;
}
.location-form .btn-quote {
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
}
.location-form .btn-quote:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}
.image-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.slider-container {
    overflow: hidden;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}
.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.slider-prev:hover, .slider-next:hover {
    background: var(--accent-color);
}
.slider-dots {
    text-align: center;
    margin-top: 20px;
}
.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.slider-dots .dot.active {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-cta {
        order: 2;
    }
    .image-slider {
        order: 1;
        margin-bottom: 30px;
    }
    .location-form {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        padding: 20px;
    }
    .dropdown {
        flex-direction: column;
        gap: 10px;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
    }
    .dropdown-content a {
        color: var(--light-text);
    }
    .header-container {
        flex-wrap: wrap;
    }
    .logo-auth-container {
        flex: 1;
        justify-content: flex-end;
    }
    .auth-icons {
        gap: 10px;
    }
    .auth-text {
        display: none; /* Hide text on mobile, show icons only */
    }
    .text-cta h1 {
        font-size: 2.2rem;
    }
    .location-form {
        flex-direction: column;
    }
    .location-form input, .location-form .btn-quote {
        width: 100%;
    }
    .slide img {
        height: 300px;
    }
}

/* Main Header */
.main-header {
    background: var(--primary-blue);
    color: var(--light-text);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%;
}
.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}
.logo-container {
    flex: 0 0 auto;
}
.logo {
    height: 50px;
    width: auto;
}
.nav-menu {
    flex: 1;
    text-align: center;
}
.dropdown {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.dropdown li {
    position: relative;
}
.dropdown a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px;
}
.dropdown a:hover {
    color: var(--accent-color);
}
.dropdown-parent {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
}
.dropdown-parent:hover .dropdown-content {
    display: block;
}
.dropdown-content li {
    padding: 10px 20px;
}
.dropdown-content a {
    color: var(--primary-blue);
    font-size: 0.9rem;
}
.dropdown-content a:hover {
    color: var(--accent-color);
}
.logo-auth-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.auth-icons {
    display: flex;
    gap: 10px;
}
.auth-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.auth-link .orange-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}
.auth-link:hover .orange-icon, .auth-link:hover .auth-text {
    color: #fff;
}
.auth-text {
    display: inline;
}

/* Header Section */
.header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 80px;
    background: #fff; /* Revert to white background */
    margin-top: 80px; /* Account for fixed header */
}
.text-cta {
    padding: 20px;
}
.text-cta h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.text-cta p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
}
.location-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}
.location-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    flex: 1;
}
.location-form .btn-quote {
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
}
.location-form .btn-quote:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}
.image-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.slider-container {
    overflow: hidden;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}
.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.slider-prev:hover, .slider-next:hover {
    background: var(--accent-color);
}
.slider-dots {
    text-align: center;
    margin-top: 20px;
}
.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.slider-dots .dot.active {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-cta {
        order: 2;
    }
    .image-slider {
        order: 1;
        margin-bottom: 30px;
    }
    .location-form {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        padding: 20px;
    }
    .nav-menu.active {
        display: block;
    }
    .dropdown {
        flex-direction: column;
        gap: 10px;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
    }
    .dropdown-content a {
        color: var(--light-text);
    }
    .header-container {
        flex-direction: row;
        align-items: stretch;
        height: auto;
        padding: 10px;
    }
    .logo-container {
        width: 100%;
        margin: 10px 0;
        order: 0;
    }
    .auth-container {
        justify-content: right;
        margin: 10px 0;
        order: 1;
    }
    .auth-text {
        display: none;
    }
    .text-cta h1 {
        font-size: 2.2rem;
    }
    .location-form {
        flex-direction: column;
    }
    .location-form input,
    .location-form .btn-quote {
        width: 100%;
    }
    .slide img {
        height: 300px;
    }
    .dashboard-header,
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .logout-btn {
        margin: 10px 0 0 0;
        align-self: flex-end;
    }
    .admin-logout-btn {
        margin: 15px 0 0 0;
        align-self: flex-end;
    }
    .service-hero h1,
    .testimonials-hero h1,
    .blog-hero h1,
    .faq-hero h1,
    .quote-hero h1 {
        font-size: 2rem;
    }
    .service-hero .hero-subtitle,
    .testimonials-hero .hero-subtitle,
    .blog-hero .hero-subtitle,
    .faq-hero .hero-subtitle,
    .quote-hero .hero-subtitle {
        font-size: 1rem;
    }
    .service-cta .btn-quote,
    .testimonials-cta .btn-quote,
    .blog-cta .btn-quote,
    .faq-cta .btn-quote,
    .quote-cta .btn-quote,
    .quote-form .btn-quote,
    .quote-result .btn-orange {
        width: 100%;
        text-align: center;
    }
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-thumbnail {
        height: 150px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input,
    .newsletter-form .btn-quote {
        width: 100%;
    }
    .chat-options {
        width: 180px;
    }
    .chat-toggle {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    .service-image img {
        height: 300px;
    }
    .service-details h3 {
        font-size: 1.6rem;
    }
    .service-details .btn-quote,
    .service-details .btn-orange {
        width: 100%;
        margin: 10px 0;
    }
    .carousel-prev,
    .carousel-next {
        padding: 8px;
        font-size: 1rem;
    }
}

/* Ensure content clears fixed header */
main {
    margin-top: 80px;
}

/* Reset default Bootstrap styles to match existing design */
.navbar {
    background-color: var(--primary-blue);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    flex-grow: 0;
    padding: 0;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
}

.dropdown-item {
    color: var(--primary-blue);
    font-size: 0.9rem;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
    color: var(--accent-color);
}

.auth-icons {
    gap: 10px;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.auth-link .orange-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.auth-link:hover .orange-icon,
.auth-link:hover .auth-text {
    color: #fff;
}

.auth-text {
    display: inline;
}

/* Ensure header-section and other content clears fixed header */
.header-section,
main {
    margin-top: 80px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-toggler {
        order: -1;
    }

    .auth-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-collapse {
        background: var(--primary-blue);
        padding: 20px;
        margin-top: 10px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 10px 0 !important;
    }

    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        width: 100%;
    }

    .dropdown-item {
        color: var(--light-text);
    }

    .dropdown-item:hover {
        background: var(--secondary-blue);
    }

    .auth-text {
        display: none;
    }
}

/* Existing styles below (unchanged) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--primary-blue);
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #2d4a9f;
    --accent-color: #e63946;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
}

/* Header Section */
.header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 80px;
    background: #fff;
}

.text-cta {
    padding: 20px;
}

.text-cta h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.text-cta p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.orange-text {
    color: var(--accent-color);
}

.location-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.location-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    flex: 1;
}

.location-form .btn-quote {
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
}

.location-form .btn-quote:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.image-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--light-text);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--accent-color);
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: var(--accent-color);
}

/* Responsive Design for Header Section */
@media (max-width: 992px) {
    .header-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-cta {
        order: 2;
    }
    .image-slider {
        order: 1;
        margin-bottom: 30px;
    }
    .location-form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .text-cta h1 {
        font-size: 2.2rem;
    }
    .location-form {
        flex-direction: column;
    }
    .location-form input,
    .location-form .btn-quote {
        width: 100%;
    }
    .slide img {
        height: 300px;
    }
}

/* Footer and other existing styles remain unchanged */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    text-align: justify;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}
/* Equipment Rental Section */
.equipment-rental-section {
    padding: 60px 5%;
    background: var(--light-bg);
}

.equipment-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.equipment-container h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.equipment-offer h3,
.equipment-prices h3,
.equipment-how-it-works h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.offer-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-list li span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    margin: 10px 0;
}

.equipment-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    object-position: center;
}

.delivery-note {
    font-size: 1rem;
    color: var(--dark-text);
    font-style: italic;
    margin-top: 20px;
}

.price-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 0.95rem;
}

.price-table th {
    background: var(--primary-blue);
    color: var(--light-text);
}

.price-table td {
    background: #fff;
}

.equipment-how-it-works ol {
    list-style-position: inside;
    padding: 0;
    font-size: 1rem;
    color: var(--dark-text);
}

.equipment-how-it-works li {
    margin-bottom: 10px;
}

.location-note {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 20px;
}

/* Responsive Design for Equipment Rental Section */
@media (max-width: 768px) {
    .equipment-rental-section {
        padding: 40px 5%;
    }

    .equipment-container h2 {
        font-size: 2rem;
    }

    .equipment-offer h3,
    .equipment-prices h3,
    .equipment-how-it-works h3 {
        font-size: 1.5rem;
    }

    .offer-list {
        grid-template-columns: 1fr;
    }

    .equipment-img {
        width: 150px;
        height: 100px;
    }

    .price-table th,
    .price-table td {
        font-size: 0.85rem;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .equipment-img {
        width: 120px;
        height: 80px;
    }
}

/* Booking Form Section */
.booking-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.quote-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(30, 58, 138, 0.3);
}

.btn-quote {
    padding: 12px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: darken(var(--accent-color), 10%);
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
    .booking-form {
        padding: 20px;
        margin: 20px auto;
    }

    .booking-form h3 {
        font-size: 1.5rem;
    }

    .quote-form input {
        padding: 10px;
        font-size: 0.95rem;
    }

    .btn-quote {
        padding: 10px;
    }
}