/* Common Font System */
:root {
    --primary-color: #ff3333;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #F5F5DC;
    /* --font-primary: 'Inter', serif; */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 32px;
    --font-size-5xl: 36px;
    --font-size-6xl: 48px;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* Global Typography */
body {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-dark);
    font-weight: var(--font-weight-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-6xl);
}

h2 {
    font-size: var(--font-size-5xl);
}

h3 {
    font-size: var(--font-size-4xl);
}

h4 {
    font-size: var(--font-size-3xl);
}

h5 {
    font-size: var(--font-size-2xl);
}

h6 {
    font-size: var(--font-size-xl);
}

p {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e60000;
}

/* Section Titles */
.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Page Headers */
.page-header h1 {
    font-family: var(--font-primary);
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-light);
}

/* Navigation */
.nav-link {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Elements */
.form-control {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
}

.form-control::placeholder {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
}

/* Footer */
.footer-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}

.footer-contact {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
}

/* Responsive Typography */
@media (max-width: 767px) {
    h1 {
        font-size: var(--font-size-5xl);
    }
    
    h2 {
        font-size: var(--font-size-4xl);
    }
    
    h3 {
        font-size: var(--font-size-3xl);
    }
    
    h4 {
        font-size: var(--font-size-2xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-5xl);
    }
    
    .page-header p {
        font-size: var(--font-size-base);
    }
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #ff3333;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --section-padding: 30px;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

.container {
    padding-left: 24px;
    padding-right: 24px;
}


/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    padding: 0.5rem 0 !important;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s ease;
    border-bottom: none;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-text {
    font-size: 14px;
    display: inline-block;
}

.dropdown-icon-side {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    float: none;
    width: auto;
    min-width: 200px;
    margin-top: 0;
    margin-left: 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    color: #333;
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}
.dropdown-item.active{
    background-color:transparent !important;
    color: var(--primary-color);
}
.header-social-icons {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.header-social-icons a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social-icons a:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.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%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header Social Icons */
.header-social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-social-icons a:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-radius: 4px;
    min-width: 200px;
    margin-top: 0;
    background: white;
    /* position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); */
    z-index: 1000;
}

.dropdown-item {
    font-size: 12px;
    padding: 0.6rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
}

/* Dropdown icon behavior - consolidated */
.dropdown-toggle::after {
    display: none !important;
}

.nav-item.dropdown .dropdown-icon-side {
    font-size: 10px;
    color: var(--text-light);
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon-side,
.nav-item.dropdown.show .dropdown-icon-side {
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Ensure dropdown appears above other content */
.nav-item.dropdown {
    position: relative;
}

/* Hero Section */
.hero-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    padding: 50px auto;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-section h1 br {
    content: "";
    margin: 4px 0;
    display: block;
}

.building-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.building-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
}

/* Section Styles */
.section-title {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    /* content: "//"; */
    color: var(--primary-color);
    margin-right: 4px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Times New Roman', serif;
}

.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    max-width: 640px;
    padding-right: 40px;
}

.about-title {
    font-size: 56px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Times New Roman', serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
    max-width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.section-title::before {
    /* content: "//"; */
    margin-right: 8px;
    color: var(--primary-color);
}

.continue-reading {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.continue-reading:hover {
    color: var(--primary-color);
}

.continue-reading::after {
    /* content: " >"; */
    margin-left: 4px;
}

.about-stats {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-text {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Removed duplicate continue-reading styles */

/* Services Accordion Styles */
.services-accordion {
    margin-top: 20px;
}

.service-category {
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.service-category.active {
    background: #f8f9fa;
}

.service-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
}

.service-header:hover {
    background: #e9ecef;
}

.service-header i {
    font-size: 12px;
    color: #17a2b8;
    transition: transform 0.3s ease;
    min-width: 12px;
}

.service-header .fa-check {
    color: #28a745;
}

.service-category.active .service-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.service-header span {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

.service-header .highlight {
    color: var(--primary-color);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border-top: 1px solid #e9ecef;
}

.service-category.active .service-content {
    max-height: 300px;
}

.service-content ul {
    list-style: none;
    padding: 15px 20px 15px 44px;
    margin: 0;
}

.service-content li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    line-height: 1.4;
}

.service-content li:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #666;
}

/* Removed unused services-box styles */

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-header {
        padding: 12px 15px;
    }
    
    .service-content ul {
        padding: 12px 15px 12px 35px;
    }
    
    .service-header span {
        font-size: 14px;
    }
    
    .service-content li {
        font-size: 13px;
    }
}

h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Footer Styles */
.footer-section {
    background: #f8f9fa;
    padding: 50px 0 25px;
    border-top: 1px solid #e9ecef;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-contact {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Contact Information */
.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.contact-section .contact-item{
    display: block;
}
.contact-item i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 2px;
    min-width: 14px;
}

.contact-item div {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.contact-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c82333;
}

.phone-numbers {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-numbers:hover {
    color: #c82333;
}

.phone-numbers-container {
    display: flex;
    flex-direction: column;
}

.phone-line {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.phone-line:first-child {
    margin-bottom: 4px;
}

.phone-comma {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
}

/* Social Media Links */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.social-link:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

/* Map Section */
#map {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 10px;
}

#map iframe {
    width: 100%;
    height: 160px;
    border: none;
    display: block;
}

.map-overlay {
    text-align: center;
    margin-top: 8px;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #c82333;
}

.map-link i {
    margin-right: 4px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

.copyright {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .contact-item {
        margin-bottom: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .copyright {
        text-align: center !important;
    }
    
    /* Phone numbers responsive */
    .phone-numbers-container {
        margin-left: 0;
    }
    
    .phone-line {
        margin-bottom: 3px;
    }
    
    .phone-numbers {
        font-size: 13px;
    }
    
    /* Map responsive */
    #map iframe {
        height: 140px;
    }
    
    /* Social links responsive */
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
        background: #f8f9fa;
        border: none;
        box-shadow: none;
        border-radius: 4px;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .navbar-brand img {
        height: 40px;
        width: auto;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        background: white;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-left: auto;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .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%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
        padding: 1rem 0;
        z-index: 1000;
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-text {
        font-size: 14px;
    }
    
    .dropdown-icon-side {
        font-size: 10px;
        margin-left: 8px;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 4px;
        padding: 0.5rem 0;
        display: none;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    .dropdown.show .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 13px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .header-social-icons {
        display: none;
    }
    
    /* Active states for mobile */
    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600;
    }
    
    .dropdown.show .nav-link {
        color: var(--primary-color) !important;
    }
    
    .dropdown.show .dropdown-icon-side {
        transform: rotate(180deg);
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .building-img {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }
    
    /* About section mobile */
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    /* Services mobile */
    .service-header {
        padding: 10px 12px;
    }
    
    .service-header span {
        font-size: 13px;
    }
    
    .service-content ul {
        padding: 10px 12px 10px 30px;
    }
    
    .service-content li {
        font-size: 12px;
        padding: 6px 0;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    /* Container adjustments for mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Row alignment for mobile */
    .row.align-items-center {
        align-items: flex-start !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .contact-item {
        margin-bottom: 8px;
    }
    
    .phone-numbers {
        font-size: 12px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .footer-section {
        padding: 30px 0 15px;
    }
}

/* Desktop and Large Screens - Ensure optimal desktop experience */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 52px;
    }
    
    .about-title {
        font-size: 56px;
    }
    
    .footer-section {
        padding: 50px 0 25px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .phone-numbers {
        font-size: 14px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    #map iframe {
        height: 200px;
    }
    
    .service-header {
        padding: 15px 20px;
    }
    
    .service-header span {
        font-size: 15px;
    }
    
    .service-content ul {
        padding: 15px 20px 15px 44px;
    }
    
    .service-content li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .section-title {
        font-size: 13px;
        margin-bottom: 28px;
    }
    
    h3 {
        font-size: 32px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 58px;
    }
    
    .about-title {
        font-size: 60px;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-color);
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    z-index: 1000;
}

.back-to-top:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Dropdown Animation */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Desktop Layout - Ensure these styles are preserved */
@media (min-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .navbar-brand img {
        height: 50px;
        width: auto;
    }
    
    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
    
    .nav-item {
        margin: 0 15px;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        margin: 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        border-bottom: none;
    }
    
    .nav-text {
        font-size: 14px;
        display: inline-block;
    }
    
    .dropdown-icon-side {
        font-size: 10px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        float: none;
        width: auto;
        min-width: 200px;
        margin-top: 0;
        margin-left: 0;
        border: 1px solid #e9ecef;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        background: white;
        border-radius: 8px;
        padding: 0.5rem 0;
        z-index: 1000;
    }
    
    .dropdown.show .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background-color: #f8f9fa;
    }
    
    .header-social-icons {
        display: flex !important;
        gap: 15px;
    }
    
    .header-social-icons a {
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .header-social-icons a:hover {
        background: #d32f2f;
        transform: translateY(-2px);
    }
    
    /* Hero section desktop */
    .hero-section {
        padding: 80px 0;
        min-height: 600px;
        display: flex;
        align-items: center;
    }
    
    .hero-section h1 {
        font-size: 48px;
        margin-bottom: 40px;
        text-align: left;
        line-height: 1.2;
    }
    
    .hero-section h1 br {
        margin: 0.5rem 0;
    }
    
    .building-img {
        margin-top: 0;
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .building-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
    
    /* About section desktop */
    .about-title {
        font-size: 36px;
        line-height: 1.3;
        font-family: 'Inter', serif;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Services desktop */
    .service-header {
        padding: 15px 20px;
    }
    
    .service-header span {
        font-size: 14px;
    }
    
    .service-content ul {
        padding: 15px 20px 15px 40px;
    }
    
    .service-content li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Section titles desktop */
    .section-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 32px;
    }
    
    /* Container adjustments for desktop */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Row alignment for desktop */
    .row.align-items-center {
        align-items: center !important;
    }
    
    /* Ensure proper navbar structure on desktop */
    .navbar .row {
        width: 100%;
        margin: 0;
    }
    
    .navbar .col-lg-3,
    .navbar .col-lg-6 {
        padding: 0 15px;
    }
    
    /* Hide mobile elements on desktop */
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse.d-lg-none {
        display: none !important;
    }
    
    /* Show desktop elements */
    .navbar-collapse:not(.d-lg-none) {
        display: block !important;
    }
    
    .header-social-icons.d-none.d-lg-flex {
        display: flex !important;
    }
}

/* Page Header Styles */
.page-header {
    background: #645D5D;
    color: white;
    padding: 60px 0;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 600;
    font-family: 'Inter', serif;
    margin: 0;
    line-height: 1.2;
}

.page-header p {
    font-size: 18px;
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.8;
}

.breadcrumb-nav .separator {
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb-nav .current-page {
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive Page Header */
@media (max-width: 767px) {
    .page-header {
        padding: 40px 0;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .breadcrumb-nav {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Digital Services Section */
.digital-services-section {
    position: relative;
    overflow: hidden;
}

.digital-bg {
    position: relative;
    /* min-height: 400px; */
}

.digital-bg-image {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
}

/* Leadership Team Section */
.leadership-section {
    background: white;
    padding: 80px 0;
}

.leadership-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Inter', serif;
    color: #333;
    margin-bottom: 10px;
}

.leadership-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

.leader-info {
    padding: 0;
    height: 100%;
}

.leader-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.leader-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 400;
}

.leader-email {
    margin-top: 5px;
}

.leader-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.leader-email a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Responsive Leadership */
@media (max-width: 767px) {
    .leadership-section {
        padding: 60px 0;
    }
    
    .leadership-title {
        font-size: 36px;
    }
    
    .leadership-subtitle {
        font-size: 20px;
    }
    
    .leader-info {
        margin-bottom: 30px;
    }
    
    .leader-name {
        font-size: 22px;
    }
    
    .leader-description {
        font-size: 15px;
    }
}

/* Careers Section */
.careers-section {
    background: white;
    padding: 80px 0;
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Inter', serif;
    color: #333;
    margin-bottom: 50px;
}

.careers-content {
    text-align: center;
}

.careers-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

.careers-call {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.careers-call p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.careers-image {
    text-align: center;
}

.join-us-img {
    width: 100%;
    height: auto;
    /* max-width: 600px; */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Careers */
@media (max-width: 767px) {
    .careers-section {
        padding: 60px 0;
    }
    
    .careers-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .careers-content {
        margin-bottom: 30px;
    }
    
    .careers-description p {
        font-size: 16px;
    }
    
    .careers-call p {
        font-size: 18px;
    }
    
    .join-us-img {
        max-width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-details {
    padding-right: 30px;
}

.section-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-title {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Inter', serif;
}

.contact-info {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Inter', serif;
}

.contact-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-family: 'Inter', serif;
    font-weight: 400;
    padding-left: 20px;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-text a:hover {
    color: #e60000;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(to right, #c0392b, #e74c3c);
    padding: 40px;
    border-radius: 10px;
    color: #F5F5DC;
}

.form-title {
    font-size: 32px;
    font-weight: 600;
    color: #F5F5DC;
    margin-bottom: 15px;
    font-family: 'Inter', serif;
}

.form-note {
    font-size: 14px;
    color: #F5F5DC;
    margin-bottom: 30px;
    font-family: 'Inter', serif;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    background: rgba(245, 245, 220, 0.2);
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: #F5F5DC;
    font-size: 16px;
    font-family: 'Inter', serif;
}

.contact-form .form-control::placeholder {
    color: #F5F5DC;
    font-family: 'Inter', serif;
}

.contact-form .form-control:focus {
    background: rgba(245, 245, 220, 0.3);
    box-shadow: 0 0 0 2px rgba(245, 245, 220, 0.3);
    color: #F5F5DC;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', serif;
    text-transform: uppercase;
}

.btn-send:hover {
    background: transparent;
    color: #F5F5DC;
    border-color: #F5F5DC;
}

/* Key Contacts Section */
.key-contacts-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.key-contacts-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Inter', serif;
}

.contact-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-person {
    margin-bottom: 25px;
}

.person-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.person-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.person-email {
    margin: 0;
}

.person-email a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.person-email a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Contact */
@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-details {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .key-contacts-section {
        padding: 60px 0;
    }
    
    .key-contacts-title {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 16px;
    }
    
    .person-name {
        font-size: 18px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 150px;
    height: auto;
    animation: logoFadeIn 1s ease-in-out;
}

.preloader-spinner {
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide preloader after page load */
body.loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

/* Contact Section - Simple Design */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-content {
    text-align: center;
}

.contact-main-title {
    font-size: 48px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #666666;
    margin-bottom: 60px;
    line-height: 1.2;
}

.contact-info-simple {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-simple .contact-label {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #333333;
    margin-bottom: 15px;
    margin-top: 40px;
}

.contact-info-simple .contact-label:first-child {
    margin-top: 0;
}

.contact-info-simple .contact-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    font-family: var(--font-primary);
    font-weight: 400;
    margin-bottom: 0;
}

.contact-info-simple .contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-simple .contact-text a:hover {
    color: #e60000;
    text-decoration: underline;
}

/* Responsive Contact Simple */
@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contact-info-simple .contact-label {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .contact-info-simple .contact-text {
        font-size: 16px;
    }
}
