/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle, #2A3439, #1C2526);
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 37, 38, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-bottom: 1px solid #A9A9A9;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #007BFF;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    padding: 0.5rem 1rem;
}

.logo-img {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo span {
    color: #D4AF37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    margin: 0;
}

nav li {
    margin: 0 clamp(0.5rem, 2vw, 1rem);
    position: relative;
}

nav a {
    text-decoration: none;
    color: #007BFF;
    font-weight: 600;
    font-size: clamp(0.9rem, 3vw, 1rem);
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D4AF37;
}

.hamburger {
    display: none;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    cursor: pointer;
    padding: 0.5rem;
    color: #007BFF;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(28, 37, 38, 0.95);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid #A9A9A9;
    top: 100%;
    left: 0;
    min-width: 150px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0.5rem 0;
}

section {
    padding: clamp(2rem, 10vw, 5rem) clamp(1rem, 5vw, 2rem);
    min-height: 50vh;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: #D4AF37;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

section p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    background: url('https://i.imgur.com/tsRtJHS.jpeg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
    height: 100vh;
}

.hero-logo-top {
    position: absolute;
    top: 4rem;
    left: 2rem;
    z-index: 3;
}

.hero-logo-top h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #D4AF37;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    grid-column: 2;
    justify-self: center;
}

.hero-main-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.1;
}

.hero-main-text .highlight {
    color: #D4AF37;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #FFFFFF;
    margin: 0;
    opacity: 0.9;
}

.hero-menu {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-menu {
    position: relative;
    width: 250px;
    height: 250px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.menu-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

.menu-item a {
    color: #1C2526;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-align: center;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-item:hover a {
    color: #FFFFFF;
}

/* Position menu items in a circle */
.menu-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.menu-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-item:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.media-slider {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    color: #FFFFFF;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.9rem, 3vw, 1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.7);
}

.btn.secondary {
    background: linear-gradient(45deg, #005FCC, #003087);
}

.card {
    background: #2A3439;
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #A9A9A9, #D4AF37) 1;
    border-radius: 12px;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: clamp(0.5rem, 2vw, 1rem);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 169, 169, 0.5);
}

.card i {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.team-container, .course-container, .portfolio-container, .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 45vw, 250px), 1fr));
    gap: clamp(0.5rem, 2vw, 1rem);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel, .faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-card img {
    border-radius: 50%;
    width: clamp(80px, 20vw, 100px);
    height: clamp(80px, 20vw, 100px);
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid #A9A9A9;
}

.portfolio-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 5vw, 2rem);
    text-align: center;
    flex-wrap: wrap;
}

.stat .counter {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    color: #007BFF;
    font-weight: bold;
}

.pricing-table {
    margin-top: clamp(1rem, 4vw, 2rem);
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #2A3439;
    border: 1px solid #A9A9A9;
}

th, td {
    padding: clamp(0.5rem, 2vw, 0.75rem);
    text-align: left;
    border-bottom: 1px solid #A9A9A9;
    color: #FFFFFF;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

th {
    background: #151B1D;
    color: #007BFF;
}

.carousel-item, .slide {
    display: none;
}

.carousel-item.active, .slide.active {
    display: block;
}

.carousel-controls, .slideshow-controls {
    text-align: center;
    margin-top: clamp(0.5rem, 2vw, 1rem);
}

.carousel-prev, .carousel-next, .slide-prev, .slide-next {
    background: #A9A9A9;
    color: #FFFFFF;
    border: none;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    cursor: pointer;
    margin: 0 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover, .slide-prev:hover, .slide-next:hover {
    background: #D4AF37;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    height: 60vh;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide.fade-in {
    animation: fadeInSlide 0.5s ease forwards;
}

.slide.fade-out {
    animation: fadeOutSlide 0.5s ease forwards;
}

.slide.paper-fold {
    animation: paperFold 0.5s ease forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOutSlide {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes paperFold {
    0% { transform: skewX(20deg) scale(1.2); opacity: 0; }
    50% { transform: skewX(-10deg) scale(1.1); opacity: 0.5; }
    100% { transform: skewX(0) scale(1); opacity: 1; }
}

.caption {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    text-align: center;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-family: 'Poppins', sans-serif;
}

.slideshow-dots {
    text-align: center;
    margin-top: 0.5rem;
}

.dot {
    height: 10px;
    width: 10px;
    background: #A9A9A9;
    border-radius: 50%;
    display: inline-block;
    margin: 0 0.3rem;
    cursor: pointer;
}

.dot.active {
    background: #D4AF37;
}

.faq-item {
    margin-bottom: 0.5rem;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    background: #2A3439;
    border-radius: 8px;
    color: #007BFF;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.faq-answer {
    display: none;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    background: #1C2526;
    border: 1px solid #A9A9A9;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.faq-item.active .faq-answer {
    display: block;
}

.blog-filters {
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-align: center;
}

.filter-btn {
    background: #2A3439;
    border: 1px solid #A9A9A9;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 3vw, 1rem);
    margin: 0 0.3rem;
    cursor: pointer;
    border-radius: 8px;
    color: #007BFF;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.filter-btn.active, .filter-btn:hover {
    background: #007BFF;
    color: #FFFFFF;
}

.read-more {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.read-more:hover {
    color: #D4AF37;
}

.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    background: #2A3439;
    border: 1px solid #A9A9A9;
    color: #FFFFFF;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    border-radius: 8px;
    width: 100%;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.error-message {
    color: #D32F2F;
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    display: none;
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 5px rgba(212,175,55,0.5);
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 2rem auto;
}

.service-item {
    background: #2A3439;
    border: 1px solid #A9A9A9;
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 169, 169, 0.3);
}

.service-item i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #D4AF37;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: #007BFF;
    margin-bottom: 1rem;
}

.service-item p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.impact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1000px;
    margin: 2rem auto;
}

.impact-item {
    background: #2A3439;
    border: 1px solid #A9A9A9;
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 169, 169, 0.3);
}

.impact-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.impact-item .counter {
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: #D4AF37;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: #FFFFFF;
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}

.email-btn {
background: #007BFF;
color: #FFFFFF;
}

.contact-form {
max-width: 600px;
margin: 0 auto;
}

.contact-method {
margin-bottom: 2rem;
text-align: center;
}

.method-label {
display: block;
margin-bottom: 1rem;
font-weight: 600;
color: #D4AF37;
font-size: clamp(1rem, 3vw, 1.1rem);
}

.method-options {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.method-option {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border: 2px solid #A9A9A9;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
background: #2A3439;
}

.method-option:hover {
border-color: #D4AF37;
transform: translateY(-2px);
}

.method-option input[type="radio"] {
display: none;
}

.method-option input[type="radio"]:checked + .method-icon {
transform: scale(1.2);
}

.method-option input[type="radio"]:checked ~ span {
color: #D4AF37;
font-weight: 600;
}

.method-option input[type="radio"]:checked + .method-icon,
.method-option input[type="radio"]:checked ~ span {
color: #D4AF37;
}

.method-option:has(input[type="radio"]:checked) {
border-color: #D4AF37;
background: rgba(212, 175, 55, 0.1);
}

.method-icon {
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.method-option span {
color: #FFFFFF;
font-weight: 500;
transition: color 0.3s ease;
}

.contact-form .form-group {
margin-bottom: 1rem;
}

footer {
    background: #151B1D;
    color: #FFFFFF;
    text-align: center;
    padding: clamp(1rem, 5vw, 2rem);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-content h3 {
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
}

.footer-content p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.footer-content .social-icons {
    margin-top: 1.5rem;
}

.footer-content .social-icons a {
    color: #FFFFFF;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-content .social-icons a:hover {
    color: #D4AF37;
}

footer p {
    color: #A9A9A9;
    margin-top: 2rem;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #A9A9A9;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #A9A9A9;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.powered-by {
    color: #A9A9A9;
}

.supreonix-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.supreonix-link:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.call-btn {
    background: #28a745;
}

.whatsapp-btn {
    background: #25D366;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    animation: fadeIn 1s ease-out forwards;
}

.service-item {
    animation-delay: 0.2s;
}

.service-item:nth-child(2) {
    animation-delay: 0.4s;
}

.service-item:nth-child(3) {
    animation-delay: 0.6s;
}

.impact-item {
    animation-delay: 0.2s;
}

.impact-item:nth-child(2) {
    animation-delay: 0.4s;
}

.impact-item:nth-child(3) {
    animation-delay: 0.6s;
}

.impact-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 600px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: clamp(3rem, 10vw, 3.5rem);
        left: 0;
        width: 100%;
        background: rgba(28, 37, 38, 0.95);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        border: 1px solid #A9A9A9;
    }
    .nav-menu.active {
        display: flex;
    }
    nav li {
        margin: 0.5rem 0;
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
    }
    section {
        padding: clamp(1.5rem, 8vw, 3rem) clamp(0.5rem, 3vw, 1rem);
    }
    
    /* Hero responsive */
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        gap: 1rem;
        text-align: center;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-logo-top {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: 1rem;
        order: 1;
        padding: 2rem 0 1rem 0;
        margin-top: 1rem;
    }
    
    .hero-logo-top h1 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        line-height: 1.2;
        margin: 0;
        padding: 0.5rem;
    }
    
    .hero-content {
        order: 2;
        grid-column: 1;
        justify-self: center;
    }
    
    .hero-menu {
        position: fixed;
        top: auto;
        right: 1rem;
        bottom: 5rem;
        transform: none;
        z-index: 100;
        order: 3;
    }
    
    .circular-menu {
        width: 180px;
        height: 180px;
    }
    
    .menu-item {
        width: 70px;
        height: 70px;
    }
    
    .menu-item a {
        font-size: 0.6rem;
        padding: 0.3rem;
    }
    .hero {
        background: url('https://i.imgur.com/tsRtJHS.jpeg') no-repeat left center/contain;
        background-attachment: scroll;
        background-color: #1C2526;
        color: #FFFFFF;
        min-height: 100vh;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
        width: 60%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.5rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        gap: 0.3rem;
        text-align: center;
        height: auto;
        min-height: 70vh;
    }
    
    .hero-logo-top {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: 0.3rem;
        order: 1;
        padding: 0.5rem 0 0.3rem 0;
        margin-top: 0.3rem;
    }
    
    .hero-logo-top h1 {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.0;
        margin: 0;
        padding: 0.2rem;
    }
    
    .hero-content {
        order: 2;
        grid-column: 1;
        justify-self: center;
    }
    
    .hero-main-text {
        font-size: clamp(1rem, 3vw, 1.3rem);
        line-height: 1.0;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        margin: 0.3rem 0;
        line-height: 1.0;
    }
    
    .service-container, .impact-container {
        grid-template-columns: 1fr;
    }
    .impact-container {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
    .fab-container {
        bottom: 15px;
        right: 15px;
        z-index: 99;
    }
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: clamp(3rem, 10vw, 3.5rem);
        left: 0;
        width: 100%;
        background: rgba(28, 37, 38, 0.95);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        border: 1px solid #A9A9A9;
    }
    .nav-menu.active {
        display: flex;
    }
    
    /* Hero responsive tablet */
    .hero-container {
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-logo-top {
        position: relative;
        top: auto;
        left: auto;
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .hero-content {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }
    
    .hero-menu {
        position: fixed;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    .circular-menu {
        width: 220px;
        height: 220px;
    }
    
    .menu-item {
        width: 100px;
        height: 100px;
    }
    
    .service-container, .impact-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}