/*
 * ROOT VARIABLES AND RESETS
 */
:root {
    --color-primary-dark: #333; /* Text color */
    --color-light-bg: #fff6ee; /* Main light beige background */
    --color-accent-beige: #D5B8A1; /* Button and arch shape color */
    --color-dark-beige: #8B7461; /* Logo and dark text color */
    --color-light-circle: #E7D5C7; /* Light circle shape color */

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Tenor Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary-dark);
    background-color: #fff; /* Header ke upar ka white area */
}

/* Global Container for Centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/*
 * 1. HEADER/NAVIGATION STYLES
 */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Optional: Halki si line */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark-beige);
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.primary-nav a {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.primary-nav a:hover {
    color: var(--color-accent-beige);
}

.contact-info p {
    font-size: 14px;
    color: var(--color-primary-dark);
}

.contact-info a {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: bold;
}


/*
 * 2. HERO/BANNER SECTION STYLES
 */
.hero-banner {
    background-color: var(--color-light-bg);
    padding: 80px 0 0; /* Top padding, neeche ki taraf image jaayegi */
    position: relative;
    overflow: hidden; /* Taaki decorative shapes corner se bahar na dikhe */
    min-height: 70vh;
}

.banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* LEFT TEXT CONTENT */
.banner-text-content {
    flex: 1;
    max-width: 45%; /* Image ke liye jagah chhodna */
    padding-bottom: 100px; /* Neeche se padding, taaki content upar ho */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-dark-beige);
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent-beige);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 25px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-dark-beige);
}

.description-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-dark-beige);
    line-height: 1.5;
    margin-top: 20px;
}

/* RIGHT IMAGE AND SHAPES */
.banner-image-area {
    position: relative;
    width: 55%;
    height: 650px; /* Ek fixed height image container ke liye */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.model-img {
    position: absolute;
    bottom: 0; /* Image ko banner ke bottom se attach karna */
    right: 0;
    width: 100%;
    width: 400px;
    height: auto;
    z-index: 10; /* Shapes ke upar rakhte hain */
    /* Image mein halki si roundness dene ke liye, jaisa ki photo mein hai */
    border-radius: 0 0 50% 50%;
}

/* DECORATIVE SHAPES (Arch, Circles) */

/* 1. Large Arch Shape (Right side, brown) */
.decorative-shape-arch {
    position: absolute;
    bottom: 0px; /* Thoda neeche shift kiya */
    right: 0;
    width: 65%;
    height: 600px;
    background-color: var(--color-accent-beige);
    /* Arch/Curve effect (Bottom left aur right corner ko gol karna) */
    border-radius: 50% / 0 0 100% 100%; 
    opacity: 0.8; /* Thodi transparency */
    z-index: 5;
}

/* 2. Large Light Circle (Left side, image ke peeche) */
.decorative-shape-circle-large {
    position: absolute;
    top: 50%;
    right: 35%; /* Image ke peeche shift */
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-color: var(--color-light-circle);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 4;
}

/* 3. Small Light Circle (Left side, text ke paas) */
.decorative-shape-circle-small {
    position: absolute;
    bottom: 80px;
    left: -50px; /* Left corner se thoda bahar */
    width: 150px;
    height: 150px;
    background-color: var(--color-light-circle);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1; /* Content ke peeche rakhte hain */
}

/*
 * 3. RESPONSIVE DESIGN (Optional, but recommended)
 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 55px;
    }
    .banner-text-content {
        max-width: 50%;
    }
    .banner-image-area {
        height: 550px;
    }
    .decorative-shape-arch {
        height: 600px;
        bottom: -50px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .primary-nav ul {
        gap: 15px;
    }
    .contact-info {
        display: none; /* Mobile par contact info chhupa diya */
    }
    
    .hero-banner {
        padding-top: 40px;
        min-height: auto;
    }

    .banner-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .banner-text-content {
        max-width: 100%;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 48px;
    }
    
    .banner-image-area {
        width: 100%;
        height: 450px;
        justify-content: center;
    }

    .model-img {
        max-width: 300px;
    }

    /* Decorative shapes ko adjust karna */
    .decorative-shape-arch {
        width: 100%;
        height: 500px;
        bottom: -50px;
        right: 0;
    }
    .decorative-shape-circle-large {
        display: none;
    }
    .decorative-shape-circle-small {
        bottom: 100px;
        left: 20px;
    }
}







/*
 * 3. ABOUT SECTION STYLES
 */
.about-section {
    padding: 50px 0;
    background-color: #fff; /* White background */
}

/* Use Grid for the main layout to align the two columns */
.about-container {
    display: grid;
    /* Grid layout: Left column (Image) will be 40% and Right column (Text) will be 60% */
    grid-template-columns: 40% 60%; 
    gap: 80px;
    align-items: flex-start; /* Content ko upar se shuru karna */
}

/* LEFT CONTENT - IMAGE AREA */
.about-image-area {
    position: relative;
    /* padding-top: 100px;  */
    padding-left: 50px; /* Left se thoda khiskaane ke liye */
}

/* Main Image Wrapper */
.image-wrapper {
    position: relative;
    /* Image ko aspect ratio maintain karne ke liye */
    max-width: 100%; 
    height: 550px; /* Fixed height for consistency */
    overflow: hidden;
}

.about-model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Decorative Frame/Border (Light green box) */
.frame-top-right {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 2px solid #DCE3E0; /* Light green/greyish border color */
    z-index: 1; /* Image ke neeche */
}

/* Rotated Text "Meet" */
.rotated-text {
    position: absolute;
    bottom: 400px;
    right: -300px;
    font-family: var(--font-body);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--color-dark-beige);
    
    /* Rotation */
    transform: rotate(90deg);
    transform-origin: bottom left; 
    z-index: 10 !important;
}

/* OVERLAY TEXT BOXES */
.text-overlay-box {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    padding: 10px 20px;
    z-index: 10;
    color: var(--color-dark-beige);
}

.box-hey-there {
    top: 0;
    left: 0;
    /* Background halka sa translucent (Image mein yeh background transparent/white hai) */
    background-color: rgba(255, 255, 255, 0.8); 
    font-size: 40px; /* Jaisa image mein bada hai */
    letter-spacing: -1px;
    padding: 0;
}

.box-about-me {
    bottom: -30px; /* Image ke neeche */
    left: 0;
    background-color: var(--color-light-bg); /* Banner mein use kiya gaya light beige color */
    font-size: 28px;
    padding: 5px 15px;
}


/* RIGHT CONTENT - TEXT BLOCK */
.about-text-content {
    padding-top: 0px; /* Text block ko thoda neeche shift karna */
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-primary-dark);
}

.body-text {
    margin-bottom: 25px;
    /* Font style: Jaisa image mein text dikh raha hai, woh halka aur spaced hai */
    font-weight: 300; 
    letter-spacing: 0.5px;
}

.about-text-content h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin: 40px 0;
    padding-left: 20px;
    border-left: 2px solid var(--color-accent-beige); /* Quote ke bagal mein line */
    color: var(--color-dark-beige);
}


/*
 * RESPONSIVE DESIGN FOR ABOUT SECTION
 */
@media (max-width: 992px) {
    .about-container {
        /* Tablet/Mobile par single column layout */
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    
    .about-image-area {
        padding-top: 50px;
        padding-left: 0;
        /* Image area ko center karna */
        margin: 0 auto; 
        max-width: 500px;
    }

    .about-text-content {
        padding-top: 0;
    }

    /* Overlays ko adjust karna */
    .box-hey-there {
        top: 20px;
        left: 20px;
    }
    
    .box-about-me {
        bottom: 20px;
        left: 20px;
    }

    .rotated-text {
        display: none; /* Mobile par rotated text chhupa sakte hain */
    }

    .frame-top-right {
        top: -20px;
        right: -20px;
    }
}







/* Update ROOT VARIABLES (for the new orange color) */
:root {
    /* Existing colors... */
    --color-primary-dark: #333; /* Text color */
    --color-light-bg: #F8F4F0; /* Main light beige background */
    --color-accent-beige: #D5B8A1; /* Button and arch shape color */
    --color-dark-beige: #8B7461; /* Logo and dark text color */
    --color-light-circle: #E7D5C7; /* Light circle shape color */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Tenor Sans', sans-serif;
}

/*
 * 4. OUR VALUES SECTION STYLES
 */
.values-section {
    padding: 40px 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(71, 71, 71, 0)), url('images/khushboo-mishra.png');
    background-size: cover;
    min-height: 90vh; 
}

.values-metadata {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-primary-dark);
    opacity: 0.7;
    margin-bottom: 50px;
}

.values-content-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
}

/* LEFT SIDE - TEXT AREA */
.values-text-area {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around; 
}

.values-heading {
    font-family: Arial, sans-serif; 
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 30px;
}

.values-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    max-width: 85%;
    color: #fff;
    opacity: 0.8;
}

/* RIGHT SIDE - GRID OF CARDS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.value-card {
    background-color: #f8f8f81c; 
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.6s;
    backdrop-filter: blur(18px);
}

.value-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.295);
    background-color: transparent;
    backdrop-filter: blur(8px);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.card-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    flex-grow: 1; 
}

.card-separator {
    border: 0;
    border-top: 2px solid rgb(255, 255, 255);
    margin: 15px 0;
    width: 70px;
}

.card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.value-card:hover .card-description,
.value-card:hover .card-title,
.value-card:hover .card-icon svg,
.value-card:hover .card-separator {
    color: #fff;
}

/* HIGHLIGHT CARD (Community First) */
.card-highlight {
    background-color: #ffc47b48;
    color: #fff; 
}

.card-highlight .card-icon svg {
    color: #fff;
}

.card-highlight .card-description,
.card-highlight .card-title {
    color: #fff;
}

.card-highlight .card-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/*
 * RESPONSIVE DESIGN FOR VALUES SECTION
 */
@media (max-width: 992px) {
    .values-content-wrapper {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .values-heading {
        font-size: 70px;
    }
    
    .values-text-area {
        padding-top: 0;
    }
    
    .values-description {
        max-width: 100%;
    }
    
    .values-copyright {
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .values-heading {
        font-size: 55px;
    }
    
    .values-grid {
        grid-template-columns: 1fr; 
    }
    
    .values-metadata {
        margin-bottom: 30px;
    }
}



/*
 FEATURE GRID SECTION STYLES (4x2 Grid)
 */

:root {
    --color-dark-card-bg-v2: #9c8262;
    --color-light-card-bg-v2: #ffffff;
    --color-text-on-dark-v2: #fff;
    --color-text-on-light-v2: #333;
    --grid-border-radius: 10px; 
    --font-body: 'Arial', sans-serif; 
}


/* SECTION AND CONTAINER */
.feature-grid-section-final-v2 {
    padding: 90px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.feature-container-final-v2 {
    max-width: 1400px;
    width: 90%;
    overflow: hidden;
    border-radius: var(--grid-border-radius); 
}

/* ------------------------------------
* FLEX WRAPPER
* ------------------------------------
*/
.feature-grid-wrapper-final-v2 {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    gap: 0;
    border-radius: var(--grid-border-radius);
    overflow: hidden;
}

/* Base style for every block */
.grid-block {
    width: 25%; 
    flex-basis: 25%; 
    aspect-ratio: 1 / 1; /* 🧩 Equal height & width */
    flex-grow: 0;
    flex-shrink: 0; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* DESKTOP BORDER RADIUS */
.block-r1-c1 { border-top-left-radius: var(--grid-border-radius); }
.block-r1-c4 { border-top-right-radius: var(--grid-border-radius); }
.block-r2-c1 { border-bottom-left-radius: var(--grid-border-radius); }
.block-r2-c4 { border-bottom-right-radius: var(--grid-border-radius); }

/* Image Blocks */
.block-image {
    height: 100%;
    flex-grow: 1; 
}

.block-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Blocks */
.block-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background and Text Styling */
.light-bg-v2 { background-color: var(--color-light-card-bg-v2); }
.dark-bg-v2 { background-color: var(--color-dark-card-bg-v2); color: var(--color-text-on-dark-v2); }

.block-title-v2 { 
    font-family: var(--font-body); 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
}

.title-dark-v2 { color: var(--color-text-on-dark-v2); }

.block-description-v2 { 
    font-family: var(--font-body); 
    font-size: 14px; 
    line-height: 1.6; 
    opacity: 0.8; 
    margin-bottom: 20px; 
    flex-grow: 1; 
}

.desc-dark-v2 { opacity: 0.85; }

.more-info-link-v2 { 
    font-family: var(--font-body); 
    font-size: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    padding-bottom: 5px; 
    border-bottom: 2px solid; 
    align-self: flex-start; 
    transition: opacity 0.3s; 
}

.link-light-bg-v2 { color: var(--color-text-on-light-v2); border-color: rgba(0, 0, 0, 0.2); }
.link-dark-bg-v2 { color: var(--color-text-on-dark-v2); border-color: rgba(255, 255, 255, 0.3); }
.more-info-link-v2:hover { opacity: 0.7; }

/*
* RESPONSIVE DESIGN (TABLET: 2x4)
*/
@media (max-width: 1200px) {
    /* Tablet par 2 columns, equal squares */
    .grid-block {
        width: 50%;
        flex-basis: 50%;
        aspect-ratio: 1 / 1; /* still equal height */
        border-radius: 0 !important;
    }

    /* Tablet corners adjust kiye */
    .block-r1-c1 { border-top-left-radius: var(--grid-border-radius); }
    .block-r1-c2 { border-top-right-radius: var(--grid-border-radius); }
    .block-r2-c3 { border-bottom-left-radius: var(--grid-border-radius); } 
    .block-r2-c4 { border-bottom-right-radius: var(--grid-border-radius); } 
}

/*
* RESPONSIVE DESIGN (MOBILE: 1x8 - Full Width Stacking)
*/
@media (max-width: 768px) {
    .grid-block {
        width: 100%;
        flex-basis: 100%;
        aspect-ratio: auto;
        height: auto; 
        min-height: 180px;
        border-radius: 0 !important;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .block-image {
        height: 250px; 
        min-height: 200px;
    }

    .block-content {
        height: auto; 
        min-height: 180px; 
        padding: 25px; 
    }

    /* FLEX ORDERING (Image, Content, Image, Content, ...) */
    .block-r2-c1 { order: 6; } 
    .block-r2-c2 { order: 5; } 
    .block-r2-c3 { order: 8; } 
    .block-r2-c4 { order: 7; } 

    /* TOP and BOTTOM corner radius */
    .block-r1-c1 { 
        border-top-left-radius: var(--grid-border-radius) !important; 
        border-top-right-radius: var(--grid-border-radius) !important; 
    } 
    .block-r2-c3 { 
        border-bottom-left-radius: var(--grid-border-radius) !important; 
        border-bottom-right-radius: var(--grid-border-radius) !important; 
    } 
}







/* ---  Section Styling --- */
.wedding-hero-section {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    background-color: #effaff; 
}

/* --- Woman Image Container (Right Side) --- */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1000px; 
    z-index: 1; 
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* --- Content Box Wrapper (Contains the white box and flower graphics) --- */
.content-box-wrapper {
    position: relative;
    z-index: 2; 
    width: 80%; 
    padding: 0 20px; 
}

/* --- Main White Content Box --- */
.content-box {
    background-color: transparent;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 50px 0px 50px 70px;
    border-radius: 5px;
    max-width: 850px;
    z-index: 1;
    transition: backdrop-filter 0.3s ease-out;
}

/* 1. Create the background layer */
.content-box::after {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.632);
    border-radius: 5px; 
    z-index: -1;
    transition: backdrop-filter 0.3s ease-out;
    backdrop-filter: blur(2px); 
}

/* 2. Apply the blur effect on hover */
.content-box:hover::after {
    backdrop-filter: blur(10px); 
    transform: scale(1.01); 
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: backdrop-filter 0.3s ease-out;
    }



/* --- Flower Graphics Positioning --- */
.flower-graphic {
    position: absolute;
    width: 110px; 
    height: auto;
    z-index: -1;
    pointer-events: none; 
}

.top-left-flower {
    top: 80px; 
    left: -80px;
}

.bottom-right-flower {
    bottom: -50px; 
    right: 150px;
}

/* --- Text Styling --- */
.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em; /* Large and prominent */
    font-weight: 700;
    line-height: 1.2;
    color: #4a4a4a; /* Darker text */
    margin-bottom: 20px;
}

.description-text {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    padding-right: 20px;
}

/* --- Button Styling --- */
.purchase-button {
    background-color: #bfa8a8; 
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.purchase-button:hover {
    background-color: #a38d8d; 
}


@media (max-width: 1024px) {
    .content-box-wrapper {
        width: 75%;
        padding: 0 10px;
    }

    .content-box {
        padding: 40px;
        margin-right: 10%;
    }

    .hero-image-container {
        width: 60%;
    }

    .bottom-right-flower {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .wedding-hero-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        padding-top: 50px;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 400px; 
        order: 1; 
    }
    
    .hero-image {
        object-position: center bottom;
    }

    .content-box-wrapper {
        width: 100%;
        padding: 20px;
        order: 2; 
    }

    .content-box {
        margin-right: 0;
        max-width: 100%;
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 2em;
    }

    .flower-graphic {
        display: none; 
    }
}


.distinctions-container {
    /* Main container for the 2x2 grid */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 0 10px 10px 0;
    margin: 0 auto;
}

.card-item {
    /* Styling for each individual card */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);    
}

.card-heading {
    /* Styling for the card title */
    color: #333;
    margin-top: 0;
    font-size: 1.25em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.card-content {
    /* Styling for the card paragraph content */
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}

/* Media query for mobile responsiveness */
@media (max-width: 600px) {
    .distinctions-container {
        grid-template-columns: 1fr;
    }
}











:root {
      --primary-light: #f0f0f0;
      --primary-dark: #000000;
      --dark: #000000;
      --gray: #777777;
      --light-gray: #f5f5f5;
      --border-radius: 5px;
      --primary: #c3922e;
      --secondary: #928575;
      --accent: #c6ae89;
      --light: #ffffff;
      --white: #ffffff;
      --black: #000000;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Syne", sans-serif !important;
      font-weight: 600;
      line-height: 1.2;
    }

    p,
    a,
    li,
    span,
    strong {
      font-family: "Syne", sans-serif !important;
    }

    a {
      text-decoration: none !important;
    }

    body {
      background-color: #f9f9f9;
      overflow-x: hidden;
    }

    .btn {
      display: inline-block;
      padding: 15px 35px;
      background: var(--black);
      color: var(--white);
      border: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
      border-radius: 30px;
    }

    .btn:before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--secondary);
      z-index: -1;
      transition: var(--transition);
    }

    .btn:hover {
      color: var(--white);
    }

    .btn:hover:before {
      left: 0;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .btn:hover i {
      transform: translateX(5px);
    }

    /* Hero Section */
    .hero-section {
      width: 100%;
      padding: 80px 20px;
      text-align: center;
      background-color: var(--light);
    }

    .hero-heading {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .hero-heading span {
      display: block;
    }

    .hero-subheading {
      font-size: 1.5rem;
      color: var(--gray);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .hero-cta {
      margin-bottom: 80px;
    }

    .hero-cta .btn {
      padding: 18px 45px;
      font-size: 1.1rem;
    }

    /* Team Members Section — Your EXACT original design */
    .team-members {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 100px;
      width: 100%;
      height: 400px;
      perspective: 1200px;
      transform-style: preserve-3d;
      position: relative;
    }

    .amsr-member-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: all 0.5s ease;
      position: relative;
      transform-style: preserve-3d;
      margin: 0 -30px;
      border: 2px solid white;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
      cursor: pointer;
    }

    /* Your EXACT card sizes and rotations */
    /* Reverse the card sizes - Center biggest, sides smaller */
.amsr-member-card:nth-child(1) {
  width: 160px !important;
  height: 230px !important;
  transform: perspective(1000px) rotateY(-17deg) rotateX(0deg);
  z-index: 1;
}
.amsr-member-card:nth-child(2) {
  width: 200px;
  height: 255px;
  transform: perspective(1000px) rotateY(-20deg) rotateX(0deg);
  z-index: 2;
}
.amsr-member-card:nth-child(3) {
  width: 260px;
  height: 310px;
  transform: perspective(1000px) rotateY(-29deg) rotateX(0deg);
  z-index: 3;
}
.amsr-member-card:nth-child(4) {
  width: 320px;
  height: 380px;
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  z-index: 9;
  margin: 0;
}
.amsr-member-card:nth-child(5) {
  width: 260px;
  height: 295px;
  transform: perspective(1000px) rotateY(29deg) rotateX(0deg);
  z-index: 3;
}
.amsr-member-card:nth-child(6) {
  width: 200px;
  height: 235px;
  transform: perspective(1000px) rotateY(20deg) rotateX(0deg);
  z-index: 2;
}
.amsr-member-card:nth-child(7) {
  width: 160px;
  height: 220px;
  transform: perspective(1000px) rotateY(17deg) rotateX(0deg);
  z-index: 1;
}


    .amsr-member-card:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0) translateZ(80px) scale(1.1);
      z-index: 10;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    }

    .member-img-container {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .member-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      position: absolute;
      top: 0;
      left: 0;
    }

    /* Sliding animation - added to your original design */
    .member-img.sliding {
      transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .member-img.next {
      transform: translateX(100%);
    }

    .member-img.current {
      transform: translateX(0%);
    }

    .member-img.prev {
      transform: translateX(-100%);
    }

    .amsr-member-card:hover .member-img.current {
      transform: scale(1.05) translateX(0%) !important;
    }

    /* Fullscreen Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
      transform: scale(0.8);
      transition: transform 0.3s ease;
    }

    .modal.active .modal-content {
      transform: scale(1);
    }

    .close-modal {
      position: absolute;
      top: 30px;
      right: 40px;
      color: white;
      font-size: 50px;
      cursor: pointer;
      transition: color 0.3s ease;
      z-index: 1001;
    }

    .close-modal:hover {
      color: var(--secondary);
    }

    /* Features Section */
    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }
    .feature {
      text-align: center;
      padding: 40px 30px;
      border-radius: 20px;
      transition: transform 0.3s ease;
      background: white;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    .feature:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }
    .feature-icon {
      font-size: 3.5rem;
      color: var(--secondary);
      margin-bottom: 25px;
    }
    .feature-title {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    .feature-description {
      color: var(--gray);
      line-height: 1.7;
      font-size: 1.1rem;
    }

    /* Responsive adjustments - Your EXACT responsive code */
   /* Enhanced Responsive Styles */
@media (max-width: 1400px) {
  .team-members {
    height: 350px;
  }
  .amsr-member-card:nth-child(1) {
    width: 280px;
    height: 340px;
  }
  .member-card:nth-child(2) {
    width: 230px;
    height: 270px;
  }
  .member-card:nth-child(3) {
    width: 180px;
    height: 220px;
  }
  .member-card:nth-child(4) {
    width: 150px;
    height: 200px;
  }
  .member-card:nth-child(5) {
    width: 180px;
    height: 220px;
  }
  .member-card:nth-child(6) {
    width: 230px;
    height: 270px;
  }
  .member-card:nth-child(7) {
    width: 280px;
    height: 340px;
  }
}

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 3rem;
  }
  .hero-subheading {
    font-size: 1.3rem;
  }
  .team-members {
    height: 300px;
    gap: 20px;
  }
  .member-card:nth-child(1) {
    width: 240px;
    height: 300px;
  }
  .member-card:nth-child(2) {
    width: 200px;
    height: 240px;
  }
  .member-card:nth-child(3) {
    width: 160px;
    height: 200px;
  }
  .member-card:nth-child(4) {
    width: 130px;
    height: 170px;
  }
  .member-card:nth-child(5) {
    width: 160px;
    height: 200px;
  }
  .member-card:nth-child(6) {
    width: 200px;
    height: 240px;
  }
  .member-card:nth-child(7) {
    width: 240px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  .hero-heading {
    font-size: 2.5rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .team-members {
    height: 250px;
    gap: 15px;
  }
  .member-card:nth-child(1) {
    width: 200px;
    height: 250px;
  }
  .member-card:nth-child(2) {
    width: 170px;
    height: 210px;
  }
  .member-card:nth-child(3) {
    width: 140px;
    height: 180px;
  }
  .member-card:nth-child(4) {
    width: 110px;
    height: 150px;
  }
  .member-card:nth-child(5) {
    width: 140px;
    height: 180px;
  }
  .member-card:nth-child(6) {
    width: 170px;
    height: 210px;
  }
  .member-card:nth-child(7) {
    width: 200px;
    height: 250px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
}

@media (max-width: 640px) {
  .team-members {
    height: 200px;
    gap: 10px;
  }
  .member-card:nth-child(1) {
    width: 160px;
    height: 200px;
  }
  .member-card:nth-child(2) {
    width: 140px;
    height: 170px;
  }
  .member-card:nth-child(3) {
    width: 120px;
    height: 150px;
  }
  .member-card:nth-child(4) {
    width: 100px;
    height: 130px;
  }
  .member-card:nth-child(5) {
    width: 120px;
    height: 150px;
  }
  .member-card:nth-child(6) {
    width: 140px;
    height: 170px;
  }
  .member-card:nth-child(7) {
    width: 160px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  .team-members {
    height: 180px;
    gap: 5px;
  }
  .member-card:nth-child(1) {
    width: 140px;
    height: 180px;
  }
  .member-card:nth-child(2) {
    width: 120px;
    height: 150px;
  }
  .member-card:nth-child(3) {
    width: 100px;
    height: 130px;
  }
  .member-card:nth-child(4) {
    width: 80px;
    height: 110px;
  }
  .member-card:nth-child(5) {
    width: 100px;
    height: 130px;
  }
  .member-card:nth-child(6) {
    width: 120px;
    height: 150px;
  }
  .member-card:nth-child(7) {
    width: 140px;
    height: 180px;
  }
  .hero-cta .btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}