
        /* =========================
           GLOBAL
        ========================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #efefef;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP HEADER
        ========================= */
        .top-bar {
            width: 100%;
            background: #1e1e1e;
            padding: 16px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-left {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .top-left a {
            color: #d4af37;
            font-size: 16px;
        }

        .top-left i {
            color: #fff;
            margin-right: 8px;
        }

        /* =========================
           NOTICE BAR
        ========================= */
        .notice-bar {
            width: 100%;
            background: #1e1e1e;
            overflow: hidden;
            white-space: nowrap;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .notice-track {
            display: inline-block;
            animation: marquee 18s linear infinite;
        }

        .notice-track span {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            padding-right: 120px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* =========================
           NAVBAR
        ========================= */
        .navbar {
            width: 100%;
            background: #1e1e1e;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            position: relative;
        }

        .logo {
            position: absolute;
            left: 5%;
        }

        .logo img {
            width: 130px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            padding: 30px 0;
        }

        .nav-links a {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            position: relative;
            transition: .3s;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: .3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }

        /* =========================
           BANNER
        ========================= */
        .main-banner {
            position: relative;
            width: 100%;
            min-height: 80vh;
            background: url('./wp-content/themes/rentalx/images/beach-bg.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0px 6%;
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background-image: url(./wp-content/themes/rentalx/Untitled\ design\ \(66\).webp);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        .main-banner .container-fluid {
            position: relative;
            z-index: 2;
        }

        .main-banner-text h1 {
            color: #fff;
            font-size: 72px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .main-banner-text p {
            color: #fff;
            font-size: 22px;
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 650px;
        }

        .banner-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .call-btn,
        .whatsapp-btn {
            padding: 18px 35px;
            border-radius: 8px;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: .3s;
        }

        .call-btn {
            background: #ff6600;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .call-btn:hover,
        .whatsapp-btn:hover {
            transform: translateY(-5px);
            color: #fff;
        }

        /* =========================
           CAR SLIDER
        ========================= */
        .car-slider {
            position: relative;
            width: 100%;
            height: 550px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .car-slide {
            position: absolute;
            width: 100%;
            max-width: 800px;
            opacity: 0;
            transition: all 1s ease;
            transform: translateX(120px);
            filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.5));
        }

        .car-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* =========================
           ABOUT SECTION
        ========================= */
        .about-section {
            width: 100%;
            padding: 16px 1%;
            background: #f7f7f7;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            display: block;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: .4s;
            height: 511px;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content {
            padding-left: 40px;
        }

        .about-subtitle {
            display: inline-block;
            color: #d4af37;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content h2 {
            font-size: 52px;
            line-height: 1.2;
            font-weight: 800;
            color: #1e1e1e;
            margin-bottom: 25px;
        }

        .about-content p {
            font-size: 18px;
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 35px;
            margin-bottom: 40px;
        }

        .feature-box {
            background: #fff;
            padding: 18px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: .3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box i {
            width: 50px;
            height: 50px;
            background: #1e1e1e;
            color: #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .feature-box span {
            font-size: 17px;
            font-weight: 600;
            color: #1e1e1e;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 35px;
            background: #1e1e1e;
            color: #fff;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 700;
            transition: .3s;
        }

        .about-btn:hover {
            background: #d4af37;
            color: #111;
        }

        /* =========================
           CAR AREA STYLES (preserved)
        ========================= */
        .car-area {
            position: relative;
        }

        .car-item {
            background: white;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 25px;
            box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
            transition: all .5s ease-in-out;
            border: 1px solid #fff;
        }

        .car-item:hover {
            border: 1px solid #d4af37;
        }

        .car-content {
            padding: 10px 10px 6px;
        }

        .car-img {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .car-img img {
            border-radius: 10px;
            background: #fff;
            transition: all .3s ease-in-out;
            width: 100%;
        }

        .car-item:hover .car-img img {
            transform: scale(1.1);
        }

        .car-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        .car-top .car_price {
            float: right;
            color: #ff690f;
            font-weight: 700;
            font-size: 19px;
        }

        .price_start_lbl {
            font-size: 12px;
            font-weight: 400;
            color: #3a3a3a;
            line-height: 1;
        }

        .price_number {
            line-height: 1.5;
        }

        .car-top h3 {
            font-size: 19px;
            margin-bottom: 0px;
        }

        .car-rate {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .car-rate i {
            color: #11B76B;
        }

        .car-list {
            margin: 0;
            padding: 0;
        }

        .car-list li {
            display: inline-block;
            margin-right: 10px;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .car-list i {
            color: #d4af37;
            margin-right: 6px;
        }

        .car-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            gap: 15px;
        }

        .car-call-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 5px;
            background: #ff6600;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: .3s;
        }

        .car-call-btn:hover {
            background: #00275E;
            color: #fff;
        }

        .car-chat-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 5px;
            background: #26AF3B;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: .3s;
        }

        .car-chat-btn:hover {
            background: #00275E;
            color: #fff;
        }

        .car-area.list .car-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media all and (max-width:991px) {
            .car-area.list .car-item {
                flex-direction: column;
            }
        }

        /* =========================
           TESTIMONIAL SLIDER
        ========================= */
        .testimonial-premium-section {
            width: 100%;
            padding: 100px 6%;
            background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
            overflow: hidden;
            position: relative;
        }

      

        .testimonial-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .testimonial-header span {
            color: #d4af37;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: rgba(212, 175, 55, 0.15);
            padding: 6px 20px;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .testimonial-header h2 {
            color: #fff;
            font-size: 58px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .testimonial-header h2 span {
            background: transparent;
            color: #d4af37;
            padding: 0;
        }

        .testimonial-header p {
            color: #cfcfcf;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .testimonial-card-modern {
            background: #1e1e1e;
            border-radius: 30px;
            padding: 35px 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
            height: 100%;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card-modern:hover {
            transform: translateY(-12px);
            border-color: #d4af37;
            box-shadow: 0 35px 55px -15px rgba(212, 175, 55, 0.3);
        }

        .review-stars {
            display: flex;
            gap: 6px;
            margin-bottom: 25px;
        }

        .review-stars i {
            color: #d4af37;
            font-size: 18px;
        }

        .testimonial-text-modern {
            color: #e0e0e0;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid #d4af37;
        }

        .client-flex {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-top: 10px;
        }

        .client-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #d4af37;
            background: #2a2a2a;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .client-details .client-location {
            color: #d4af37;
            font-size: 14px;
            font-weight: 500;
        }

        .quote-icon-gold {
            position: absolute;
            right: 25px;
            bottom: 25px;
            font-size: 55px;
            color: rgba(212, 175, 55, 0.15);
            pointer-events: none;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #555;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: #d4af37;
            transform: scale(1.2);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #d4af37;
            background: rgba(30, 30, 30, 0.8);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #d4af37;
            color: #111;
        }

        /* =========================
           DESTINATION SECTION (ORIGINAL STYLE - UNCHANGED)
        ========================= */
        .destination-section {
            width: 100%;
            padding: 100px 6%;
            background: #111;
            position: relative;
            overflow: hidden;
        }

        .destination-heading {
            text-align: center;
            margin-bottom: 70px;
        }

        .destination-heading span {
            color: #d4af37;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .destination-heading h2 {
            color: #fff;
            font-size: 58px;
            font-weight: 800;
            margin-top: 15px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .destination-heading p {
            color: #cfcfcf;
            font-size: 18px;
            max-width: 750px;
            margin: auto;
            line-height: 1.8;
        }

        .destination-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            height: 420px;
            cursor: pointer;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.7s;
        }

        .destination-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            transition: .4s;
        }

        .destination-overlay h3 {
            color: #fff;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 18px;
            transform: translateY(20px);
            transition: .4s;
        }

        .destination-overlay a {
            width: max-content;
            padding: 14px 30px;
            background: #d4af37;
            color: #111;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            transition: .3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .destination-card:hover img {
            transform: scale(1.12);
        }

        .destination-card:hover .destination-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.25));
        }

        .destination-card:hover .destination-overlay h3,
        .destination-card:hover .destination-overlay a {
            transform: translateY(0);
            opacity: 1;
        }

        .destination-overlay a:hover {
            background: #fff;
            color: #111;
        }

        .heading_info {
            text-align: center;
            margin-bottom: 70px;
        }

        .heading_info h2 {
            font-size: 58px;
            font-weight: 800;
            color: #1e1e1e;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .heading_info h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -18px;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: #d4af37;
            border-radius: 10px;
        }

        .why-choose-section {
            width: 100%;
            padding: 100px 6%;
            background: #111;
            position: relative;
            overflow: hidden;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 70px;
        }

        .sub-title {
            color: #d4af37;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 3px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-heading h2 {
            color: #fff;
            font-size: 55px;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-heading h2 span {
            color: #d4af37;
        }

        .section-heading p {
            color: #cfcfcf;
            font-size: 18px;
            max-width: 800px;
            margin: auto;
            line-height: 1.8;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-box {
            background: #1e1e1e;
            padding: 45px 35px;
            border-radius: 20px;
            transition: .4s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .why-box:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: #d4af37;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .why-icon i {
            color: #111;
            font-size: 34px;
        }

        .why-box h3 {
            color: #fff;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .why-box p {
            color: #cfcfcf;
            line-height: 1.8;
            font-size: 16px;
        }

        /* =========================
           FOOTER SECTION (NEW)
        ========================= */
        .footer-section {
            background: #0a0a0a;
            padding: 70px 6% 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #d4af37;
        }

        .footer-col p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-logo {
            width: 140px;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #1e1e1e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            transition: .3s;
        }

        .social-links a:hover {
            background: #d4af37;
            color: #111;
            transform: translateY(-3px);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #aaa;
            transition: .3s;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #aaa;
            margin-bottom: 15px;
        }

        .footer-contact li i {
            color: #d4af37;
            width: 25px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
        }

        /* =========================
           FIXED SIDE SCROLL ICONS (Phone/WhatsApp)
        ========================= */
        .side-contact-icons {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .side-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            animation: bounce 2s infinite;
        }

        .side-icon.phone-icon {
            background: #ff6600;
        }

        .side-icon.whatsapp-icon {
            background: #25D366;
        }

        .side-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* =========================
           RESPONSIVE
        ========================= */
        @media(max-width:1200px) {
            .main-banner-text h1 { font-size: 55px; }
            .destination-heading h2 { font-size: 48px; }
            .testimonial-header h2 { font-size: 48px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media(max-width:991px) {
            .navbar { justify-content: space-between; padding: 20px 5%; }
            .logo { position: static; }
            .menu-toggle { display: block; }
            .nav-links {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: #1e1e1e; flex-direction: column; align-items: flex-start;
                padding: 30px 5%; display: none; gap: 25px; z-index: 999;
            }
            .nav-links.active { display: flex; }
            .main-banner { text-align: center; padding: 80px 5%; }
            .main-banner-text h1 { font-size: 45px; }
            .car-slider { height: 350px; }
            .destination-grid { grid-template-columns: repeat(2, 1fr); }
            .destination-heading h2 { font-size: 40px; }
            .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media(max-width:768px) {
            .top-bar { justify-content: center; text-align: center; }
            .main-banner-text h1 { font-size: 34px; }
            .car-slider { height: 250px; }
            .destination-section { padding: 80px 20px; }
            .destination-grid { grid-template-columns: 1fr; }
            .why-choose-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr;  }
            .footer-col h3::after { left: 50%; transform: translateX(-50%); }
            .footer-contact li { justify-content: center; }
            .social-links { justify-content: center; }
            .side-contact-icons { right: 15px; bottom: 20px; }
            .side-icon { width: 48px; height: 48px; font-size: 24px; }
        }
    .gallery-section{
    background:#f8f9fb;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:28px;
}

.gallery-subtitle{
    display:inline-block;
    color:#ff6b00;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s ease;
    display:block;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    opacity:0;
    transition:0.5s ease;
}

.gallery-overlay h4{
    color:#fff;
    font-size:24px;
    margin-bottom:5px;
    transform:translateY(20px);
    transition:0.4s ease;
}

.gallery-overlay span{
    color:#ddd;
    font-size:15px;
    transform:translateY(20px);
    transition:0.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-overlay h4,
.gallery-card:hover .gallery-overlay span{
    transform:translateY(0);
}

/* Responsive */
@media(max-width:991px){
    .section-title h2{
        font-size:34px;
    }

    .gallery-card img{
        height:280px;
    }
}

@media(max-width:576px){
    .section-title h2{
        font-size:28px;
    }

    .gallery-card img{
        height:250px;
    }

    .gallery-overlay{
        padding:18px;
    }

    .gallery-overlay h4{
        font-size:20px;
    }
}