﻿    :root {
      --primary-color: #004aad;
      --secondary-color: #25D366;
      --text-color: #333;
      --bg-light: #f9f9f9;
      --card-bg: #fff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--bg-light);
      color: var(--text-color);
    }
    header {
      background: var(--primary-color);
      color: #fff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    header img {
      height: 55px;
    }
    header .phone {
      font-size: 1.2em;
      font-weight: bold;
    }
    .banner {
      width: 100%;
      height: 350px;
      background: url('best-resorts-in-ecr-chennai.webp') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      font-size: 2.5em;
      font-weight: bold;
    }
    h1 {
      text-align: center;
      margin: 40px 0 20px;
      font-size: 2.2em;
      color: var(--primary-color);
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding-bottom: 40px;
    }
    .resort {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }
    .resort:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* Slider Styles */
    .slider {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
    }
    .slides {
      display: flex;
      transition: transform 0.4s ease;
      width: 100%;
      height: 100%;
    }
    .slides img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 6px 10px;
      cursor: pointer;
      border-radius: 50%;
      font-size: 16px;
    }
    .prev {left: 10px;}
    .next {right: 10px;}

    .resort-details {
      padding: 20px;
      flex-grow: 1;
    }
    .resort-details h2 {
      margin-bottom: 10px;
      font-size: 1.4em;
      color: var(--primary-color);
    }
    .resort-details p {
      margin: 6px 0;
      font-size: 0.95em;
    }
    .check-btn {
      background: #006CBA;
      color: #fff;
      text-align: center;
      padding: 14px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 0 0 12px 12px;
      transition: background 0.3s;
      font-size: 1em;
    }
    .check-btn:hover {
      background: #006CBA;
    }
    .info-section {
      width: 90%;
      max-width: 1100px;
      margin: 60px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .info-section h2 {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }
    .info-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .info-content img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }
    .info-content p {
      font-size: 1em;
      line-height: 1.7;
    }
    footer {
      background: #222;
      color: #ccc;
      padding: 40px 20px;
      text-align: center;
    }
    footer .footer-links {
      margin-bottom: 20px;
    }
    footer .footer-links a {
      color: #ccc;
      text-decoration: none;
      margin: 0 15px;
      transition: color 0.3s;
    }
    footer .footer-links a:hover {
      color: #fff;
    }
    footer p {
      font-size: 0.9em;
      margin-top: 10px;
    }
    @media(max-width:768px){
      .info-content{
        grid-template-columns: 1fr;
      }
    }