/* Global Styles */
:root {
    --primary-color: #D4AF37;  /* Rich gold */
    --secondary-color: #B8860B;  /* Dark goldenrod */
    --accent-color: #FFD700;  /* Gold */
    --text-color: #333;
    --light-gray: #FFF8E7;  /* Light golden background */
    --dark-gray: #5D5D5D;
    --white: #FFFFFF;
    --gold-light: #FFE87C;
    --gold-dark: #B8860B;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-dark));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

section:not(.hero-slider) {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 36px;
    color: #fff;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #fff;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1e3a8a; /* Dark blue background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

header {
    padding: 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 10px 0;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 1400px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Adjust logo size on mobile */
@media (max-width: 768px) {
    header .container {
        padding: 5px 15px;
    }
    
    .logo-img {
        height: 80px;  /* Increased from 60px */
        max-width: 300px;  /* Increased from 250px */
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Dropdown Menu Styles */
.dropdown, 
.dropdown-submenu {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e3a8a;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    color: #fff;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: -1px;
    border-radius: 0 4px 4px 4px;
    display: none; /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Ensure submenu stays visible when hovering over it */
.dropdown-submenu > .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    border-color: transparent;
    border-left-color: #fff;
    border-style: solid;
    border-width: 5px 0 5px 5px;
}

.dropdown-submenu > .dropdown-menu > li > a {
    padding: 8px 20px;
}

/* Mobile adjustments for submenu */
@media (max-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin: 0;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown-submenu.active > .dropdown-menu {
        display: block;
    }
    
    .dropdown-submenu > a:after {
        transform: rotate(-90deg);
        right: 15px;
    }
    
    .dropdown-submenu.active > a:after {
        transform: rotate(0deg);
    }
}

/* Mobile Menu Adjustments */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 0;
        color: #fff;
    }
    
    .dropdown > a i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover:before,
nav ul li a.active:before {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slide h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.slide p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.slide .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background-color: #132894;
    color: #fff;
    margin-top: 0;
    padding-top: 0;
}

.about-section h2,
.about-section h3,
.about-section p {
    color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background-color: #132894; /* Blue background */
    padding: 80px 0;
    color: white;
}

/* Update text colors in services section for better contrast */
.services-section h2,
.services-section h3,
.services-section p {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 15px;
}

/* Coverage Section */
.coverage-section {
    background-color: #132894;
    color: #fff;
    
    padding: 80px 0;
    text-align: center;
}

.coverage-section .section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.coverage-section .section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px auto;
    max-width: 1200px;
}

.coverage-item {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.coverage-item:hover::before {
    transform: scaleX(1);
}

.coverage-item i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.coverage-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.coverage-item p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coverage-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.coverage-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.coverage-note p {
    margin: 0;
    color: var(--dark-gray);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 0;
    }
    
    .coverage-section .section-title h2 {
        font-size: 30px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }
    
    .coverage-item {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .coverage-section .section-title h2 {
        font-size: 26px;
    }
    
    .coverage-note {
        margin: 20px 15px 0;
    }
}

/* Contact Section */
.contact-section {
    background-color: #132894;
    color: #fff;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3, 
.contact-form h3,
.contact-info p,
.contact-info a,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button {
    color: #fff;
}

.contact-info, .contact-form {
    flex: 1;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info h3, .contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after, .contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 0;
    margin: 0;
    height: 400px;
    line-height: 0;
    font-size: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

/* Footer */
footer {
    background: #1e3a8a; /* Matching header blue */
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3, 
.footer-links h3, 
.footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-about h3:after, 
.footer-links h3:after, 
.footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ccc;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
    display: block;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 5px;
}

.footer-contact ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, 
    .about-image {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        height: 70px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .slide h2 {
        font-size: 36px;
    }
    
    .slide p {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .slide h2 {
        font-size: 28px;
    }
    
    .slide p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info, 
    .contact-form {
        padding: 25px;
    }
}
