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

:root {
    --primary-color: #0a2540;
    --secondary-color: #4FC3F7;
    --accent-color: #81C784;
    --text-primary: #0a2540;
    --text-secondary: #546E7A;
    --text-light: #ffffff;
    --background: #f8fafb;
    --surface: #ffffff;
    --border-color: #e1e8ed;
    --hover-bg: #f0f4f7;
    --dark-bg: #0a2540;
    --gradient-start: #0a2540;
    --gradient-end: #1a3a5a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 195, 247, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(129, 199, 132, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(10, 37, 64, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        120deg,
        transparent,
        transparent 200px,
        rgba(10, 37, 64, 0.02) 200px,
        rgba(10, 37, 64, 0.02) 400px
    );
    pointer-events: none;
    z-index: 0;
    animation: drift 30s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, 5px);
    }
    50% {
        transform: translate(5px, -10px);
    }
    75% {
        transform: translate(-5px, 10px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Notice Banner */
.notice-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 10px 0;
    text-align: center;
    z-index: 1001;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.notice-banner p {
    margin: 0;
    line-height: 1.4;
    display: inline-block;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .notice-banner p {
        animation: scroll-mobile 20s linear infinite;
        padding-right: 80px;
    }
    
    .notice-banner p::after {
        content: " • Please note: This is our temporary webpage. Our official website is currently under development. Vinaka";
        padding-left: 80px;
    }
}

@keyframes scroll-mobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 769px) {
    .notice-banner {
        padding: 10px 20px;
        white-space: normal;
    }
    
    .notice-banner p {
        animation: none;
        padding: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    padding: 5px;
}

/* Logo text removed - using image only */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(129, 199, 132, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.02) 100px,
        rgba(255, 255, 255, 0.02) 200px
    );
    transform: rotate(-15deg);
    z-index: 1;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: 
        repeating-radial-gradient(circle at 0% 50%, transparent 0, rgba(79, 195, 247, 0.05) 30px, transparent 60px),
        repeating-radial-gradient(circle at 100% 50%, transparent 0, rgba(129, 199, 132, 0.05) 30px, transparent 60px);
    z-index: 1;
    opacity: 0.6;
}

.wave-pattern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.2), transparent);
    z-index: 2;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--surface);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--hover-bg);
    border-radius: 20px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.contact-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* Footer */
.footer {
    padding: 80px 0 40px;
    background: rgba(10, 37, 64, 0.95);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.7;
    font-size: 14px;
}

/* Tablet responsiveness */
@media (max-width: 992px) and (min-width: 769px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tagline {
        font-size: 24px;
    }
    
    .about-story h3,
    .about-values h3 {
        font-size: 28px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .notice-banner {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .navbar {
        top: 35px;
        background: rgba(251, 251, 253, 0.95);
    }
    
    .nav-container {
        height: 55px;
    }
    
    .logo-img {
        height: 40px;
        padding: 3px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .hamburger span {
        background: var(--text-primary);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 17px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-logo-image {
        width: 200px;
        height: 200px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .about, .services, .gallery, .contact {
        padding: 80px 0;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-hero {
        margin-bottom: 50px;
    }
    
    .tagline {
        font-size: 22px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-story h3 {
        font-size: 26px;
    }
    
    .story-text {
        font-size: 16px;
    }
    
    .origins {
        font-size: 14px;
        padding: 16px;
    }
    
    .mission-card,
    .vision-card {
        padding: 24px;
    }
    
    .about-values h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 28px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact form mobile styles removed */
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-tagline {
    margin-top: 20px;
}

.tagline {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.company-name {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* About Main Content */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.about-story h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.origins {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    padding: 20px;
    background: var(--background);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    margin: 0;
}

/* Mission Vision Cards */
.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.mission-card h4,
.vision-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Values Section */
.about-values {
    text-align: center;
}

.about-values h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--surface);
    padding: 36px 24px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: -10px;
    margin-bottom: 60px;
    font-weight: 400;
}

.gallery-section {
    margin-bottom: 80px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.product-info {
    margin-bottom: 40px;
}

.section-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.product-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
    max-width: 800px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Contact form styles removed - form no longer exists */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--secondary-color);
    color: white;
}

::-moz-selection {
    background: var(--secondary-color);
    color: white;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.service-card,
.gallery-item,
.contact-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Gallery */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .product-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-section {
        margin-bottom: 60px;
    }
    
    .product-info {
        margin-bottom: 30px;
    }
    
    .section-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .product-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        border-radius: 16px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}