/* Reset & Base Premium Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; /* Standard Premium Font */
    background-color: black; 
    color: white; 
    overflow-x: hidden;
}

/* 1. Immersive Hero Background */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Yahan Bags.webp ko background mein set kiya gaya hai */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Images/cover_photo_adhirith.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Layout fix */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 2. Layering Content Above the Image */
.hero-content {
    z-index: 10; /* Float above everything */
    padding-top: 100px; /* Space for the large header */
}

/* 3. Pre-Title (Small gold/champagne text) */
.hero-content p.pre-title {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    color: #C5A059; /* Subtle gold accent */
    margin-bottom: 15px;
    font-weight: 500;
}

/* 4. The Large Heading (Matches reference exactly) */
.hero-content h1 {
    font-family: 'Playfair Display', serif; /* Critical Luxury Font */
    /* Clamp: Small-screen-min, Pref-viewport-size, Large-screen-max */
    font-size: clamp(3rem, 7vw, 6rem); 
    line-height: 1.1;
    color: white;
    margin-bottom: 3rem !important;
}

/* 5. The Luxury Button */
.btn-discovery {
    display: inline-block;
    padding: 18px 50px;
    
    /* Glossy white background */
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    
    color: black; /* Text ka color black */
    border: 2px solid #C5A059; /* Gold border */
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    
    /* Smooth transition */
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

/* Hover Effect: Gold Background & Royal Blue Text */
.btn-discovery:hover {
    background: #C5A059; /* Gold background */
    color: #002366;    /* Royal Blue text */
    border: 2px solid #002366; /* Border bhi blue ho jayega premium look ke liye */
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* 6. Floating, Fixed Header */
/* Container for the whole navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 10px 5% 0px 5% !important;/* Padding thodi kam ki hai taaki logo top edge se touch na ho */
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Ensure the logo area stays flush to the left */
.logo-area {
    display: flex;
    align-items: center;
}

/* Adjust size to match your reference exactly */
.logo-image {
    height: 120px;  
    width: auto;
    display: block;
}
/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    color: white; /* Default color */
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    
    /* Smooth transition effect */
    transition: all 0.3s ease-in-out; 
}

/* Hover effect */
.nav-links a:hover {
    color: #002366; /* Royal Blue color */
    /* Optional: Thoda sa shadow bhi de sakte hain premium look ke liye */
    text-shadow: 0 0 8px rgba(0, 35, 102, 0.5);
}
/* Dropdown Wrapper */
.dropdown { position: relative; display: inline-block; }

/* Dropdown Content (Hidden by default) */
/* Dropdown Content (White Background) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    /* Off-white background */
    background-color: #fdfdfd; 
    min-width: 260px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    list-style: none;
    border-top: 2px solid #C5A059;
    padding: 5px 0;
}

/* Links inside Dropdown */
.dropdown-content li a {
    padding: 12px 20px;
    display: block;
    /* Default Royal Blue color */
    color: #002366; 
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect: Gold background with White/Blue text */
.dropdown-content li a:hover {
    color: #fff;            /* Text white ho jayega */
    background-color: #C5A059; /* Gold background */
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


.about-us {
    padding: 100px 8%;
    background-color: #fcfbf7; /* Premium Warm Off-White Background */
    color: #222222; /* Dark Charcoal Text for perfect readability */
}

.about-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    padding: 50px;
    background: #ffffff; /* Clean White Inside Cards */
    border: 1px solid rgba(197, 160, 89, 0.3); /* Subtle Gold Border */
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); /* Soft Shadow */
}

.about-card:hover {
    border-color: #C5A059; /* Bright Gold Accent Border on Hover */
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15); /* Elegant Gold Ambient Glow */
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    color: #9A7B3E; /* Deep Royal Gold for Headers */
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-card p, .strength-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #444444; /* Clean contrast grey for reading */
    font-family: 'Montserrat', sans-serif;
}

.strength-list {
    list-style: none; /* Bullet dots ko clean karne ke liye */
}

.strength-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.strength-list li span {
    color: #C5A059; /* Checkmark icon in Gold */
    margin-right: 12px;
    font-weight: bold;
}
/* Responsive adjustment for mobiles */
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
}

/* Product Section - Refined, Premium & Royal Blue Theme */
.products-section {
    padding: 70px 30px;
    background: #ffffff;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-card {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    background: #ffffff;
    border-left: 14px solid #002366;
    border-radius: 8px;
    padding: 22px 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,35,102,0.18);
}

.product-card img {
    width: 320px;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    color: #002366;
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d8b46a;
}

.product-content > div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px !important;
    margin-top: 25px;
}

.data-box label {
    display: block;
    color: #002366;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-weight: 800;
    position: relative;
}

.data-box label::after {
    content: "";
    width: 38px;
    height: 3px;
    background: #C5A059;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.data-box span {
    color: #111;
    font-size: 18px;
    line-height: 1.45;
    display: block;
} 
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        padding: 20px;
    }

    .product-card img {
        width: 100%;
        height: 220px;
    }

    .product-content h3 {
        font-size: 24px;
    }

    .product-content > div {
        grid-template-columns: 1fr;
    }
    .feature-card{
    background:transparent;
    box-shadow:none;
}

.feature-card img{
    mix-blend-mode: multiply;
}
}
.features-section{
    padding:120px 8%;
    background:#fdfbf8;
    position:relative;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:80px;
}

.section-header span{
    color:#0a4db8;
    letter-spacing:4px;
    font-size:13px;
    font-weight:700;
}

.section-header h2{
    font-family:'Playfair Display', serif;
    font-size:70px;
    color:#002b6b;
    margin:15px 0;
}

.section-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}


.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
}

.feature-item{
    text-align:center;
}

.feature-item:nth-child(5){
    grid-column:2;
}

.feature-item:nth-child(6){
    grid-column:3;
}

.icon-wrap{
    width:140px;
    height:140px;
    margin:auto;
    border-radius:25px; /* square with rounded corners */
    
    background:linear-gradient(
        135deg,
        #0a2f6b,
        #003b8f
    );

    border:2px solid rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 15px 35px rgba(0,27,84,.25),
        inset 0 1px 2px rgba(255,255,255,.15);

    transition:.4s ease;
}

.icon-wrap:hover{
    transform:translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0,27,84,.35);
}
.features-section{
    padding:120px 8%;
    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f5f8ff
    );
}
.feature-item h3{
    color:#002b6b;
    font-size:28px;
    font-family:'Playfair Display', serif;
    margin-top:20px;
}

.feature-item p{
    color:#666;
    margin-top:12px;
    line-height:1.8;
}

@media(max-width:992px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:55px;
    }
}

@media(max-width:768px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .icon-wrap{
        width:120px;
        height:120px;
    }

    .icon-wrap img{
        width:65px;
        height:65px;
    }

    .section-header h2{
        font-size:45px;
    }

    .feature-item h3{
        font-size:24px;
    }
}
.brochure-section{
    padding:100px 5%;
    background:#f8f9fc;
}

.brochure-section h2{
    text-align:center;
    color:#002366;
    font-size:42px;
    margin-bottom:50px;
    font-family:'Playfair Display',serif;
}

.brochure-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.brochure-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.brochure-card img{
    width:100%;
    display:block;
}

.brochure-card a{
    display:block;
    margin:20px;
    text-align:center;
    background:#002366;
    color:#fff;
    padding:15px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.brochure-card a:hover{
    background:#C5A059;
}
/* =========================
   Products Page Hero
========================= */

.products-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    text-align: center;
    color: #ffffff;

    background:
        linear-gradient(
            rgba(0, 35, 95, 0.88),
            rgba(0, 75, 170, 0.82)
        ),
        url("../Images/cover_photo_adhirith.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-hero-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.products-hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 9px 18px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.1);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products-hero h1 {
    margin: 0 0 20px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
}

.products-hero p {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 430px;
        padding: 100px 18px 60px;
    }

    .products-hero h1 {
        font-size: 44px;
    }

    .products-hero p {
        font-size: 16px;
    }
}

/* =========================
   Admin Dashboard
========================= */

.admin-wrapper {
    min-height: 100vh;
    display: flex;
    background: #f4f7fb;
    font-family: Arial, sans-serif;
    color: #1f2937;
}

.admin-sidebar {
    width: 250px;
    min-height: 100vh;
    padding: 30px 20px;
    background: #062b64;
    color: #ffffff;
}

.admin-logo {
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 700;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-menu a {
    padding: 13px 15px;
    border-radius: 8px;
    color: #dbeafe;
    text-decoration: none;
    transition: 0.2s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
    background: #0d5eb8;
    color: #ffffff;
}

.admin-main {
    flex: 1;
    padding: 35px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-topbar h1 {
    margin: 0 0 8px;
    color: #062b64;
    font-size: 34px;
}

.admin-topbar p {
    margin: 0;
    color: #64748b;
}

.admin-view-site,
.admin-primary-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    background: #0d5eb8;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card,
.admin-content-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.admin-stat-card {
    padding: 24px;
}

.admin-stat-card span {
    color: #64748b;
    font-size: 14px;
}

.admin-stat-card h2 {
    margin: 12px 0 8px;
    color: #0d5eb8;
    font-size: 36px;
}

.admin-stat-card p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.admin-content-card {
    padding: 25px;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-card-header h2 {
    margin: 0 0 6px;
    color: #062b64;
}

.admin-card-header p {
    margin: 0;
    color: #64748b;
}

.admin-empty-state {
    margin-top: 25px;
    padding: 50px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #94a3b8;
    text-align: center;
}

@media (max-width: 900px) {
    .admin-sidebar {
        width: 210px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .admin-wrapper {
        display: block;
    }

    .admin-sidebar {
        width: 100%;
        min-height: auto;
    }

    .admin-main {
        padding: 22px 15px;
    }

    .admin-topbar,
    .admin-card-header {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* =========================
   Admin Product Form
========================= */

.admin-product-form {
    width: 100%;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
}

.admin-form-group label {
    margin-bottom: 9px;
    color: #163865;
    font-size: 14px;
    font-weight: 700;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d7e0eb;
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    color: #1f2937;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
    box-sizing: border-box;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #1768bd;
    box-shadow: 0 0 0 3px rgba(23, 104, 189, 0.12);
}

.admin-form-group textarea {
    resize: vertical;
}

.admin-form-group small {
    margin-top: 7px;
    color: #8290a6;
    font-size: 12px;
}

.admin-full-width {
    margin-bottom: 22px;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #e5eaf1;
}

.admin-cancel-button,
.admin-submit-button {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.admin-cancel-button {
    border: 1px solid #ccd6e3;
    background: #ffffff;
    color: #506079;
}

.admin-submit-button {
    border: none;
    background: #1167bd;
    color: #ffffff;
}

.admin-submit-button:hover {
    background: #0a539c;
}

@media (max-width: 700px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .admin-cancel-button,
    .admin-submit-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
.admin-success-box {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid #b7e4c7;
    border-radius: 8px;
    background: #eaf8ef;
    color: #237a3b;
    font-size: 14px;
    font-weight: 600;
}

.admin-error-box {
    margin-bottom: 22px;
    padding: 15px 18px;
    border: 1px solid #f1b8b8;
    border-radius: 8px;
    background: #fff1f1;
    color: #a12b2b;
}

.admin-error-box ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-products-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.admin-products-table th,
.admin-products-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5eaf1;
    text-align: left;
    vertical-align: middle;
}

.admin-products-table th {
    background: #f6f8fb;
    color: #41526b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admin-products-table td {
    color: #4b596d;
    font-size: 14px;
}

.admin-product-thumbnail {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
}

.admin-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: #edf1f6;
    color: #8b97a8;
    font-size: 10px;
    text-align: center;
}

.admin-status {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.admin-status.active {
    background: #e7f7ed;
    color: #248248;
}

.admin-status.inactive {
    background: #fbe9e9;
    color: #b53a3a;
}