*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

/* HEADER */
header{
    background:#8b0000;
    color:white;
    padding:15px 0;
}

.container{
    width:90%;
    margin:auto;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h1{
    font-size:24px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li a:hover{
    color:#ffd700;
}

/* PAGE TITLE */
.page-title{
    background:#ddd;
    padding:25px 0;
    text-align:center;
}

.page-title h2{
    font-size:30px;
    color:#333;
}

/* SECTION */
section{
    padding:40px 0;
}

.card{
    background:white;
    padding:25px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    margin-bottom:20px;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:8px;
}

/* FORM */
form input, form textarea, form button{
    width:100%;
    padding:10px;
    margin-bottom:15px;
    font-size:16px;
}

form button{
    background:#8b0000;
    color:white;
    border:none;
    cursor:pointer;
}

form button:hover{
    background:#a40000;
}

/* FOOTER */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:15px 0;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

/* HEADER */
header{
    background:#8b0000;
    padding:15px 0;
}

.container{
    width:90%;
    margin:auto;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h1{
    color:white;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li a:hover{
    color:#ffd700;
}

/* HERO BACKGROUND IMAGE */
.hero{
    height:70vh;
    background:url("images/banner.jpg") no-repeat center center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    color:white;
    text-align:center;
    z-index:1;
}

.hero-content h2{
    font-size:40px;
    margin-bottom:10px;
}

.hero-content p{
    font-size:20px;
}

/* CARD */
section{
    padding:40px 0;
}

.card{
    background:white;
    padding:25px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

/* FOOTER */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:15px 0;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f4f4;
}

/* HEADER */
header{
    background:#7a0000;
    padding:15px 0;
}

.container{
    width:90%;
    margin:auto;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h1{
    color:white;
    font-size:26px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li a:hover{
    color:#ffd700;
}

/* HERO BACKGROUND — YOUR EXACT PATH */
.hero{
    height:85vh;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("file:///C:/Users/Administrator/Desktop/jyoti/j.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-box{
    color:white;
    padding:40px;
}

.hero-box h2{
    font-size:45px;
    margin-bottom:15px;
}

.hero-box p{
    font-size:20px;
    margin-bottom:25px;
}

.btn{
    background:#ffd700;
    color:black;
    padding:12px 28px;
    text-decoration:none;
    font-weight:bold;
    border-radius:30px;
}

.btn:hover{
    background:white;
}

/* CONTENT */
section{
    padding:50px 0;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/* FOOTER */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:15px 0;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: #f9f9f9;
}

/* Header */
header{
    background: #8b0000;
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 15px;
}

nav ul li{
    margin: 0 15px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active{
    text-decoration: underline;
}

/* Common container */
.container{
    width: 90%;
    margin: auto;
}

/* Page title */
.page-title{
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.page-title h2{
    color: #8b0000;
}

/* Gallery Section */
.gallery-section{
    margin: 40px auto;
}

.gallery-section h3{
    margin-bottom: 20px;
    color: #333;
    border-left: 5px solid #8b0000;
    padding-left: 10px;
}

/* Gallery grid */
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery img:hover{
    transform: scale(1.05);
}

/* Footer */
footer{
    background: #8b0000;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background: linear-gradient(to right,#fff5f5,#ffeaea);
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

.container{
    width:90%;
    margin:auto;
}

.page-title{
    text-align:center;
    padding:40px 0;
    background:#fff;
}
.page-title h2{
    color:#8b0000;
}

.gallery-section{
    margin:40px auto;
}
.gallery-section h3{
    margin-bottom:20px;
    border-left:5px solid #8b0000;
    padding-left:10px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* Card */
.card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}
.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.actions{
    display:flex;
    justify-content:space-between;
    padding:10px;
}

.actions button{
    border:none;
    font-size:20px;
    cursor:pointer;
    background:none;
}

.actions button.active{
    color:red;
}

footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
    margin-top:40px;
}
/* Common */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f9f9f9;
}

.container{
    width:90%;
    margin:auto;
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

/* Page Title */
.page-title{
    text-align:center;
    padding:60px 20px;
    color:#fff;
}
.about-bg{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
                url("images/about-bg.jpg");
    background-size:cover;
    background-position:center;
}
.page-title h2{
    font-size:36px;
}
.page-title p{
    font-size:18px;
    margin-top:10px;
}

/* About Section */
.about-section{
    margin:60px auto;
}

.about-card{
    background:#fff;
    padding:30px;
    margin-bottom:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.about-card h3{
    color:#8b0000;
    margin-bottom:15px;
}

.about-card p{
    line-height:1.7;
    color:#444;
    margin-bottom:15px;
}

.about-card ul{
    list-style:none;
    padding-left:0;
}
.about-card ul li{
    margin-bottom:10px;
    font-size:16px;
}

/* Highlight Card */
.highlight{
    background:linear-gradient(to right,#fff5f5,#ffecec);
}

/* Quote */
.quote-box{
    background:#8b0000;
    color:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    font-size:18px;
    margin-top:40px;
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
    margin-top:50px;
}
/* Common */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f7f7f7;
}

.container{
    width:90%;
    margin:auto;
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

/* Page Title */
.page-title{
    text-align:center;
    padding:70px 20px;
    color:#fff;
}
.services-bg{
    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("images/services-bg.jpg");
    background-size:cover;
    background-position:center;
}
.page-title h2{
    font-size:38px;
}
.page-title p{
    font-size:18px;
    margin-top:10px;
}

/* Services Section */
.services-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin:60px auto;
}

/* Service Card */
.service-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.2);
}

.service-card h3{
    color:#8b0000;
    margin-bottom:15px;
}

.service-card p{
    color:#444;
    line-height:1.6;
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
}
/* Common */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f8f8f8;
}

.container{
    width:90%;
    margin:auto;
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

/* Hero */
.page-title{
    text-align:center;
    padding:80px 20px;
    color:#fff;
}
.packages-bg{
    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("images/packages-bg.jpg");
    background-size:cover;
    background-position:center;
}
.page-title h2{
    font-size:40px;
}
.page-title p{
    margin-top:10px;
    font-size:18px;
}

/* Packages Section */
.packages-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin:60px auto;
}

/* Package Card */
.package-card{
    background:#fff;
    padding:35px 25px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.package-card h3{
    margin-bottom:15px;
    color:#8b0000;
}

.price{
    font-size:32px;
    font-weight:bold;
    margin:15px 0;
}
.price span{
    font-size:14px;
    color:#666;
}

.package-card ul{
    list-style:none;
    padding:0;
}
.package-card ul li{
    margin:12px 0;
    color:#444;
}

/* Special colors */
.silver{
    background:linear-gradient(to bottom,#ffffff,#f2f2f2);
}
.gold{
    background:linear-gradient(to bottom,#fff8e1,#ffe082);
}
.platinum{
    background:linear-gradient(to bottom,#f5f5f5,#e0e0e0);
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
}
/* Common */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f5f5f5;
}

.container{
    width:90%;
    margin:auto;
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

/* Hero */
.page-title{
    text-align:center;
    padding:90px 20px;
    color:#fff;
}
.booking-bg{
    background:
        radial-gradient(circle at top left, rgba(255,200,200,0.4), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.2), transparent 45%),
        linear-gradient(135deg,#8b0000,#b71c1c);
}
.page-title h2{
    font-size:40px;
}
.page-title p{
    margin-top:10px;
    font-size:18px;
}

/* Booking Section */
.booking-section{
    display:flex;
    justify-content:center;
    margin:60px auto;
}

/* Booking Card */
.booking-card{
    background:#fff;
    width:100%;
    max-width:420px;
    padding:35px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.booking-card h3{
    text-align:center;
    color:#8b0000;
    margin-bottom:25px;
}

.booking-card input,
.booking-card select{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:15px;
}

.booking-card input:focus,
.booking-card select:focus{
    outline:none;
    border-color:#8b0000;
}

.booking-card button{
    width:100%;
    padding:14px;
    background:#8b0000;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.booking-card button:hover{
    background:#a30000;
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
}
/* Common */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f4f4f4;
}

.container{
    width:90%;
    margin:auto;
}

/* Header */
header{
    background:#8b0000;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:15px;
}
nav ul li{
    margin:0 15px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}
nav ul li a.active,
nav ul li a:hover{
    text-decoration:underline;
}

/* Hero */
.page-title{
    text-align:center;
    padding:90px 20px;
    color:#fff;
    perspective:800px;
}

/* 3D Background */
.contact-bg{
    background:
        linear-gradient(135deg,#8b0000,#b71c1c),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.06) 0px,
            rgba(255,255,255,0.06) 2px,
            transparent 2px,
            transparent 10px
        );
    position:relative;
    overflow:hidden;
}

.contact-bg::before,
.contact-bg::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.12);
    transform:rotateX(45deg) rotateZ(45deg);
    filter:blur(2px);
}

.contact-bg::before{
    top:-80px;
    left:-80px;
}

.contact-bg::after{
    bottom:-80px;
    right:-80px;
}

.page-title h2{
    font-size:42px;
    transform:translateZ(40px);
}

.page-title p{
    font-size:18px;
    margin-top:10px;
    opacity:0.9;
}

/* Contact Section */
.contact-section{
    display:flex;
    justify-content:center;
    margin:70px auto;
}

/* Contact Card */
.contact-card{
    background:#fff;
    width:100%;
    max-width:450px;
    padding:40px;
    border-radius:18px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transform:translateY(-40px);
}

.contact-card h3{
    text-align:center;
    color:#8b0000;
    margin-bottom:25px;
}

.contact-card input,
.contact-card textarea{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:15px;
}

.contact-card textarea{
    resize:none;
    height:120px;
}

.contact-card input:focus,
.contact-card textarea:focus{
    outline:none;
    border-color:#8b0000;
}

/* Button */
.contact-card button{
    width:100%;
    padding:15px;
    background:linear-gradient(135deg,#8b0000,#b71c1c);
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.contact-card button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:15px;
}
/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:
        radial-gradient(circle at top right, rgba(255,215,0,0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(139,0,0,0.08), transparent 45%),
        linear-gradient(135deg,#fafafa,#f3f3f3);
    color:#333;
}

/* Header */
header{
    background:#8b0000;
}
.container{
    width:90%;
    margin:auto;
}
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    padding:16px;
}
nav ul li{
    margin:0 16px;
}
nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    letter-spacing:0.5px;
}
nav ul li a.active,
nav ul li a:hover{
    border-bottom:2px solid #ffd700;
}

/* Hero Section */
.page-title{
    text-align:center;
    padding:100px 20px;
    color:#fff;
}
.services-bg{
    background:
        linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
        linear-gradient(135deg,#8b0000,#b71c1c);
    position:relative;
}
.page-title h2{
    font-size:42px;
    letter-spacing:1px;
}
.page-title p{
    margin-top:12px;
    font-size:18px;
    opacity:0.95;
}

/* Services Section */
.services-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin:80px auto;
}

/* Service Card */
.service-card{
    background:
        linear-gradient(145deg,#ffffff,#f2f2f2);
    padding:35px;
    border-radius:16px;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.12);
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(to right,#8b0000,#ffd700);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
}

.service-card h3{
    color:#8b0000;
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    line-height:1.7;
    font-size:15.5px;
}

/* Footer */
footer{
    background:#8b0000;
    color:#fff;
    text-align:center;
    padding:16px;
    font-size:14px;
}
