/* Global Styles & Variables */
:root {
    --dark-bg: #1a1a2e;
    /* Deep purple/blue dark background */
    --accent-purple: #9b59b6;
    /* Medium purple for highlights */
    --light-purple: #c39bd3;
    /* Lighter purple for subtle text */
    --white-text: #ffffff;
    --off-white-text: #f0f0f0;
    --pink-bg: #ffe4e1;
    /* Light pink background from the image */
    --pink-accent-text: #EEF3A5;
    /* Bright pink text from the image */
    --price-basic: #4a4a7a;
    --price-highlight: #6b3e96;
    --inner-bg: #3c3c6a;
    /* New color for nested accordion background */
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Core Section Styles (1-3) --- */
.hero-section,
.why-choose-us-section,
.project-success-section {
    display: flex;
    min-height: 600px;
    /* Use min-height to allow content expansion */
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 60px 5%;
    align-items: center;
    /* Center content vertically */
}

/* Ensure the image scales correctly within its container */
.strategy-static-image {
    display: block;
    width: 100%;
    height: auto;
    /* or 100% if the container has a fixed height */
    object-fit: cover;
    /* or contain, depending on your design needs */
}

/* If the original video class had styles, copy them here */
/* For example, if you had:
.strategy-loop-video {
    border-radius: 10px;
}
You would copy that: */
.strategy-static-image {
    /* ... existing styles ... */
    border-radius: 10px;
}

.hero-left,
.why-content-right,
.success-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    padding-left: 50px;
}

.why-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    padding-right: 48%;
}

.project-success-section {
    display: flex;
    flex-direction: column;
    /* stack image + text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* optional */
    background-color: var(--dark-bg);
    padding: 60px 5%;
}

.success-right-image {
    width: 100%;
    max-width: 800px;
    /* optional size control */
    border-radius: 10px;
    margin-bottom: 40px;
}

.success-content-left {
    flex: none;
    padding-right: 0;
    /* remove right padding since stacked */
    max-width: 800px;
    margin-bottom: 10px;
}

.name-tag-bubble {
    margin-top: 20px;
}

.project-grid-item {
    position: relative;
    /* Needed for overlay positioning */
    width: 300px;
    /* Adjust size */
    height: 200px;
    /* Adjust size */
    overflow: hidden;
}

.project-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills container */
    display: block;
}

.project-grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    color: white;
    padding: 10px;
    text-align: center;
}


.hero-logo img {
    height: 50px;
    /* adjust as needed */
    width: auto;
    display: block;
    background-color: white;
}

.hero-logo {

    top: 40px;
    left: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--light-purple);
    text-transform: uppercase;
}


.hero-left h1,
.why-content-left h2,
.why-content-right h2 {
    font-size: 40px;
    color: var(--white-text);
    margin-bottom: 10px;
    line-height: 1.5;
    max-width: 500px;
}

.success-content-left h2 {
    font-size: 40px;
    color: var(--white-text);
    margin-bottom: 10px;
    line-height: 1.5;

}

.hero-left h1 span,
.why-content-left h2 span,
.why-content-right h2 span,
.success-content-left h2 span {
    color: var(--pink-accent-text);
    /* Changed to pink accent for more contrast */

    border-radius: 5px;
    display: inline-block;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.why-title span {
    white-space: nowrap;
    color: #0077b5;
    font-weight: 700;
}

.why-title div {
    display: block;
    margin-top: 5px;
}

/* Why Choose Us & Project Success Image Layout */
.why-choose-us-section,
.project-success-section {
    justify-content: space-between;
}

.why-left-image {
    width: 400px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.success-right-image {
    width: 900px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    order: 2;
    z-index: 2;
}

.why-content-right {
    padding-left: 50px;
}

.why-callouts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.callout-bubble {
    background-color: var(--accent-purple);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.success-content-left ul {
    list-style: none;
    padding-left: 0;
    text-align: left;

}

.success-content-left li {
    background: var(--inner-bg);
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;

}

.name-tag-bubble {
    position: absolute;
    bottom: 40px;
    left: 420px;
    /* Positioned near the image */
    background-color: var(--dark-bg);
    border: 2px solid var(--accent-purple);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 5;
}

.name-tag-bubble1 {
    position: absolute;
    bottom: 40px;
    left: 420px;
    /* Positioned near the image */
    background-color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 5;
}

.name-tag-bubble.right {
    left: auto;
    text-align: center;
    right: auto;
}

.name-tag-bubble1.right {
    left: auto;
    text-align: center;
    right: auto;
    font-size: 20px;
}

.name-tag-bubble span {
    display: block;
    font-weight: 400;
    font-size: 0.8em;
    color: var(--light-purple);
}

/* --- NEW Key Highlights Section --- */
.key-highlights-section {
    background-color: var(--inner-bg);
    /* Use a darker, contrasting background */
    padding: 80px 0;
    text-align: center;
}

.key-highlights-section h2 {
    font-size: 2.5em;
    color: var(--white-text);
    margin-bottom: 50px;
}

.key-highlights-section h2 span {
    color: var(--pink-accent-text);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid var(--accent-purple);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.highlight-icon {
    font-size: 3.5em;
    color: #d4af37;

    margin-bottom: 15px;
    display: block;
}

.highlight-card h3 {
    font-size: 1.5em;
    margin-top: 0;

}

.highlight-card strong {
    color: var(--pink-accent-text);
    font-weight: 700;
}

/* --- NEW Vision & Mission Section --- */
.vision-mission-section {
    background-color: #0d0d17;
    padding: 80px 0;
}

.vision-mission-section .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.vm-card {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    background-color: var(--price-basic);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-purple);
}

.vm-card.mission::before {
    background: var(--pink-accent-text);
}

.vm-icon {
    font-size: 2em;
    color: var(--accent-purple);
    float: right;
    margin-left: 15px;
}

.vm-card.mission .vm-icon {
    color: var(--pink-accent-text);
}

.vm-card h2 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--white-text);
}

/* --- Price List Styles --- */
.price-list-section {
    background-color: #0d0d17;
    padding: 80px 0;
    text-align: center;
}

.price-list-section h2 {
    font-size: 3em;
    color: var(--white-text);
    margin-bottom: 10px;
}

.price-list-section .subtitle {
    font-size: 1.1em;
    color: var(--light-purple);
    margin-bottom: 50px;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.package-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--price-basic);
    border-radius: 15px;
    padding: 0 30px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, background-color 0.3s;
    border: 3px solid transparent;
}

.package-card.highlight {
    background-color: var(--price-highlight);
    border-color: var(--accent-purple);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 1.8em;
    color: var(--white-text);
    margin: 0 0 5px 0;
    letter-spacing: 1px;
    text-align: left;
}

.package-card .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--light-purple);
    line-height: 1;
    text-align: left;
    width: 100%;
}

.package-card .currency,
.package-card .unit {
    font-size: 0.3em;
    font-weight: 400;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.package-card .unit {
    font-size: 0.4em;
    color: var(--off-white-text);
}

/* Nested Accordion Styles */
.feature-category {
    background-color: var(--inner-bg);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.feature-category summary {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--off-white-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    position: relative;
}

.feature-category summary:before {
    content: '+';
    font-size: 1.2em;
    margin-right: 10px;
    color: var(--accent-purple);
    transition: transform 0.2s;
}

.feature-category[open] summary:before {
    content: '–';
    transform: rotate(0deg);
}

.feature-category summary::-webkit-details-marker {
    display: none;
}

.feature-list {
    list-style: none;
    padding: 5px 15px 15px 15px;
    margin: 0;
    text-align: left;
    font-size: 0.9em;
    color: var(--off-white-text);
}

.feature-list li {
    padding: 5px 0;
    margin-left: 10px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-purple);
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/* Buttons */
.btn {
    display: block;
    padding: 12px 25px;
    background-color: var(--accent-purple);
    color: var(--white-text);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: #7d499b;
}

.highlight-btn {
    background-color: var(--pink-accent-text);
}

.highlight-btn:hover {
    background-color: #c41852;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {

    /* General Layout Stacking */
    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding: 40px 5%;
    }

    .hero-image {
        position: relative;
        /* Make image flow normally */
        width: 100%;
        height: 300px;
        /* Fixed height for mobile image */
        clip-path: none;
        /* Remove clip path */
        margin-bottom: 30px;
    }

    .why-content-left {
        padding-right: 0;
        /* Remove restriction */
    }

    .why-choose-us-section {
        flex-direction: column;
        min-height: auto;
    }

    .why-left-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        margin-bottom: 30px;
    }

    .why-content-right {
        padding-left: 0;
    }

    .name-tag-bubble {
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: 380px;
        /* Position it below the image */
        max-width: 90%;
        text-align: center;
    }

    /* Package Grid Stacking */
    .package-grid {
        flex-direction: column;
        /* Stack packages vertically */
    }

    .package-card {
        max-width: 100%;
    }

    /* New Sections Mobile Adjustments */
    .vision-mission-section .container {
        flex-direction: column;
        /* Stack vision/mission cards */
    }
}

/* Global Styles & Variables */
:root {
    --dark-bg: #1a1a2e;
    /* Deep purple/blue dark background */
    --accent-purple: #9b59b6;
    /* Medium purple for highlights */
    --light-purple: #c39bd3;
    /* Lighter purple for subtle text */
    --white-text: #ffffff;
    --off-white-text: #f0f0f0;
    --pink-bg: #ffe4e1;
    /* Light pink background from the image */
    --pink-accent-text: #EEF3A5;
    /* Bright pink text from the image */
    --price-basic: #4a4a7a;
    --price-highlight: #6b3e96;
    --inner-bg: #3c3c6a;
    /* New color for nested accordion background */
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white-text);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.container1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Core Section Styles (1-3) --- */
.hero-section,
.why-choose-us-section,
.project-success-section {
    display: flex;
    min-height: 600px;
    /* Use min-height to allow content expansion */
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 60px 5%;
    align-items: center;
    /* Center content vertically */
}

/* Ensure the image scales correctly within its container */
.strategy-static-image {
    display: block;
    width: 100%;
    height: auto;
    /* or 100% if the container has a fixed height */
    object-fit: cover;
    /* or contain, depending on your design needs */
}

/* If the original video class had styles, copy them here */
/* For example, if you had:
.strategy-loop-video {
    border-radius: 10px;
}
You would copy that: */
.strategy-static-image {
    /* ... existing styles ... */
    border-radius: 10px;
}

.hero-left,
.why-content-right,
.success-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    padding-right: 50px;
}

.project-success-section {
    display: flex;
    flex-direction: column;
    /* stack image + text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* optional */
    background-color: var(--dark-bg);
    padding: 60px 5%;
}

.success-right-image {
    width: 100%;
    max-width: 800px;
    /* optional size control */
    border-radius: 10px;
    margin-bottom: 40px;
}

.success-content-left {
    flex: none;
    padding-right: 0;
    /* remove right padding since stacked */
    max-width: 800px;
    margin-bottom: 10px;
}

.name-tag-bubble {
    margin-top: 20px;
}


.hero-logo img {
    height: 150px;
    margin-left: 10%;
    display: block;
    background-color: #1a1a2e;
    border-radius: 20px
}

.hero-logo-15,
.hero-logo-check {
    display: inline-block;
    margin-left: 5%;
    vertical-align: middle;
}

.hero-logo-15 img,
.hero-logo-check img {
    height: 150px;
    width: 150px;
    margin: 20px;
    margin-top: 30px;
    display: block;
    background-color: #1a1a2e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-logo {

    top: 40px;
    left: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--light-purple);
    text-transform: uppercase;
}

.hero-left h1,
.why-content-right h2 {
    font-size: 40px;
    color: var(--white-text);
    margin-bottom: 10px;
    line-height: 1.5;
    max-width: 500px;
}

.success-content-left h2 {
    font-size: 40px;
    color: var(--white-text);
    margin-bottom: 10px;
    line-height: 1.5;

}

.hero-left h1 span,
.why-content-right h2 span,
.success-content-left h2 span {
    color: var(--pink-accent-text);
    /* Changed to pink accent for more contrast */

    border-radius: 5px;
    display: inline-block;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 10px;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}


/* Add this new block to your style.css */
.video-overlay {
    /* Inherit position, size, and clipping from the video */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;

    /* IMPORTANT: Use the exact same clip-path as the .hero-image */
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);

    /* Set the Gradient */
    /* This gradient starts dark (70% opacity of your background color) on the right 
       and fades to fully transparent on the left, improving text readability. */
    background: linear-gradient(to left, rgb(118 118 118 / 0%),
            /* 70% opacity of var(--dark-bg) at the right edge */
            #1a1a2ea3 70%
            /* Fully transparent after 70% of the element width */
        );
    /* Ensure the overlay is above the video (z-index: 1) but below the text (.hero-left is z-index: 2) */
    z-index: 1;
}

.why-title span {
    white-space: nowrap;
    color: var(--pink-accent-text);
    font-weight: 700;
}

.why-title div {
    display: block;
    margin-top: 5px;
}

/* Why Choose Us & Project Success Image Layout */
.why-choose-us-section,
.project-success-section {
    justify-content: space-between;
}

.why-left-image {
    width: 400px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.success-right-image {
    width: 900px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    order: 2;
    z-index: 2;
}

.why-content-right {
    padding-left: 50px;
}

.why-callouts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.callout-bubble {
    background-color: var(--accent-purple);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.success-content-left ul {
    list-style: none;
    padding-left: 0;
    text-align: left;

}

.success-content-left li {
    background: var(--inner-bg);
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;

}

.name-tag-bubble {
    position: absolute;
    bottom: 40px;
    left: 420px;
    /* Positioned near the image */
    background-color: var(--dark-bg);
    border: 2px solid var(--accent-purple);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 5;
}

.name-tag-bubble1 {
    position: absolute;
    bottom: 40px;
    left: 420px;
    /* Positioned near the image */
    background-color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 5;
}

.name-tag-bubble.right {
    left: auto;
    text-align: center;
    right: auto;
}

.name-tag-bubble1.right {
    left: auto;
    text-align: center;
    right: auto;
    font-size: 20px;
}

.name-tag-bubble span {
    display: block;
    font-weight: 400;
    font-size: 0.8em;
    color: var(--light-purple);
}

/* Hide overlay on mobile devices */
@media (max-width: 768px) {
    .video-overlay {
        display: none !important;
    }
}


/* --- Price List Styles --- */
.price-list-section {
    background-color: #0d0d17;
    padding: 80px 0;
    text-align: center;
}

.price-list-section h2 {
    font-size: 3em;
    color: var(--white-text);
    margin-bottom: 10px;
}

.price-list-section .subtitle {
    font-size: 1.1em;
    color: var(--light-purple);
    margin-bottom: 50px;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.package-card {
    flex: 1;
    min-width: 270px;
    max-width: 350px;
    background-color: var(--price-basic);
    border-radius: 15px;
    padding: 0 30px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, background-color 0.3s;
    border: 3px solid transparent;
}

.package-card.highlight {
    background-color: var(--price-highlight);
    border-color: var(--accent-purple);
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 1.8em;
    color: var(--white-text);
    margin: 0 0 5px 0;
    letter-spacing: 1px;
    text-align: left;
}

.package-card .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--light-purple);
    line-height: 1;
    text-align: left;
    width: 100%;
}

.package-card .currency,
.package-card .unit {
    font-size: 0.3em;
    font-weight: 400;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.package-card .unit {
    font-size: 0.4em;
    color: var(--off-white-text);
}

/* Nested Accordion Styles */
.feature-category {
    background-color: var(--inner-bg);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.feature-category summary {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--off-white-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    position: relative;
}

.feature-category summary:before {
    content: '+';
    font-size: 1.2em;
    margin-right: 10px;
    color: var(--accent-purple);
    transition: transform 0.2s;
}

.feature-category[open] summary:before {
    content: '–';
    transform: rotate(0deg);
}

.feature-category summary::-webkit-details-marker {
    display: none;
}

.feature-list {
    list-style: none;
    padding: 5px 15px 15px 15px;
    margin: 0;
    text-align: left;
    font-size: 0.9em;
    color: var(--off-white-text);
}

.feature-list li {
    padding: 5px 0;
    margin-left: 10px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-purple);
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/* Buttons */
.btn {
    display: block;
    padding: 12px 25px;
    background-color: var(--accent-purple);
    color: var(--white-text);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: #7d499b;
}

.highlight-btn {
    background-color: var(--pink-accent-text);
    color: #133a8d;
}

.highlight-btn:hover {
    background-color: #f8ff8d;
}

/* --- Video Styles Section --- */
.video-styles-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.video-styles-section .style-group {
    margin-bottom: 50px;
}

.video-styles-section .style-label {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(155, 89, 182, 0.3);
    padding-bottom: 5px;
}

.video-examples {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Added for responsiveness */
}

.video-card {
    flex: 1;
    min-width: 250px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: var(--price-basic);
    position: relative;
}

.video-card1 {
    flex: 1;
    min-width: 400px;
    height: 654px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: var(--price-basic);
    position: relative;
}

.video-card-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white-text);
    padding: 15px;
    background-size: cover;
    background-position: center;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
}

.loop-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay-text {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.1em;
}

.video-card.ad-style {
    background-color: #fff;
    color: var(--dark-bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.video-card.ad-style h4 {
    color: var(--pink-accent-text);
    font-size: 1.5em;
    margin-top: 0;
}

.video-card.ad-style ul {
    list-style-type: none;
    padding-left: 0;
}

.video-card.ad-style li {
    background-color: var(--pink-bg);
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* --- Sound Control Button Style --- */
.sound-control {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white-text);
    border: none;
    border-radius: 5px;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 1.2em;
    z-index: 10;
    transition: background-color 0.2s;
}

.sound-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* --- Clients & Projects Section --- */


.clients-projects-section h2 {
    font-size: 3em;
    color: var(--white-text);
    margin-bottom: 40px;
    margin-top: 60px;
}

.clients-projects-section h2 span {
    color: var(--accent-purple);
}

.client-grid {
    display: flex;
    gap: 30px;
}

.client-testimonial-block {
    flex: 1;
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.client-testimonial-block h3 {
    color: var(--light-purple);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-top: 0;
    text-align: center;
}
.client-testimonial-block p {
   
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin: 30px;
    text-align: left;
}

.client-video-placeholder {
    width: 100%;
    height: 200px;
    background: #000;
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.stat-table {
    border-collapse: collapse;
    font-size: 0.9em;
    text-align: left;
}

.stat-table th,
.stat-table td {
    padding: 10px 15px;
}

/* --- Project Grid Section --- */
.project-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background-color: var(--dark-bg);
    justify-items: center;
    margin: 20px 160px 60px;
}

.video-link-wrapper {
    text-align: center;
    margin-top: 15px;
}

.youtube-link {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.youtube-link:hover {
    background: #cc0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}


/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .project-grid-section {
        margin: 20px 60px 60px;
        gap: 40px;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    .project-grid-section {
        margin: 20px 30px 40px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    .project-grid-section {
        margin: 15px 15px 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.project-grid-section1 h2 {
    font-size: 3em;
    color: var(--white-text);
    margin-bottom: 40px;
    margin-top: 60px;
}

.clients-projects-section1 h2 span {
    color: var(--accent-purple);
}

.project-grid-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.project-grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(155, 89, 182, 0.8);
    color: var(--white-text);
    padding: 15px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.project-grid-item:hover .project-grid-item-overlay {
    transform: translateY(0);
}

/* --- MAP & CONTACT FORM SECTION STYLES --- */
.map-contact-form-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--off-white-text);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h3 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.2em;
    color: var(--light-purple);
    font-weight: 600;
}

.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 40px;
}

/* Map and Contact Column */
.map-contact-column {
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.contact-details-box {
    background-color: var(--inner-bg);
    padding: 20px;
    border-radius: 8px;
}

.contact-details-box h4 {
    color: var(--light-purple);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact-details-box p {
    margin: 10px 0;
    font-size: 1em;
}

.contact-details-box a {
    color: var(--off-white-text);
    text-decoration: none;
}

.contact-details-box a:hover {
    color: var(--accent-purple);
}

/* Contact Form Styles */
.contact-form-column h4 {
    color: var(--accent-purple);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-column {
    padding: 25px;
    background-color: var(--white-text);
    border-radius: 20px;
}

.main-contact-form input[type="text"],
.main-contact-form input[type="email"],
.main-contact-form input[type="tel"],
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--light-purple);
    border-radius: 5px;
    background-color: var(--inner-bg);
    color: var(--white-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    /* Include padding in the element's total width and height */
}

.main-contact-form textarea {
    resize: vertical;
}

.main-contact-form input::placeholder,
.main-contact-form textarea::placeholder {
    color: var(--light-purple);
    opacity: 0.7;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #a5aa5f;
    /* Highlight button */
    color: var(--white-text);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #797e27;
    /* Slightly lighter pink on hover */
}


.form-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-input-grid select {

    /* Removed margin-bottom here to let the grid gap control spacing */
    border: 1px solid var(--light-purple);
    border-radius: 5px;
    background-color: var(--inner-bg);
    color: var(--white-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--light-purple);
    border-radius: 5px;
    background-color: var(--inner-bg);
    color: var(--white-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

.form-input-grid select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.2);
    /* Soft focus glow */
    outline: none;
    width: 100%;
    padding: 15px;
    margin-bottom: 0;
    border: 1px solid var(--light-purple);
    border-radius: 5px;
    background-color: var(--inner-bg);
    color: var(--white-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

/* Ensure all form inputs inside the main form (including textareas) still look correct */
.main-contact-form input[type="text"],
.main-contact-form input[type="email"],
.main-contact-form input[type="tel"],
.main-contact-form input[type="number"],
/* Added this just in case for area */
.main-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    /* Removed margin-bottom here to let the grid gap control spacing */
    border: 1px solid var(--light-purple);
    border-radius: 5px;
    background-color: var(--inner-bg);
    color: var(--white-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

.social-links a {
    color: #333;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0077b5;
    /* LinkedIn blue or your brand color */
}

/* Re-apply margin-bottom for full-width elements (like the textareas) */
.main-contact-form textarea {
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Responsive adjustment for the form grid */
@media (max-width: 600px) {
    .form-input-grid {
        grid-template-columns: 1fr;
        /* Stack inputs on smaller mobile screens */
        gap: 0;
        /* Remove gap when stacked */
    }

    /* Re-add margin to stacked inputs for vertical spacing */
    .form-input-grid input {
        margin-bottom: 20px;
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .map-form-grid {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
    }
}


/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {

    .why-left-image,
    .success-right-image {
        width: 600px;
        height: 500px;
    }

    .name-tag-bubble {
        left: 320px;
    }

    .name-tag-bubble.right {
        right: 320px;
    }
}

@media (max-width: 900px) {

    /* General Layout */
    .hero-section,
    .why-choose-us-section,
    .project-success-section,
    .client-grid {
        flex-direction: column;
        height: auto;
        padding: 40px 5%;
    }

    /* Hero Section */
    .hero-left {
        padding-right: 0;
        padding-bottom: 20px;
        text-align: left;
    }

    .hero-logo {
        position: static;
        margin-bottom: 20px;
    }

    .hero-left h1 {
        font-size: 2.5em;
        max-width: 100%;
    }

    .hero-image {
        position: static;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    /* Why Choose Us & Project Success */
    .why-left-image,
    .success-right-image {
        width: 100%;
        max-width: 400px;
        height: 100%;
        margin-bottom: 20px;
    }

    .why-choose-us-section {
        align-items: center;
    }

    .why-content-right,
    .success-content-left {
        padding-left: 0;
        padding-right: 0;
        order: 1;
        text-align: left;
    }

    .success-right-image {
        order: 2;
    }

    .why-callouts {
        justify-content: center;
    }

    .name-tag-bubble,
    .name-tag-bubble.right {
        position: static;
        margin-top: 20px;
        margin-right: -280px;
        text-align: center;
    }

    .success-content-left ul {
        text-align: left;
        /* Keep lists readable */
    }

    /* Price List */
    .package-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        max-width: 90%;
        padding: 0 20px 20px;
    }

    .package-card h3,
    .package-card .price {
        text-align: center;
        align-self: center;
    }

    .package-header {
        align-items: center;
    }

    /* Video Examples */
    .video-examples {
        flex-direction: column;
        gap: 20px;
    }

    .video-card {
        min-width: 100%;
    }

    /* Clients Grid */
    .client-grid {
        flex-direction: column;
    }

    /* Contact Section */
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item a {
        font-size: 1.2em;
    }
}

/* Update the color for the key stats to reflect the new text better */
.detail-callout .stats {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--white-text);
    line-height: 1.1;
    margin: 5px 0;
}

/* Ensure the count statistic still stands out */
.detail-callout .stats:last-child {
    color: var(--pink-accent-text);
    /* Highlight the content count */
}


/* --- Video Strategy Section --- */
.video-strategy-section {
    padding: 40px 0;
    background-color: #3c3c6a;
}
.video-strategy-section h2{
  font-size: 3em;
    color: var(--white-text);
    margin-bottom: 40px;
}

.video-strategy-section1 {
    padding: 60px;
    background-color: #CBC3E3;
}

/* Updated Grid: One row is a repeating 1fr 1fr 1fr column layout */
.strategy-row {
    margin-bottom: 50px;
    /* Space between the rows */
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  
    gap: 30px;
    align-items: stretch;
    /* Stretch columns to match height */
}

/* Process Block - Left Column */
.process-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Use inner-bg for this block */
    border-radius: 10px;
    padding: 20px;
}

.process-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}


.process-name1 {
    font-size: 1.8em;
    font-weight: 700;
    color: #6b3e96;
    margin: 0;
}

/* Breakup Blocks (Video and Content) - Columns 2 & 3 */
.breakup-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-bg);
    /* Use inner-bg for consistency */
    border-radius: 10px;
    padding: 20px;
}

/* Breakup Blocks (Video and Content) - Columns 2 & 3 */
.breakup-block1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.content-placeholder {
    width: 100%;
    height: 250px;
    /* Reduced height for two rows */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.strategy-loop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* New Sound Control Button Style */
.sound-control-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgb(255 255 255);
    color: var(--white-text);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}



/* Removed the complex curved arrow CSS from the previous attempt */
.arrow-connector,
.arrow-connector::after {
    display: none !important;
}

.detail-callout::before {
    content: none !important;
}

.breakup-block.full-script-style .content-placeholder {
    margin-bottom: 20px;
}


/* Responsive Adjustments */
@media (max-width: 900px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        min-height: auto;
    }



    .breakup-block.video-style {
        order: 2;
        /* Video content second */
    }

    .breakup-block.content-style {
        order: 3;
        /* Montage/etc. third */
    }

    .process-name {
        font-size: 1.5em;
    }
}

.process-block h2 {
    font-size: 2.2em;
    color: var(--light-purple);
    margin-bottom: 30px;
}

.process-block h2 span {
    color: var(--pink-accent-text);
}

.work-process-list {
    list-style: none;
    padding-left: 0;
}

.work-process-list li {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--light-purple);
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


/* Breakup Blocks - Middle and Right Columns */
.breakup-block {
    position: relative;
    /* Essential for positioning the connector inside */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-placeholder {
    width: 100%;
    height: inherit;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.strategy-loop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #5cb85c, transparent);
    /* Green band mimic */
    color: var(--white-text);
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 5px;
    white-space: nowrap;
}

.split-content-bg {
    width: 100%;
    height: 100%;
    /* Placeholder background to mimic the image's "screenshot" look */
    background: #2c2c4a;
    border: 1px solid var(--accent-purple);
}

.detail-callout {
    background-color: var(--inner-bg);
    /* Darker background for the callout */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.detail-callout::before {
    content: " ";
    position: absolute;
    /* Mimic the dashed line from the image */
    width: 30px;
    height: 20px;
    top: -20px;
    /* Position above the callout */
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px dashed var(--accent-purple);
    border-top: 2px dashed var(--accent-purple);
    border-top-left-radius: 5px;
}

.breakup-block.full-script-style .detail-callout::before {
    top: 50px;
    right: 100%;
    left: auto;
    width: 50px;
    height: 50px;
    border-top: none;
    border-right: 2px dashed var(--accent-purple);
    border-bottom: 2px dashed var(--accent-purple);
    border-top-left-radius: 0;
    border-bottom-right-radius: 5px;
    transform: rotate(-45deg) translateY(-50%);
}

.detail-callout .title {
    font-size: 1.1em;
    color: var(--light-purple);
    margin-bottom: 10px;
}

.detail-callout .stats {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--white-text);
    line-height: 1.1;
    margin: 5px 0;
}

.detail-callout .stats:nth-child(3) {
    color: var(--pink-accent-text);
    /* Highlight the content count */
}



/* Responsive Adjustments for Strategy Section */
@media (max-width: 900px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        min-height: auto;
    }

    .process-block {
        text-align: center;
    }

    .work-process-list li {
        text-align: center;
        font-size: 1.2em;
    }

    .breakup-block {
        margin-bottom: 30px;
    }

    .content-placeholder {
        height: 350px;
    }

    /* Adjust dashed line positioning for mobile (simpler design) */
    .breakup-block .detail-callout::before {
        display: none;
    }
}


/* --- FOOTER SECTION STYLES --- */
.main-footer {
    background-color: var(--inner-bg);
    /* Use a slightly lighter dark color for contrast */
    padding-top: 50px;
    color: var(--off-white-text);
}

/* This flex property now splits the width equally between the two remaining columns */
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    /* Makes columns take up equal space */
    min-width: 250px;
}

.footer-col h3 {
    color: var(--accent-purple);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--light-purple);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-col p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Links in Footer */
.footer-col a {
    color: var(--off-white-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-purple);
}

/* Social Icons (Placeholder styles) */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--accent-purple);
    color: var(--white-text);
    margin-right: 10px;
    font-size: 0.8em;
}

/* Footer Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background-color: var(--dark-bg);
    color: #ffffff;
    font-size: 0.85em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 3px 0;
    opacity: 0.9;
}


.footer-bottom a {
    color: #ffffff;         /* link color */
    text-decoration: none;  /* remove underline */
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #ffc300;
     text-decoration: none;
    transition: 0.3s ease;
}


/* Mobile Adjustments for Footer */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        justify-content: center;
    }
}



.three-row-section {
    background-color: #3c3c6a;
    /* deep navy theme */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* space between rows */
}

/* Each Row */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

/* Text Column */
.text-col {
    flex: 1;
    max-width: 450px;
    padding: 0px;
    text-align: left;
    margin-left: 20px;
}

.text-col h3 {
    color: #ffffff;
    /* gold accent */
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.text-col p {
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Image Column */
.image-col {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-col img {
    height: 400px;
    width: 300px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-col img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .image-col {
        justify-content: center;
    }
}

p em,
p strong {
    color: #d4af37;
    /* elegant gold color */
    font-style: normal;
    /* keeps it consistent */
    font-weight: bold;
}

/* ============================
   📱 Mobile View (max-width: 768px)
   ============================ */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        /* Stack vertically */

        text-align: center;
        min-height: auto;
    }

    .hero-left,
    .why-content-right,
    .success-content-left {
        padding: 10px;
        /* Remove right spacing */
        align-items: center;
    }

    /* Main logo */
    .hero-logo img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto 20px;
    }

    /* Small logos (side by side) */
    .hero-logo-15 img,
    .hero-logo-check img {
        width: 45%;
        height: auto;
        margin: 10px 5px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }

    /* Ensure both small logos stay on one line or wrap neatly */
    .hero-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo-15,
    .hero-logo-check {
        display: inline-block;
    }

    /* Text content */
    .why-content-left {
        padding-right: 0;
        margin-top: 20px;
    }

    .hero-left h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .why-content-left p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Right image */
    .hero-right {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
    }
}

/* ============================
   📱 Small Phones (max-width: 480px)
   ============================ */
@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 24px;
    }

    .why-content-left p {
        font-size: 15px;
    }

    .hero-logo img {
        max-width: 280px;
    }

    .hero-logo-15 img,
    .hero-logo-check img {
        width: 72%;
        justify-self: center;
    }
}

/* --- Floating Notification Styles --- */
/* --- Floating Notification Styles (Centered) --- */
.notification {
    /* Updated Positioning for Center */
    position: fixed; 
    top: 50%; /* Start the top edge at 50% down */
    left: 50%; /* Start the left edge at 50% across */
    
    /* Center the element based on its own size */
    /* The Y-value is adjusted for the slide-in effect */
    transform: translate(-50%, -50%) scale(0.9); 
    
    /* Existing Presentation Styles */
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s;
    z-index: 1000;
}

/* Modifier class to show the notification (applied by JavaScript) */
.notification.show {
    opacity: 1;
    visibility: visible;
    /* Slide into view and remove the initial scale for a subtle zoom/fade effect */
    transform: translate(-50%, -50%) scale(1); 
}

/* Success style */
.notification.success {
    background-color: #28a745; /* Green */
}

/* Error style */
.notification.error {
    background-color: #dc3545; /* Red */
}