BLACKSITE
:
216.73.217.148
:
172.93.223.125 / www.geeteetravels.com
:
Linux ubuntu 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
:
/
home
/
geeteetravels
/
public_html
/
Upload File:
files >> /home/geeteetravels/public_html/landing_page.php
<?php /** * Landing Page Template * Converted from design images for Geetee Travels */ $currentPage = 'landing'; include 'includes/header.php'; ?> <style> /* Landing Page Specific Styles */ :root { --primary-blue: #004aad; --dark-text: #333333; --light-grey: #666666; --font-main: 'Montserrat', sans-serif; } .landing-hero { padding: 80px 0; background: #ffffff; overflow: hidden; display: flex; align-items: center; min-height: 60vh; } .hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; } .hero-image-side { flex: 1; position: relative; max-width: 55%; } .hero-image-side img { width: 130%; /* Slight overflow as in original design */ height: auto; object-fit: contain; margin-left: -15%; } .hero-content-side { flex: 1; padding-left: 20px; } .hero-title { font-family: var(--font-main); font-weight: 800; font-size: 42px; line-height: 1.2; color: var(--primary-blue); text-transform: uppercase; margin-bottom: 20px; letter-spacing: -1px; } .hero-subtitle { font-family: var(--font-main); font-weight: 400; font-size: 20px; color: var(--dark-text); margin-bottom: 35px; letter-spacing: 0.5px; } .book-now-btn { display: inline-flex; align-items: center; gap: 15px; text-decoration: none; color: var(--primary-blue); font-weight: 700; font-size: 16px; text-transform: uppercase; transition: all 0.3s ease; } .btn-icon-circle { width: 45px; height: 45px; background: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; position: relative; z-index: 1; } .btn-icon-circle::before { content: ''; position: absolute; width: 55px; height: 55px; border: 1px solid var(--primary-blue); border-radius: 50%; z-index: -1; } .book-now-btn:hover { color: #003380; transform: translateX(5px); } /* Fleet Section Styles */ .fleet-section { padding: 80px 0; background: #ffffff; text-align: center; } .fleet-header { margin-bottom: 60px; } .fleet-header h2 { font-weight: 800; font-size: 32px; color: #000; text-transform: uppercase; margin-bottom: 10px; } .fleet-header p { color: var(--primary-blue); font-weight: 700; font-size: 24px; } .fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: end; } .fleet-item { padding: 20px; transition: transform 0.4s ease; } .fleet-item:hover { transform: translateY(-10px); } .fleet-image { width: 100%; height: auto; margin-bottom: 20px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); } .fleet-name { color: var(--primary-blue); font-weight: 800; font-size: 18px; text-transform: uppercase; margin-top: 15px; } /* Responsive Adjustments */ @media (max-width: 991px) { .hero-flex { flex-direction: column; text-align: center; } .hero-image-side { max-width: 100%; margin-bottom: 40px; } .hero-image-side img { width: 100%; margin-left: 0; } .hero-content-side { padding-left: 0; } .hero-title { font-size: 32px; } .fleet-grid { grid-template-columns: 1fr; gap: 50px; } } </style> <div class="landing-page-wrapper"> <!-- Hero Section --> <section class="landing-hero"> <div class="container"> <div class="hero-flex"> <div class="hero-image-side"> <img src="images/CAMRY.svg" alt="Luxury Car - Camry" onerror="this.src='images/tcamry.jpg'"> </div> <div class="hero-content-side"> <h1 class="hero-title">“EXPERIENCE LUXURY <br> TRAVEL ACROSS INDIA”</h1> <p class="hero-subtitle">Chauffuer-Driven Premium Cars For Your Journey</p> <a href="enquir.php" class="book-now-btn"> <div class="btn-icon-circle"> <i class="fa fa-chevron-right"></i> </div> BOOK NOW </a> </div> </div> </div> </section> <!-- Fleet Section --> <section class="fleet-section"> <div class="container"> <div class="fleet-header"> <h2>OUR PREMIUM FLEET</h2> <p>Select Your Ride</p> </div> <div class="fleet-grid"> <!-- GLS 450 --> <div class="fleet-item"> <img src="images/GLS_450.svg" alt="Mercedes GLS 450" class="fleet-image" onerror="this.src='images/mercedes-gls.png'"> <div class="fleet-name">GLS 450</div> </div> <!-- MAYBACH S-580 --> <div class="fleet-item"> <img src="images/MAYBACH_S_580.png" alt="Maybach S-580" class="fleet-image" onerror="this.src='images/MAYBACH.svg'"> <div class="fleet-name">MAYBACH S-580</div> </div> <!-- S-CLASS --> <div class="fleet-item"> <img src="images/S_CLASS.svg" alt="Mercedes S-Class" class="fleet-image" onerror="this.src='images/Mercedes-S-Class-370x192.png'"> <div class="fleet-name">S-CLASS</div> </div> </div> </div> </section> </div> <?php include 'includes/footer.php'; ?>