 
:root {
  --primary: #000;
  --secondary: #3FE9FC;
  --black:#000;
}



 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        /* Top Bar Section */
        .top-section{
             background: var(--primary);
        }
        .top-area {
            position: relative;
            height: 60px;
            overflow: hidden;
           
        }
        
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 200px;
            height: 60px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            padding: 0 20px;
            z-index: 1;
        }
        
        .top-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: -30px;
            width: 0;
            height: 0;
            border-left: 30px solid var(--primary);
            border-bottom: 60px solid transparent;
        }
        
        .top-bar-content {
            display: flex;
            align-items: center;
            font-size: 13px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .top-bar-content1 {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: white;
            padding: 5px 20px;
        }
        
        .top-bar-separator {
            color: #999;
        }
        
        .add-listings {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 60px;
            background: var(--secondary);
            color: white;
            border: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.3s;
        }
        
        .add-listings:hover {
             background: var(--secondary);
        }

.mobile_btn {
    border: 1px solid rgba(255,255,255,1);
    padding: 5px 10px;
    /* float: right; */
    margin-left: 60px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase!important;
}
        
        /* Main Header */
        .main-header {
    background: white;
    padding: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    border-bottom: 1px solid rgba(0,0,0,.1);
}
        
        .logo-section {
            display: flex;
            align-items: center;
        }
        
        .car-logo {
            width: 65px;
            height: 50px;
            background: #dc3545;
            border-radius: 8px;
            margin-right: 15px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .car-logo svg {
            width: 40px;
            height: 25px;
            fill: white;
        }
        
        .brand-text h1 {
            font-size: 45px;
            font-weight: 900;
            color: #2c3e50;
            margin: 0;
            line-height: 0.9;
            letter-spacing: -2px;
        }
        
        .brand-text .tagline {
            font-size: 10px;
            color: #666;
            font-weight: 700;
            letter-spacing: 4px;
            margin-top: 2px;
        }
        
        .contact-section {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .phone-icon {
            width: 50px;
            height: 50px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dc3545;
            font-size: 20px;
            transform: rotate(-30deg);
            flex-shrink: 0;
        }
        
        .contact-info .call-text {
            font-size: 14px;
            color: #666;
            margin: 0;
            font-weight: 500;
        }
        
        .contact-info .phone-number {
            font-size: 24px;
            color: #2c3e50;
            font-weight: 700;
            margin: 0;
            line-height: 1;
        }
        
        /* Navigation */
        .main-navigation {
            background: none;
            border: none;
            padding: 0;
        }
        
        .nav-menu {
            display: flex;
            justify-content: flex-end;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            padding: 10px 15px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .nav-link:hover {
            color: var(--secondary);
        }
        
        .dropdown-arrow::after {
            content: '▼';
            font-size: 10px;
            margin-left: 8px;
            color: #666;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #eee;
            border-radius: 4px;
            z-index: 1000;
            display: none;
            list-style: none;
            padding: 8px 0;
            margin: 0;
        }
        
        .nav-item:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #dc3545;
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
/*            background: #2c3e50;*/
            color: #000;
            border: none;
            font-size: 18px;
           /* padding: 12px 15px;
            border-radius: 5px;*/
            cursor: pointer;
            transition: background-color 0.3s;
            background: transparent;
        }
        
        /*.mobile-toggle:hover {
            background: #34495e;
        }*/
        
        /* Sidebar Menu for Mobile */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .sidebar-menu {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100%;
            background: white;
            z-index: 1001;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        
        .sidebar-menu.show {
            left: 0;
        }
        
        .sidebar-header {
            background: #2c3e50;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
        }
        
        .close-sidebar {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
        }
        
        .close-sidebar:hover {
            color: #dc3545;
        }
        
        .sidebar-nav {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .sidebar-nav-item {
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .sidebar-nav-link:hover {
            background: #f8f9fa;
            color: #dc3545;
        }
        
        .sidebar-nav-link i {
            font-size: 16px;
            margin-right: 10px;
        }
        
        .sidebar-dropdown-toggle::after {
            content: '+';
            font-size: 16px;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .sidebar-dropdown-toggle.expanded::after {
            content: '−';
            transform: rotate(0deg);
        }
        
        .sidebar-submenu {
            list-style: none;
            margin: 0;
            padding: 0;
            background: #f8f9fa;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .sidebar-submenu.show {
            max-height: 300px;
        }
        
        .sidebar-submenu-item {
            border-bottom: 1px solid #e9ecef;
        }
        
        .sidebar-submenu-link {
            display: block;
            padding: 12px 20px 12px 50px;
            color: #495057;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .sidebar-submenu-link:hover {
            background: #e9ecef;
            color: #dc3545;
        }
        
        /* Contact Section in Sidebar */
        .sidebar-contact {
            padding: 20px;
            background: #f8f9fa;
            margin-top: auto;
        }
        
        .sidebar-contact h6 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13px;
            color: #666;
        }
        
        .contact-item i {
            margin-right: 8px;
            color: #dc3545;
            width: 16px;
        }
        
        /* Extra Large Screens (1400px and up) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }
        
        /* Large Screens (1200px to 1399px) */
        @media (max-width: 1399.98px) {
            .brand-text h1 {
                font-size: 30px;
            }
            
            .top-bar-content {
                font-size: 12px;
            }
        }
        
        /* Medium Large Screens (992px to 1199px) */
        @media (max-width: 1199.98px) {
            .top-bar {
                right: 180px;
                padding: 0 15px;
            }
            
            .add-listings {
                width: 180px;
                font-size: 13px;
            }
            
            .brand-text h1 {
                font-size: 38px;
            }
            
            .contact-info .phone-number {
                font-size: 22px;
            }
            
            .nav-link {
                padding: 10px 12px;
                font-size: 12px;
            }
        }
        
        /* Medium Screens (768px to 991px) - Tablets */
        @media (max-width: 991.98px) {
            /* Hide desktop top bar layout */
            .desktop-top-bar {
                display: none !important;
            }
            
            /* Show mobile top bar layout */
            .mobile-top-bar {
                display: block !important;
            }
            
            .top-area {
                height: auto;
                padding: 10px 0;
            }
            
            .top-bar {
                position: static;
                background: none;
                right: auto;
                height: auto;
                padding: 0;
            }
            
            .top-bar::after {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none !important;
            }
            
            .brand-text h1 {
                font-size: 35px;
            }
            
            .contact-section {
                justify-content: center;
                margin-top: 15px;
            }
        }
        
        /* Small Screens (576px to 767px) - Large Mobile */
        @media (max-width: 767.98px) {
            .sidebar-menu {
                width: 300px;
                left: -300px;
            }
            
            .top-bar-content span:last-child {
                display: none;
            }
            
            .brand-text h1 {
                font-size: 32px;
            }
            
            .brand-text .tagline {
                font-size: 9px;
                letter-spacing: 3px;
            }
            
            .contact-info .phone-number {
                font-size: 20px;
            }
            
            .contact-info .call-text {
                font-size: 13px;
            }
            
            .main-header {
                padding: 15px 0;
            }
            
            .car-logo {
                width: 55px;
                height: 45px;
            }
            
            .car-logo svg {
                width: 35px;
                height: 22px;
            }
            
            .phone-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        
        /* Extra Small Screens (up to 575px) - Mobile */
        @media (max-width: 575.98px) {
            .sidebar-menu {
                width: 280px;
                left: -280px;
            }
            
            .brand-text h1 {
                font-size: 28px;
            }
            
            .brand-text .tagline {
                font-size: 8px;
                letter-spacing: 2px;
            }
            
            .car-logo {
                width: 50px;
                height: 40px;
                margin-right: 12px;
            }
            
            .car-logo svg {
                width: 30px;
                height: 20px;
            }
            
            .contact-section {
                display: none;
            }
            
            .contact-info .phone-number {
                font-size: 18px;
            }
            
            .contact-info .call-text {
                font-size: 12px;
            }
            
            .phone-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .main-header {
                padding: 10px 0;
            }
            
            .top-bar-content1 {
                font-size: 12px;
                padding: 5px 15px;
            }
        }
        
        /* Ultra Small Screens (up to 360px) */
        @media (max-width: 360px) {
            .sidebar-menu {
                width: 260px;
                left: -260px;
            }
            
            .brand-text h1 {
                font-size: 24px;
            }
            
            .car-logo {
                width: 45px;
                height: 35px;
                margin-right: 10px;
            }
            
            .top-bar-content1 {
                font-size: 11px;
                padding: 5px 12px;
            }
        }

         /* Clean Professional Footer Styles */
        .footer-main {
            background-color: #2c3e50;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-top {
            padding: 60px 0 40px;
            border-bottom: 1px solid #34495e;
        }
        
        .footer-bottom {
            padding: 25px 0;
            background-color: #1a252f;
        }
        
        /* Company Section */
        .company-info h3 {
            color: #ffffff;
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .company-description {
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }
        
        /* Footer Headings */
        .footer-heading {
            color: #ffffff;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        /* Links Styling */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #dc3545;
        }
        
        /* Contact Information */
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            color: #bdc3c7;
            margin-bottom: 15px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            color: var(--secondary);
            width: 20px;
            margin-right: 12px;
            font-size: 16px;
        }
        
        /* Social Media */
        .social-media {
            margin-top: 25px;
        }
        
        .social-media a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: #ffffff;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }
        
        .social-media a:hover {
            background-color: var(--secondary);
        }
        
        /* Newsletter */
        .newsletter-form {
            margin-top: 20px;
        }
        
        .newsletter-form .input-group {
            margin-bottom: 15px;
        }
        
        .newsletter-form .form-control {
            border: 1px solid #34495e;
            background-color: #34495e;
            color: #ffffff;
            border-radius: 4px;
            padding: 12px 15px;
        }
        
        .newsletter-form .form-control:focus {
            border-color: var(--secondary);
            background-color: #3a4a5c;
/*            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
            color: #ffffff;
        }
        
        .newsletter-form .form-control::placeholder {
            color: #95a5a6;
        }
        
        .btn-subscribe {
            background-color: var(--secondary);
            border: none;
            color: var(--black);
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .btn-subscribe:hover {
            background-color: var(--secondary);
        }
        
        /* Footer Bottom */
        .footer-bottom .row {
            align-items: center;
        }
        
        .copyright {
            color: #95a5a6;
            margin: 0;
            font-size: 14px;
        }
        
        .footer-policies {
            text-align: right;
        }
        
           .footer-policies a {
	color: #04d8e5;
	text-decoration: none;
	/* margin-left: 20px; */
	font-size: 14px;
	transition: color 0.3s ease;
}
        
        .footer-policies a:hover {
            color: #ffffff;
        }
        
        /* Trust Badges */
        .trust-badges {
            background-color: #34495e;
            padding: 20px 0;
            margin-top: 20px;
            border-radius: 4px;
        }
        
        .trust-item {
            text-align: center;
            color: #bdc3c7;
            font-size: 13px;
        }
        
        .trust-item i {
            font-size: 24px;
            color: #dc3545;
            margin-bottom: 8px;
            display: block;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-top {
                padding: 40px 0 30px;
            }
            
            .footer-policies {
                text-align: center;
                margin-top: 15px;
            }
            
            .footer-policies a {
                margin: 0 10px;
                display: inline-block;
            }
            
            .company-info h3 {
                font-size: 20px;
            }
            
            .footer-heading {
                font-size: 16px;
            }
            
            .trust-item {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-top {
                padding: 30px 0 20px;
            }
            
            .social-media a {
                width: 35px;
                height: 35px;
                line-height: 35px;
                margin-right: 8px;
            }
        }

        /* Banner Section */
        .banner-section {
    background-color: #000;
    color: #fff;
    padding: 40px 0px 0px 0px;
    position: relative;
}

        .banner-section .section-subtitle1 {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .banner-section .banner-title {
            color: var(--secondary);
            font-size: 25px;
            font-weight: 700;
            line-height:40px;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .banner-section .section-description {
            color: #fff;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 500px;
        }


        .banner-section .btn-red {
            background-color: var(--secondary);
            color: var(--black);
            border: none;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-right: 20px;
            text-decoration: none;
            display: inline-block;
        }

        .banner-section .btn-red:hover {
            background-color: var(--secondary);
            color: var(--black);
            transform: translateY(-2px);
        }

        .banner-section .btn-outline {
            background-color: transparent;
            color: #fff;
            border: 2px solid var(--secondary);
            padding: 13px 28px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .banner-section .btn-outline:hover {
            background-color: #ffffff;
            color: var(--secondary);
        }

        /* Custom Carousel */
        .banner-section .custom-carousel {
            position: relative;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        .banner-section .carousel-inner {
            height: 100%;
            border-radius: 0;
        }

        .banner-section .carousel-item {
            height: 100%;
            min-height: 500px;
        }

    .banner-section .carousel-item img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 10px;
    }

        /* Custom Navigation Arrows */
        .banner-section .carousel-control-prev,
        .banner-section .carousel-control-next {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .banner-section .carousel-control-prev {
            left: 30px;
        }

        .banner-section .carousel-control-next {
            right: 30px;
        }

        .banner-section .carousel-control-prev:hover,
        .banner-section .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 1);
        }

        .banner-section .carousel-control-prev-icon,
        .banner-section .carousel-control-next-icon {
            width: 24px;
            height: 24px;
/*            background-color: #2c2c2c;*/
            border-radius: 0;
        }

        .banner-section .carousel-control-prev-icon {
            background-image: none;
        }

        .banner-section .carousel-control-next-icon {
            background-image: none;
        }

        .banner-section .carousel-control-prev-icon::before {
            content: '<';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .banner-section .carousel-control-next-icon::before {
            content: '>';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Custom Indicators */
        .banner-section .carousel-indicators {
            bottom: 30px;
            margin-bottom: 0;
        }

        .banner-section .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .banner-section .carousel-indicators .active {
            background-color: #ffffff;
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-section {
                padding: 40px 0px 0px 0px;
                height:100%;
            }

            .banner-section .section-title1 {
                font-size: 30px;
                margin-bottom: 20px;
            }

            .banner-section .section-description {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .banner-section .btn-red,
            .banner-section .btn-outline {
                display: block;
                margin: 10px 0;
                text-align: center;
            }

            .banner-section .carousel-item {
                min-height: 300px;
            }

            .banner-section .carousel-control-prev,
            .banner-section .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .banner-section .carousel-control-prev {
                left: 15px;
            }

            .banner-section .carousel-control-next {
                right: 15px;
            }

        .banner-section .carousel-item img {
            height: 100%;
        }

        .banner-section .carousel-control-prev,
            .banner-section .carousel-control-next {
                width: 50px;
                height: 50px;
                top:45%;
            }

        }

        .banner-section .content-wrapper {
            padding-right: 40px;
        }

        @media (max-width: 768px) {
            .banner-section .content-wrapper {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
        /* Banner Section */
       
        
        /* Feature Cards */
        .feature-cards {
            margin-top: 40px;
        }
        
        .feature-card {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: #dc3545;
            margin-bottom: 15px;
        }
        
        .feature-card h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-text h1 {
                font-size: 2.5rem;
            }
            
            .banner-text p {
                font-size: 1rem;
            }
            
            .booking-form {
                padding: 25px;
                margin-top: 30px;
            }
            
            .booking-title {
                font-size: 1.5rem;
            }
            
            /*.banner-section {
                min-height: auto;
                padding: 60px 0;
            }*/

            .banner-section {
                /*min-height: 2000px;*/
                /* padding: 60px 0; */
                background: #000;
                text-align: center;
            }

        }
        
        @media (max-width: 576px) {
            .banner-text h1 {
                font-size: 2rem;
            }
            
            .booking-form {
                padding: 20px;
            }
            
            .btn-explore {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }



/*about*/
.about-section {
    background-color: #f5f5f5;
    color: #000;
    padding: 40px 0px 0px 0px;
    min-height: 500px;
    position: relative;
}

        .about-section .section-subtitle1 {
            color: #a0a0a0;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .about-section .section-title1 {
            color: #000;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-section .section-description {
            color: #000;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 500px;
        }

        .about-section .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .about-section .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #b8b8b8;
            font-size: 16px;
        }

        .about-section .feature-item i {
            color: #28a745;
            margin-right: 15px;
            font-size: 18px;
            width: 20px;
        }

        .about-section .btn-red {
            background-color: var(--secondary);
            color: var(--black);
            border: none;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-right: 20px;
            text-decoration: none;
            display: inline-block;
        }

        .about-section .btn-red:hover {
            background-color: var(--secondary);
            color: var(--black);
            transform: translateY(-2px);
        }

        .about-section .btn-outline {
            background-color: transparent;
            color: #000;
            border: 2px solid var(--secondary);
            padding: 13px 28px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .about-section .btn-outline:hover {
            background-color: #ffffff;
            color: var(--secondary);
        }

        /* Custom Carousel */
        .about-section .custom-carousel {
            position: relative;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        .about-section .carousel-inner {
            height: 100%;
            border-radius: 0;
        }

        .about-section .carousel-item {
            height: 100%;
            min-height: 500px;
        }

    .about-section .carousel-item img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 10px;
    }

        /* Custom Navigation Arrows */
        .about-section .carousel-control-prev,
        .about-section .carousel-control-next {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .about-section .carousel-control-prev {
            left: 30px;
        }

        .about-section .carousel-control-next {
            right: 30px;
        }

        .about-section .carousel-control-prev:hover,
        .about-section .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 1);
        }

        .about-section .carousel-control-prev-icon,
        .about-section .carousel-control-next-icon {
            width: 24px;
            height: 24px;
/*            background-color: #2c2c2c;*/
            border-radius: 0;
        }

        .about-section .carousel-control-prev-icon {
            background-image: none;
        }

        .about-section .carousel-control-next-icon {
            background-image: none;
        }

        .about-section .carousel-control-prev-icon::before {
            content: '<';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .about-section .carousel-control-next-icon::before {
            content: '>';
            color: #2c2c2c;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Custom Indicators */
        .about-section .carousel-indicators {
            bottom: 30px;
            margin-bottom: 0;
        }

        .about-section .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .about-section .carousel-indicators .active {
            background-color: #ffffff;
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 40px 0px 0px 0px;
                height:100%;
            }

            .about-section .section-title1 {
                font-size: 30px;
                margin-bottom: 20px;
            }

            .about-section .section-description {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .about-section .btn-red,
            .about-section .btn-outline {
                display: block;
                margin: 10px 0;
                text-align: center;
            }

            .about-section .carousel-item {
                min-height: 300px;
            }

            .about-section .carousel-control-prev,
            .about-section .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .about-section .carousel-control-prev {
                left: 15px;
            }

            .about-section .carousel-control-next {
                right: 15px;
            }

        .about-section .carousel-item img {
            height: 100%;
        }

        .about-section .carousel-control-prev,
            .about-section .carousel-control-next {
                width: 50px;
                height: 50px;
                top:45%;
            }

        }

        .about-section .content-wrapper {
            padding-right: 40px;
        }

        @media (max-width: 768px) {
            .about-section .content-wrapper {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
/*about*/

/*why choose us*/
 .whychoose{
          background: url('./images/whychoose.jpg');
          background-size: cover;
          width:100%;
          height:100%;
          background-repeat: no-repeat;
        }
         .whychoose .card{
          box-shadow: 0px 3px 36px 0px rgba(0,0,0,.11);
          border-radius: 0;
        }

        .whychoose .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .whychoose .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .whychoose .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
/*            background: linear-gradient(135deg, #007bff, #0056b3);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--accent-color);
        }
        .whychoose-section-label {
            color: var(--black);
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .whychoose-section-title {
            color: #2c3e50;
            font-weight: 500;
            line-height: 1.2;
            width:600px;
            margin:auto;
        }
        .whychoose-section-subtitle {
            color: #e67e22;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
/*why choose us*/


/*team*/
.team-section .team-card {
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
        }
        
        .team-section .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .team-section .team-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .team-section .team-card:hover .team-image {
            transform: scale(1.1);
        }
        
        .team-section .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.9));
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .team-section .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-section .social-links {
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .team-section .team-card:hover .social-links {
            transform: translateY(0);
        }
        
        .team-section .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: white;
            color: #333;
            border-radius: 50%;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0px;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .team-section .social-links a:hover {
            background: #333;
            color: white;
            transform: translateY(-3px);
        }
        
        .team-section .team-info {
            background: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .team-section .team-name {
            color: #333;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .team-section .team-position {
            color: #dc3545;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .team-section .section-header {
            margin-bottom: 4rem;
        }
        
        .team-section .section-badge {
            background: #ffc107;
            color: #000;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .team-section .team-image {
                height: 250px;
            }
        }
/*team*/


/*event*/
.events-section {
            padding: 40px 0;
            background: whitesmoke;
            position: relative;
        }

        .event-card {
            display: flex;
            background: white;
            border-radius: 0px;
/*            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
            transition: all 0.3s ease;
            margin-bottom: 25px;
            overflow: hidden;
            border: 1px solid  rgba(0, 0, 0, 0.05);
            height: 220px;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .event-image {
            width: 180px;
            height: 220px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-content {
            flex: 1;
            padding: 20px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .event-meta i {
            color: var(--primary-red);
            font-size: 0.8rem;
        }

        .event-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .event-card:hover .event-title {
            color: var(--primary-red);
        }

        .event-btn {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            font-size: 13px;
            border: 1px solid var(--secondary);
            width: 150px;
            padding: 10px;
            text-align: center;
            letter-spacing: 1px;
/*            background: #dc3545;*/
            border-radius: 0px;
            color:var(--black);
        }

        .event-btn:hover {
            color:var(--black);
            border: 1px solid var(--secondary);
            background: var(--secondary);
        }

        @media (max-width: 768px) {
            .event-card {
                flex-direction: column;
                height: auto;
            }

            .event-image {
                width: 100%;
                height: 160px;
            }

            .event-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .whychoose-section-title {
                width: 100%;
            }
            .banner-section .banner-title {
	           font-size: 22px;;
            }
        }


/*event*/


/*initiative card*/
.initiative-card{
    border:1px solid rgba(0,0,0,.2)!important;
}
.initiative-card .text-success{
    color: var(--secondary) !important;
}
/*initiative card*/


/*donate*/
.donation-container {
    padding: 40px 20px;
}

.donation-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
/*    margin-bottom: 30px;*/
    border: 1px solid rgba(0,0,0,.1);
    padding: 10px;
    height:100%;
}

.image-container {
    position: relative;
    width: 100%;
/*    height: 200px;*/
    overflow: hidden;
}

.donation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-area {
    padding: 10px 0px 0px 0px;
    position: relative;
}

.progress-circle {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 3px solid #FFD700;
    z-index: 2;
}

.donation-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.donation-stats {
    display: flex;
    justify-content: space-between;
/*    margin-bottom: 25px;*/
}

.stat-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-label {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.stat-amount {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.progress-bar-container {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    margin: 20px 0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #000;
    transition: width 0.8s ease;
    border-radius: 2px;
}

.donate-button {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.donate-button:hover {
    background: #dc3545;
    color: #fff;
}
/*donate*/

.breadcrumb-area {
    padding: 5px 0;
    border-bottom: 1px solid #e9e9e9;
    background-color: #fafafa;
}
.breadcrumb {
    background-color: transparent;
    padding: 5px 0;
    margin-bottom: 0;
}

.breadcrumb li {
    position: relative;
    margin-right: 5px;
}

.breadcrumb li a {
    text-transform: capitalize !important;
    color: #888;
    padding-right: 1px;
    font-size: 16px;
    text-decoration: none;
}



/*volunteer section*/
.volunteer-section {
            background: white;
            padding: 80px 0;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 600px;
        }
        
        .grid-image {
            border-radius: 16px;
            overflow: hidden;
        }
        
        .grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) brightness(0.7);
        }
        
        .grid-image.large {
            grid-row: span 2;
        }
        
        .content-section {
            padding-left: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 600px;
        }
        
        .section-badge {
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }
        
        .section-badge::before {
            content: '— ';
            color: var(--secondary);
        }
        
        .main-title {
            color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
        }
        
        .description-text {
            color: #000;
            line-height: 1.6;
        }
        
        .volunteer-btn {
            background: #ff8c00;
            color: #000;
            border: none;
            padding: 18px 36px;
            border-radius: 8px;
            font: 700 15px 'Inter';
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
            transition: all 0.3s ease;
        }
        
        .volunteer-btn:hover {
            background: #e67e00;
            color: #000;
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .content-section {
                padding-left: 0;
                padding-top: 40px;
                height: auto;
                text-align: center;
            }
            
            .main-title {
                font-size: 3rem;
            }
            
            .image-grid {
                height: 500px;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .image-grid {
                height: 400px;
            }
            
            .volunteer-btn {
                width: 100%;
                max-width: 300px;
            }
        }
        .volunteer-section .btn-red {
    background-color: var(--secondary);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 20px;
    text-decoration: none;
    display: inline-block;
    width: 250px;
}
/*volunteer section*/


/*program*/
.btn-program {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            font-size: 13px;
            border: 1px solid var(--secondary);
            width: 150px;
            padding: 10px;
            text-align: center;
            letter-spacing: 1px;
            border-radius: 0px;
            color:var(--black);
            width:100%;
            border-radius: 25px;
        }

        .btn-program:hover {
            color:var(--black);
            border: 1px solid var(--secondary);
            background: var(--secondary);
        }
        .skill-section .card-title{
            font-weight: 600;
        }
/*program*/

/* WhatsApp Fixed Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1050;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 28px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: white;
            background: #128c7e;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn:focus {
            outline: none;
            color: white;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-btn {
                width: 55px;
                height: 55px;
                font-size: 24px;
                bottom: 15px;
                right: 15px;
            }
        }


