/* Hero Section Shapes */

.hero-section {
    position: relative;
    overflow: hidden; /* Ensures shapes don't spill out */
    background: #0A1F44; /* Deep navy blue base background */
    z-index: 0; /* Ensure hero-section is a stacking context */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 120, 212, 0.05) 0%, rgba(0, 188, 242, 0.05) 100%); /* Subtle blue gradient overlay */
    z-index: -1; /* Behind all content and shapes */
    pointer-events: none;
}

.hero-shapes-optionA {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows interaction with content below */
    z-index: 2; /* Increased z-index */
}

.hero-shapes-optionA .shape-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.08); /* Translucent white */
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 1; /* Adjust opacity here, filter blur will make it soft */
    filter: blur(50px); /* Soft blur */
}

.hero-shapes-optionA .shape-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 120, 212, 0.15); /* Translucent Microsoft Blue */
    border-radius: 50%;
    bottom: 50px;
    right: 200px;
    opacity: 1; /* Adjust opacity here, filter blur will make it soft */
    filter: blur(40px); /* Soft blur */
}

.hero-shapes-optionA .shape-block-1 {
    position: absolute;
    width: 344px;
    height: 428px;
    background-color: rgba(0, 188, 242, 0.1); /* Translucent lighter blue */
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    top: 0;
    left: 0;
    opacity: 1; /* Adjust opacity here, filter blur will make it soft */
    filter: blur(60px); /* Soft blur */
    transform: none;
    border-radius: 0;
}

/* Ensure hero content is above shapes */
.hero-section .container {
    position: relative;
    z-index: 3; /* Increased z-index */
}

.hero-badge-overlay {
    position: absolute;
    top: 147px;
    left: -4px;
    z-index: 4; /* Increased z-index */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-51deg);
}

/* Option B Styles (uncomment HTML in home.php to activate) */
.hero-shapes-optionB {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-shapes-optionB .shape-rect-1 {
    position: absolute;
    width: 400px;
    height: 250px;
    background-color: #0078D4; /* Microsoft Blue */
    border-radius: 20px;
    top: 50px;
    left: -100px;
    transform: rotate(-15deg);
    opacity: 0.7;
}

.hero-shapes-optionB .shape-rect-2 {
    position: absolute;
    width: 300px;
    height: 400px;
    background-color: #7FBA00; /* Microsoft Green */
    border-radius: 30px;
    bottom: -150px;
    left: 100px;
    transform: rotate(10deg);
    opacity: 0.5;
}

.hero-partner-badge-bottom-right {
    position: absolute;
    bottom: 20px;  /* Adjust as needed */
    right: 0px;   /* Adjust as needed */
    z-index: 3;    /* Ensure it's above background elements but below main content */
    max-width: 150px; /* Adjust size as needed */
    height: auto;
    opacity: 0.9; /* Slightly transparent for integration */
}
