/* Variables */
:root {
    --primary-color: #002B5B;
    --secondary-color: #0056b3;
    --accent-color: #1a75ff;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #e6f3ff 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(176, 224, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(135, 206, 250, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 99999;
}

.loader-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 60px;
    height: 60px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: loader 1s linear infinite;
}

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

/* Header Area */
.top-header-area {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(135, 206, 250, 0.2);
    box-shadow: 0 4px 30px rgba(0, 43, 91, 0.1);
    position: relative;
    z-index: 999;
}

.top-header-area.sticky {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(135, 206, 250, 0.15);
}

.top-header-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,43,91,0.9);
    z-index: 0;
}

.site-logo {
    position: relative;
    z-index: 1;
    text-align: center;
}

.site-logo img {
    max-width: 150px;
    height: auto;
    transition: var(--transition);
}

.site-logo:hover img {
    transform: scale(1.05);
}

.main-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-menu ul li {
    margin: 0 15px;
}

.main-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-menu ul li a:hover::after,
.main-menu ul li.current-list-item a::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.header-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.header-icons a:hover {
    background: #1a75ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.site-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Company Name Styles */
.company-name {
    text-align: center;
    padding: 10px 0;
}

.company-name h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.company-name .tagline {
    color: #1a75ff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 16px;
    margin: 5px 0 0;
    font-style: italic;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 150px 0 90px;
    background-image: linear-gradient(rgba(0, 43, 91, 0.8), rgba(0, 43, 91, 0.8)), url('../images/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.breadcrumb-text h1 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb-text p {
    font-size: 1.2em;
    font-style: italic;
}

/* Contact Form Section */
.contact-from-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(240, 248, 255, 0.5) 100%);
}

.form-title h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-title p {
    margin-bottom: 30px;
    color: #666;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,117,255,0.1);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Info Boxes */
.contact-form-wrap {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #f8f9fa;
    transition: var(--transition);
}

.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-box h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-box h4 i {
    color: var(--accent-color);
}

/* Location Section */
.find-location {
    background: var(--primary-color);
    padding: 20px 0;
    color: white;
    margin-bottom: -7px;
}

.find-location p {
    margin: 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.find-location i {
    color: var(--accent-color);
}

/* Footer Area */
.footer-area {
    background: linear-gradient(135deg, #002B5B 0%, #001f3f 100%);
    color: #fff;
    padding: 80px 0;
}

.footer-box {
    margin-bottom: 30px;
}

.footer-box h2.widget-title {
    font-size: 1.5em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-box h2.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.footer-box.about-widget p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-box.get-in-touch ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-box.get-in-touch ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.footer-box.get-in-touch ul li::before {
    content: '\f041';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.footer-box.subscribe form {
    position: relative;
}

.footer-box.subscribe input[type="email"] {
    width: 100%;
    background: #012738;
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: white;
}

.footer-box.subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--accent-color);
    border: none;
    padding: 15px 20px;
    border-radius: 0 5px 5px 0;
    color: white;
    cursor: pointer;
}

/* Copyright Section */
.copyright {
    background: #051922;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: #fff;
}

.social-icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.social-icons ul li {
    margin-left: 15px;
}

.social-icons ul li a {
    color: white;
    transition: var(--transition);
}

.social-icons ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Custom styles for contact2.html */
.hero-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero-bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(135deg, rgba(0, 43, 91, 0.85) 0%, rgba(0, 43, 91, 0.75) 100%);
    z-index: -1;
    opacity: 0.8;
}

.hero-text .subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #1a75ff;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.single-product-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: white;
    margin-bottom: 30px;
}

.single-product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-product-item .product-image {
    margin-bottom: 20px;
    color: #002B5B;
}

.single-product-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #002B5B;
}

.single-product-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.section-title h3 {
    font-size: 40px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-title h3:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #1a75ff;
}

.section-title h3 .orange-text {
    color: #002B5B;
}

.list-box {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.list-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.list-icon i {
    font-size: 35px;
    color: #002B5B;
    margin-right: 25px;
}

.list-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 8px;
}

.list-box p {
    margin: 0;
    color: #666;
}

.footer-area {
    background: linear-gradient(135deg, #002B5B 0%, #001f3f 100%);
}

.social-icons ul li a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons ul li a:hover {
    color: #1a75ff;
    transform: translateY(-3px);
}

.boxed-btn {
    background-color: #1a75ff;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.boxed-btn:hover {
    background-color: #002B5B;
    color: #fff;
}

.bordered-btn {
    border: 2px solid #1a75ff;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.bordered-btn:hover {
    background-color: #1a75ff;
    color: #fff;
}

/* Service Buttons */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #002B5B;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #1a75ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-btn i {
    font-size: 16px;
}

.service-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features list section with background */
.list-section {
    position: relative;
    color: white;
    background: linear-gradient(135deg, rgba(0, 43, 91, 0.95) 0%, rgba(26, 117, 255, 0.9) 100%);
}

.list-section .list-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.list-section .list-box .content h3,
.list-section .list-box .content p {
    color: white;
}

.list-section .list-icon i {
    color: #1a75ff;
    font-size: 40px;
}

/* Services Showcase Section */
.services-showcase {
    background-color: #f5f5f5;
}

.services-showcase .image {
    position: relative;
    text-align: center;
}

.service-box {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.inner-service {
    background: #002B5B;
    text-align: center;
    border-radius: 5px;
    padding: 20px 40px;
}

.inner-service span {
    color: #fff;
}

.inner-service span strong {
    color: #1a75ff;
    font-size: 24px;
}

.content-column h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-column h4 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #002B5B;
}

.content-column .text {
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #1a75ff;
    margin-right: 10px;
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    color: #555;
}

/* Responsive styles for services showcase */
@media (max-width: 991px) {
    .service-box {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }
    
    .inner-service {
        display: inline-block;
    }
    
    .content-column {
        text-align: center;
        margin-top: 30px;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .main-menu-wrap {
        flex-direction: column;
        text-align: center;
    }

    .site-logo {
        margin-bottom: 15px;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .main-menu ul li {
        margin: 10px 0;
    }

    .contact-form-wrap {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .breadcrumb-text h1 {
        font-size: 2em;
    }

    .contact-from-section {
        padding: 60px 0;
    }

    .footer-box {
        text-align: center;
    }

    .footer-box h2.widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons ul {
        justify-content: center;
        margin-top: 20px;
    }

    .company-name h1 {
        font-size: 20px;
    }

    .company-name .tagline {
        font-size: 14px;
    }

    .header-icons {
        margin-top: 10px;
    }

    .header-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .main-menu-wrap {
        padding: 15px 0;
    }

    .site-logo {
        margin: 0 auto;
        padding: 10px 0;
    }

    .site-logo img {
        max-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .site-logo img {
        max-width: 80px;
    }

    .main-menu-wrap {
        padding: 10px 0;
    }
}

/* Mobile Header Styles */
@media screen and (max-width: 768px) {
    .main-menu-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .site-logo {
        order: 1;
        width: auto;
        margin: 0 auto;
        padding: 10px 15px;
    }

    .site-logo img {
        max-width: 100px;
        height: auto;
    }

    .company-name {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 15px 10px;
    }

    .company-name h1 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .company-name .tagline {
        font-size: 14px;
        margin-top: 5px;
    }

    .header-icons {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
}

/* Even smaller screens */
@media screen and (max-width: 480px) {
    .site-logo img {
        max-width: 80px;
    }

    .company-name h1 {
        font-size: 16px;
    }

    .company-name .tagline {
        font-size: 12px;
    }

    .header-icons {
        gap: 10px;
    }

    .header-icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* General mobile improvements */
@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .subtitle {
        font-size: 18px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns a {
        width: 80%;
        text-align: center;
        margin: 0;
    }

    .list-section {
        padding: 40px 0;
    }

    .list-box {
        margin-bottom: 20px;
        padding: 20px;
    }

    .service-features {
        padding: 0 15px;
    }

    .feature-item {
        margin-bottom: 12px;
    }
}

/* Improve sticky header on mobile */
.top-header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Enhance mobile menu button visibility */
.mean-container .mean-bar {
    background: transparent;
    position: absolute;
    right: 0;
    top: 0;
}

.mean-container a.meanmenu-reveal {
    background: #002B5B;
    padding: 8px 10px;
    border-radius: 5px;
}

.mean-container .mean-nav {
    margin-top: 0;
    background: rgba(0, 43, 91, 0.95);
}

/* Map Section */
.map-container.embed-responsive {
    min-height: 400px;
}
