* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fcfaf7;
      color: #1e2a2f;
      line-height: 1.5;
      overflow-x: hidden;
	  padding-top:80px;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =====  ANIMATIONS / REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.15, 1), transform 0.9s cubic-bezier(0.25, 0.1, 0.15, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== HEADER / NAV ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 16px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      transition: all 0.3s;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      color: #b76e2e;
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      font-weight: 500;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1e2a2f;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: #b76e2e;
    }

    .menu-icon {
      display: none;
      font-size: 1.8rem;
      color: #1e2a2f;
    }

    /* ===== HERO  (CINEMATIC) ===== */
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .slide {
      position:absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center ;
      opacity: 0;
      animation: slideAnimation 24s infinite;
      will-change: transform, opacity;
    }

    .slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(115deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    }

    .slide1 { background-image: url("../image/background.jpg"); animation-delay: 0s; }
    .slide2 { background-image: url("../image/bihar.jpg"); animation-delay: 8s; }
    .slide3 { background-image: url("../image/bihar1.jpg"); animation-delay: 16s; }

    @keyframes slideAnimation {
      0% { opacity: 0; transform: scale(1.02); }
      5% { opacity: 1; transform: scale(1); }
      30% { opacity: 1; transform: scale(1); }
      40% { opacity: 0; transform: scale(1.02); }
      100% { opacity: 0; transform: scale(1.02); }
    }

    .hero-content {
      position: absolute;
      bottom: 18%;
      left: 8%;
      max-width: 700px;
      color: white;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
      z-index: 10;
    }

    .hero-tagline {
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: 5rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .btn-group {
      display: flex;
      gap: 20px;
    }

    .btn {
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      transition: 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .btn-primary {
      background: #b76e2e;
      color: white;
      box-shadow: 0 8px 20px rgba(183, 110, 46, 0.4);
    }

    .btn-primary:hover {
      background: #9e5b24;
      transform: scale(1.05);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: white;
      color: #1e2a2f;
      border-color: white;
    }

    /* ===== section titles ===== */
    .section-header {
      text-align: center;
      margin: 80px 0 40px;
    }

    .section-header h2 {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: #4e5b61;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ===== CARDS (destinations, spiritual, etc) ===== */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
    }

    .card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s cubic-bezier(0.25, 0.1, 0.15, 1);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 30px 45px -12px rgba(183, 110, 46, 0.25);
    }

    .card-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .card-content {
      padding: 24px 20px 28px;
    }

    .card-content h3 {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .card-content p {
      color: #3e4a4f;
      font-weight: 400;
    }
	
    /* small cards for food / festivals */
    .mini-card {
      background: white;
      border-radius: 20px;
      padding: 24px 20px;
      text-align: center;
      box-shadow: 0 10px 25px -8px rgba(0,0,0,0.07);
      transition: transform 0.2s;
    }
    .mini-card i {
      font-size: 3rem;
      color: #b76e2e;
      margin-bottom: 16px;
    }

    
    /* trip planner form */
    .form-card {
      background: white;
      border-radius: 40px;
      padding: 48px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 24px;
    }

    .form-group {
      flex: 1 1 200px;
    }
	
    input, select, textarea {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid #ddd;
      border-radius: 40px;
      font-size: 1rem;
      background: #f9f7f4;
    }
	
	.submit-wrapper{
		text-align:center;
		margin:20px 0 25px 0;
	}
	
	.submit-button{
      padding:12px 30px;
      background-color:#b76e2e;
      color:white;
      border:none;
      border-radius:25px;
      font-size:16px;
      cursor:pointer;
      transition:0.3s;
	}
	
	.submit-button:hover{
		background-color:#e66a00;
	}
	
    .map-placeholder {
      background: #fff;
      border-radius: 32px;
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2d3f4b;
      font-weight: 600;
      background-size: cover;
      background-position: center;
    }

    footer {
      background:#3a2a1f;
      color: #ccc;
      padding: 60px 10% 30px;
      margin-top: 80px;
	  width:100%;
	  box-sizing:border-box;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
	  width:100%;
    }

    /* responsiveness */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .menu-icon { display: block; }
      .hero-title { font-size: 3.2rem; }
      .hero-tagline { font-size: 1.2rem; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .navbar { padding: 16px 20px; }
      .hero-content { left: 5%; }
      .btn-group { flex-direction: column; gap: 12px; width: 90%; }
      .btn { text-align: center; }
      .section-header h2 { font-size: 2.4rem; }
	}
	  
    .logo {
        display: flex;
        align-items: center;
		
     }
	.nav-logo {
		height:90px;
		width:auto;
	}
	


