@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700&display=swap');

/* Custom Fonts */
* {
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #000000;
}
:root {
    /* Colors */
    --primary-blue: #00001f;
    --secondary-blue: #000055;
    --primary-yellow: #f97300;
    --secondary-yellow: #fa8c0e;

    /* Fonts */
    --font-main: 'Poppins', sans-serif;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
}

.loader-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}
@media (max-width: 500px) {
    .loader-gif {
        object-fit:contain;
    }
}

.loader-text {
    position: absolute;
    z-index: 2;
    color: var(--primary-yellow);
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    bottom: 50px;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.top-marquee {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050; /* Above navbar (which uses 1030/1040) */
    font-weight: 600;
    font-size: 1rem;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Header Styles */
#mainNav {
    background: var(--primary-yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding-top: 38px;
    padding-bottom: 2px;
}

#mainNav.scrolled {
    background: var(--secondary-yellow);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    color: white;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.btn-call {
    background: #2a46ff;
    color: white;
    border: none;
    padding: 8px 20px;
    /* border-radius: 25px; */
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn-call:hover {
    background: #2a46ff;
    transform: skewX(-25deg) translateY(-3px);
    color: white;
}
.btn-call:active {
    color: white !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.238);
}

.hero-content {
    margin-top: 200px;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Bitter', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Counter Section */
.counter-section {
    margin: 3rem 0;
}

.counter-item {
    padding: 20px;
    margin-bottom: 20px;
}

.counter-number {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.hero-buttons a{
    margin-bottom: 10px;
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-yellow));
    color: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: skewX(-25deg) translateY(-3px);
    background: rgba(0, 0, 0, 0.419);
    color: white;
    border: 1px solid var(--primary-yellow);
}

.btn-outline-light {
    padding: 12px 30px;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    transform: skewX(-25deg) translateY(-3px);
}

@media (max-width: 370px) {
    .hero-content {
        margin-top: 170px;
    }
    .hero-section .counter-number {
        font-size: 1.5rem;
    }
    .hero-section .counter-item{
        margin-bottom: 0%;
    }
    .hero-section .counter-section {
        margin-bottom: 5%;
    }
    .hero-buttons{
        margin-top: 0%;
    }
    .hero-buttons a{
        margin-right: 1% !important;
    }
}

/* Section Styles */
.section-title {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}
.why-us-section .section-title,
.about-content .section-title,
.contact-section .section-title,
.reviews-section .section-title {
    color: black;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 500px) {
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Cars Section */
.cars-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/img/self-driven-car-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.taxi-cars-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/img/taxi-car-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.yacht-section{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/img/yacht.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  /* iOS-specific override */
    .hero-section, .cars-section, .taxi-cars-section, .yacht-section, .breadcrumb-section{
        background-attachment: scroll !important;
    }
}

.car-card {
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-yellow);
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.car-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.car-image {
    height: 250px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-info {
    padding: 25px;
}

.car-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color:#000000;
}
.car-description{
    font-size: 1rem;
    color: #000000;
}

.car-features {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.car-features span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000000;
    font-size: 1rem;
    margin: 2px;
}
.feature-icon{
    width: 25px;
}

.car-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin: 15px 0;
}

.btn-book, .btn-book2{
    border: none;
    padding: 10px 25px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-book{
    color: white;
    font-weight: 600;
    background: #2a46ff;
}

.btn-book2{
    margin-top: 10px;
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-book:hover, .btn-book2:hover {
    transform: skewX(-25deg) translateY(-3px);
}
.btn-book:active{
    color: var(--secondary-yellow) !important;
    background: var(--secondary-blue) !important;
}

.btn-book2:active {
    background: var(--secondary-yellow) !important;
    color: var(--primary-blue) !important;
}

.btn-book:hover {
    color: white;
    background: #2a46ff;
}

.btn-book2:hover {
    color: var(--primary-blue);
    background: var(--secondary-yellow);
}

.btn-book i, .btn-book2 i{
    font-size: 20px;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    border-radius: 15px;
    height: 500px;
}

.about-content {
    padding-left: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-right: 15px;
    margin-top: 5px;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-yellow));
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    background: #f8f9fa;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item p{
    margin-bottom: 0%;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer-section {
    background: var(--primary-yellow);
    color: white;
}

.footer-section .row{
    justify-content: space-around;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-blue);
}

.social-links {
    margin-top: 20px;
}
.social-links i{
    color: var(--primary-yellow);
    font-size: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-blue);
    color: white;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
}
.footer-contact a {
    color: white;
    text-decoration: none;
}
.footer-contact a:hover {
    color: var(--secondary-blue);
}

.footer-contact i {
    color: var(--secondary-blue);
    margin-right: 10px;
    width: 20px;
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 20px;
}

.footer-copyright {
    color: #ffffff;
    margin: 0;
}

.footer-copyright a {
    color: var(--secondary-blue);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-yellow);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    padding: 16px 18px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease, all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: var(--primary-yellow);
    color: #fff;
}

.back-to-top.show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dg-btn {
  transform: skewX(-25deg);
  cursor: pointer;
  border-radius: 0%;
}
.dg-btn span {
  display: block;
  transform: skewX(25deg);
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}













/* About Page Specific Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/breadcrum-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.238);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 80px;
}

.breadcrumb-title {
    font-family: 'Bitter', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
}

.company-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.company-image img {
    transition: transform 0.3s ease;
}

.company-image:hover img {
    transform: scale(1.03);
}

.company-badge {
    position: absolute;
    top: 3%;
    left: 4%;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-yellow));
    color: var(--primary-blue);
    padding: 6px 10px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.company-content{
    color: white;
}

.company-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-item i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

.company-cta {
    margin-top: 30px;
}
.company-cta .btn-warning{
    border-radius: 0%;
}
.company-cta .btn-warning:hover{
    transform: skewX(-25deg) translateY(-3px);
    background: rgba(0, 0, 0, 0.419);
    border: 1px solid var(--primary-yellow);
}
.about-content .btn-warning:hover{
    background: rgba(255, 255, 255, 0);
    color: var(--primary-blue);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Counter Section */
.about-counter-section {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
}

.about-counter-section .counter-item {
    text-align: center;
    padding: 0px 20px;
}
.about-counter-section .counter-section, .about-counter-section .row {
    margin:0;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-icon i {
    font-size: 1.8rem;
    color: white;
}


/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 10px;
    height: calc(100% - 20px);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 3px;
}

.review-text {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--secondary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-blue);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #007bff;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .company-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}












/* Blog Page Specific Styles */

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

/* Blog Filter */
.blog-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 10px 25px;
    margin: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    color: var(--primary-blue);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 8px;
    color: #007bff;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    line-height: 1.4;
}

.blog-title a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: #454545;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-align: justify;
}

.blog-read-more {
    align-self: flex-start;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-read-more:hover {
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #00005544;
    margin-top: auto;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.blog-tags {
    font-size: 0.8rem;
    color: var(--secondary-blue);
}

.blog-tags i {
    margin-right: 5px;
}


/* Load More Button */
#loadMoreBtn {
    padding: 15px 40px;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: skewX(-25deg) translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.3);
}

/* Blog Item Animation */
.blog-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.blog-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .blog-image {
        height: 200px;
    }
    
    .filter-btn {
        display: block;
        margin: 5px auto;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta span {
        margin-bottom: 5px;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-tags {
        margin-top: 10px;
    }
}













/* Contact Page Specific Styles */

/* Map Section */
.map-section {
    position: relative;
    margin-top: 80px;
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    pointer-events: all;
    border-left: 4px solid #007bff;
}

.map-info-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-info-card h4 i {
    color: #007bff;
    margin-right: 10px;
}

.map-info-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.map-info-card  .btn-warning:hover{
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
}
/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-yellow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-section .contact-icon{
    width: 80px;
    height: 80px;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}


.contact-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-details {
    color: #000000;
    font-weight: 600;
}

.contact-hours {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-hours i {
    color: #007bff;
    margin-right: 8px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .map-info-card {
        margin-top: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        height: 300px;
    }
}

.privacy-policy, .terms-condition{
    background-color: #ffffff;
    padding: 2% 10%;
}
@media (max-width: 576px) {
    .privacy-policy, .terms-condition{
        
        padding: 2% 5%;
    }
}
