/* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    
    html {
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
    }
    
    body {
      background-color: #f7fcf8;
      color: #1a3324;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    button {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }
    
    input, select, textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      max-width: 100%;
    }

    /* HEADER — With New Animated Logo */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 100vw;
      background: #ffffff;
      border-bottom: 1px solid #e6e6e6;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-sizing: border-box;
    }

    /* Logo Styles */
    .logo {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-shrink: 0;
      max-width: calc(100vw - 100px);
    }
    
    .logo-img {
      width: 80px;
      height: auto;
      max-width: none;
      display: block;
      flex-shrink: 0;
    }
    
    .logo-text {
      white-space: nowrap;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    .logo-text .sarkar,
    .logo-text .travels {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 76px;
      font-weight: 900;
      line-height: 1;
      display: inline-block;
    }
    
    .logo-text .sarkar {
      color: #0dbf1a;
    }
    
    .logo-text .travels {
      color: #000;
      margin-left: 6px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
      position: relative;
      flex-shrink: 0;
    }
    
    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: #1a3324;
      transition: all 0.3s;
      border-radius: 3px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
						
    /* Navigation */
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      font-size: 16px;
      font-weight: 500;
      color: #1a3324;
      padding: 6px 0;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #3dbf62;
    }

    /* Hero / Booking Section */
    .hero {
      margin-top: 0;
      padding: 120px 40px 80px;
      background: url("images/car.jpg") center/cover no-repeat fixed;
      position: relative;
      color: #fff;
      min-height: 600px;
      background-attachment: fixed;
      background-position: center center;
      background-size: cover;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
   
    }
    .hero-content {
      position: relative;
      max-width: 600px;
      margin: auto;
      text-align: center;
	  color: #ffffff;  /* Changed to white */
    }
    .hero-content h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
    }
   .hero-content p {
	font-size: 20px;
	margin-bottom: 40px;
	line-height: 1.4;
	color: #ffffff;  /* Changed to white */
	}

    /* Booking Form */
    .search-form {
      position: relative;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 800px;
      margin: auto;
      z-index: 1;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .search-form label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #1a3324;
    }
    .search-form input, .search-form select {
      padding: 10px 12px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .search-form button {
      grid-column: span 2;
      padding: 12px 22px;
      background: #3dbf62;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      transition: background 0.3s;
    }
    .search-form button:hover {
      background: #2e9b4f;
    }

    /* Cars Section */
    .section {
      padding: 80px 40px;
      text-align: center;
    }
    .section h2 {
      font-size: 34px;
      margin-bottom: 40px;
      color: #1e4b31;
      font-weight: 700;
    }
    .cars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }
    .car-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .car-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .car-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .car-card .info {
      padding: 20px;
    }
    .car-card .info h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #1e4b31;
    }
    .car-card .info p {
      font-size: 15px;
      margin-bottom: 16px;
      color: #555;
    }
    .car-card .rent-btn {
      padding: 10px 20px;
      background: #3dbf62;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .car-card .rent-btn:hover {
      background: #2e9b4f;
    }

    /* Features */
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 40px;
    }
    .feature {
      flex: 1 1 220px;
      max-width: 280px;
      text-align: center;
    }
    .feature-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #3dbf62;
    }
    .feature h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #1e4b31;
    }
    .feature p {
      font-size: 14px;
      color: #555;
    }

    /* Footer */
    footer {
      background: #3dbf62;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      margin-top: 60px;
      width: 100%;
      max-width: 100vw;
      box-sizing: border-box;
      overflow-x: hidden;
    }
    footer p {
      font-size: 14px;
    }
    footer table {
      width: 100%;
      max-width: 100%;
      table-layout: auto;
    }
    footer td {
      padding: 10px;
      vertical-align: top;
    }
    /* footer {
    background-image: url('images/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
    color: white;
} */

    /* RESPONSIVE DESIGN */
    
    /* Tablets and below */
    @media (max-width: 1024px) {
      .logo-text .sarkar,
      .logo-text .travels {
        font-size: 48px;
      }
      
      .logo-img {
        width: 60px;
      }
      
      header {
        padding: 15px 25px;
      }
      
      nav ul {
        gap: 20px;
      }
    }
    
    /* Mobile devices */
    @media (max-width: 768px) {
      header {
        padding: 12px 15px;
        max-width: 100vw;
      }
      
      .logo {
        gap: 10px;
      }
      
      .logo-img {
        width: 45px;
      }
      
      /* Hide logo text on mobile to prevent overflow */
      .logo-text {
        display: none;
      }
      
      /* Mobile Menu Toggle */
      .mobile-menu-toggle {
        display: flex;
      }
      
      /* Mobile Navigation */
      nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #ffffff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 20px 0;
        overflow-y: auto;
      }
      
      nav.active {
        right: 0;
      }
      
      nav ul {
        flex-direction: column;
        gap: 0;
      }
      
      nav ul li {
        border-bottom: 1px solid #e6e6e6;
      }
      
      nav ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 16px;
      }
      
      /* Hero Section */
      .hero {
        padding: 100px 20px 60px;
        background-attachment: scroll !important;
        min-height: 500px;
      }
      
      .hero-content {
        max-width: 100%;
        padding: 0 10px;
      }
      
      .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
      }
      
      .hero-content p {
        font-size: 16px;
        line-height: 1.5;
      }
      
      /* Search Form */
      .search-form {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        margin: 0;
      }
      
      .search-form input,
      .search-form select {
        width: 100%;
        font-size: 16px;
        padding: 12px;
      }
      
      .search-form button {
        grid-column: span 1;
        width: 100%;
        padding: 14px;
        font-size: 16px;
      }
      
      /* Sections */
      .section {
        padding: 50px 20px;
      }
      
      .section h2 {
        font-size: 26px;
        margin-bottom: 30px;
      }
      
      .cars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
      }
      
      .car-card {
        width: 100%;
      }
      
      .car-card img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
      }
      
      /* Features */
      .features {
        gap: 30px;
        flex-direction: column;
      }
      
      .feature {
        flex: 1 1 100%;
        max-width: 100%;
      }
      
      /* Footer */
      footer {
        padding: 30px 15px;
      }
      
      footer table {
        display: block;
        overflow-x: auto;
      }
      
      footer tr {
        display: flex;
        flex-direction: column;
      }
      
      footer td {
        display: block;
        width: 100% !important;
        padding: 15px 5px;
        text-align: center;
      }
      
      footer td img {
        margin: 0 auto;
      }
      
      footer .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }
      
      footer .footer-section {
        width: 100%;
      }
    }
    
    /* Small mobile devices */
    @media (max-width: 480px) {
      .logo-text .sarkar,
      .logo-text .travels {
        font-size: 24px;
      }
      
      .logo-img {
        width: 35px;
      }
      
      .logo {
        gap: 8px;
      }
      
      header {
        padding: 10px 15px;
      }
      
      nav {
        width: 200px;
      }
      
      .hero-content h1 {
        font-size: 24px;
        padding: 0 5px;
      }
      
      .hero-content p {
        font-size: 14px;
        padding: 0 5px;
      }
      
      .hero {
        min-height: 450px;
        padding: 80px 15px 50px;
      }
      
      .section {
        padding: 40px 15px;
      }
      
      .section h2 {
        font-size: 22px;
      }
      
      .search-form {
        padding: 15px;
      }
      
      .search-form input,
      .search-form select {
        font-size: 16px;
      }
      
      .cars-grid {
        padding: 0 5px;
      }
      
      .car-card {
        padding: 15px;
      }
      
      .car-card h3 {
        font-size: 18px;
      }
      
      .car-card .price {
        font-size: 18px;
      }
      
      .car-card button {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      footer {
        padding: 20px 10px;
      }
      
      footer td {
        font-size: 13px;
        padding: 10px 5px;
      }
      
      footer span {
        font-size: 18px !important;
      }
    }