:root {
    --primary: #ffcc00;
    --primary-dark: #e6b800;
    --black: #000000;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --text-main: #333333;
    --text-muted: #666666;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
}

.text-yellow {
    color: var(--primary);
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--black);
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 2rem 0 3rem; /* Shifted further right as requested (2x) */
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0; /* Removed padding to touch edges */
    margin-right: 20px;
    transition: var(--transition);
}

.header-logo {
    height: 100px; /* Increased size to touch vertical edges more */
    width: auto;
    display: block;
    transition: var(--transition);
}

/* Enhanced black header with gray shading */
.header {
    background-color: #000000;
    color: var(--white);
    padding: 0.1rem 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.2); /* Gray shadow */
}

.logo:hover .header-logo {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary);
}

.mobile-cta-item {
    display: none !important;
}

.header-cta .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    opacity: 0.8;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 80%);
    opacity: 0.15;
    transform: skewX(-20deg);
}

/* Features */
.features {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
/* Internal Page Components */
.page-banner {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 4px solid var(--primary);
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.page-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1rem;
    opacity: 0.8;
}

.section {
    padding: 6rem 0;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mission-vision .card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

.mission-vision .card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

/* Guidance Styles */
.guidance-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

@media (max-width: 900px) {
    .guidance-grid-large {
        grid-template-columns: 1fr;
    }
}

/* Slider Styles */
.about-slider-section {
    padding-bottom: 5rem;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    min-width: 100%;
    background-color: #000; /* Backdrop for contained images */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 550px; /* Slightly taller */
    object-fit: contain; /* Show the entire image */
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--black);
}

.slider-btn.prev { left: 0; border-radius: 0 10px 10px 0; }
.slider-btn.next { right: 0; border-radius: 10px 0 0 10px; }

/* Contact Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card-modern {
    background: var(--white);
    padding: 3.5rem 2rem; /* Consistent large padding */
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 204, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px; /* Minimum height for large look */
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Reset link decoration */
    color: inherit;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.info-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.15);
    border-color: var(--primary);
}

.info-card-modern:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 4rem; /* Large icons */
    margin-bottom: 1.5rem;
    display: inline-block;
}

.info-card-modern h2, .info-card-modern h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.8rem;
}

.info-card-modern p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 5px solid var(--white);
}

.w-100 {
    width: 100%;
}

/* Global Responsive Adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .header-logo {
        height: 60px;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .header-cta {
        display: none !important;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .mobile-cta-item {
        display: block !important;
        margin-top: 2rem;
    }

    .mobile-cta-item .btn {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
    }

    .hero {
        padding: 6rem 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .slide img {
        height: 300px; /* Smaller slider on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
}
