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

/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #ff7f00;
    --text-color: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.sectionpadding {
    padding: 125px 25px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.text-white {
    color: var(--white) !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    height: 100px;
    ;
    padding: 5px 0;
    transition: all 0.3s ease;
    /* background: rgb(25 32 61); */
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    /* color: white !important; */
}

.header.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.navbar {
    padding: 0 !important;
    /* background: var(--white) !important; */
}

.navbar-brand img {
    max-height: 90px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px;
    color: var(--text-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
}

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

.firstsection {
    margin-top: 100px;
}

/* Hero Slider */
.hero-slider {
    height: calc(100vh - 0px);
    /* min-height: 600px; */

    position: relative;
    margin-top: 100px;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
    background: linear-gradient(135deg, rgba(0, 45, 77, 0.7) 0%,
            transparent, transparent, transparent, transparent, rgba(102, 0, 85, 0.8) 100%);
    z-index: -1;
}

.swiper-container {
    height: 100vh !important;

}

.hero-slider .swiper-slide h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: rgba(9, 5, 21, 0.684);
    padding: 10px;
    border-radius: 10px;
}

.hero-slider .swiper-slide p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.header-scrolled {
    background-color: white !important;
}

.slide-1 {
    /* background-image: url('../img/slider/slide-1.jpg'); */
    background-image: url('../../img/slider/slider1.jpg');
}




.slide-2 {
    background-image: url('../../img/slider/slider2.jpg');
}

.slide-3 {
    background-image: url('../../img/slider/slider3.jpg');
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    /* background: red; */
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--accent-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* About Section */
.about-images img {
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding-left: 30px;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-card .btn-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0;
}

.service-card .btn-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Why Us Section */
.why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.why-us-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon i {
    color: var(--white);
}

.why-us-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-us-card p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 51, 102, 0.8); */
    display: flex;
    align-items: end;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0px;
}

.gallery-card:hover .gallery-overlay {
    background: rgba(0, 51, 102, 0.8);
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: 5px 15px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.gallery-view-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background-image: url('../img/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.9);
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px 15px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact CTA */
.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-cta .btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.contact-cta .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

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

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-widget ul li {
    display: flex;
    align-items: center;
}

.contact-widget ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--primary-color);
}

.floating-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 32px;
    }

    .hero-slider .swiper-slide h1 {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .hero-slider .swiper-slide h1 {
        font-size: 40px;
    }

    .hero-slider .swiper-slide p {
        font-size: 18px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .contact-cta .text-lg-end {
        text-align: left !important;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 28px;
    }

    .hero-slider {
        min-height: 400px;
        margin-top: 70px;
    }

    .hero-slider .swiper-slide h1 {
        font-size: 32px;
    }

    .hero-slider .swiper-slide p {
        font-size: 16px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .back-to-top {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-slider .swiper-slide h1 {
        font-size: 28px;
    }

    .btn {
        padding: 8px 20px;
    }

    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 10px;
    }
}




.stats-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stats-text {
    color: #666;
    font-weight: 500;
}


.page-header-section {
    background: linear-gradient(45deg, #03262c, black, black, #03262c 50%);
    position: relative;
    border-bottom: 1px solid #e3e6ea;
    margin-top: 100px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('https://images.pexels.com/photos/167676/pexels-photo-167676.jpeg'); */
    background-image: url('https://images.pexels.com/photos/161764/golden-gate-bridge-suspension-san-francisco-california-161764.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.page-header-section>* {
    position: relative;
    z-index: 2;
}

.page-header-section h1 {
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    /* color: #0056b3; */
    color: #ffffff;
    text-decoration: underline dotted;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    /* color: #ff9800; */
    text-decoration: underline solid;
}

.breadcrumb-item.active {
    color: #6c757d;
    color: #ffffff;
    font-weight: 500;
}








































/* custom css responsiveness */
/* --- Responsive Navbar Fixes --- */

/* Ensure the navbar toggler button is visible and above overlay */
/* Fix for mobile navbar dropdown */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        padding: 15px 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 25px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Ensure the call button is properly styled */
    .ms-lg-3 {
        margin-left: 0 !important;
        padding: 0 25px;
        margin-top: 15px;
    }

    .ms-lg-3 .btn {
        width: 100%;
        text-align: center;
    }
}

/* Fix navbar toggler color */
.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
















































/* Fix for mobile navbar - REPLACE your current mobile styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 100px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 19999;
    padding: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.05);
  }

  /* Fix for the call button in mobile */
  .ms-lg-3 {
    margin-left: 0 !important;
    margin-top: 15px;
    padding: 0 15px;
  }

  .ms-lg-3 .btn {
    width: 100%;
    text-align: center;
  }

  /* Ensure proper header height */
  .header {
    height: auto;
    min-height: 100px;
  }
}

/* Fix navbar toggler */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 1.5em;
  height: 1.5em;
}