* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 60px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .logo img {
    height: 40px;
    object-fit: contain;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li {
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar ul li:hover {
    background: #f5f5f5;
    color: #fbbf24;
}

.navbar ul .active {
    background: #fbbf24;
    color: #000;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    min-height: 70vh;
}

.hero-text {
    max-width: 600px;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: #fbbf24;
}

.hero p {
    margin: 20px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.btn {
    background: #fbbf24;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    color: #000;
    font-size: 16px;
}

.btn:hover {
    background: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.hero-image {
    position: relative;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Projects Section */
.projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    background: #fafafa;
}

.projects h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.projects > p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.project-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background-color: #f1f3f4;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e8eaed;
    transition: all 0.2s ease;
}

.tags span:hover {
    background-color: #e8f0fe;
    color: #1a73e8;
    border-color: #dadce0;
}

/* Recommendations Section */
.recommendations {
    padding: 80px 60px;
    background: #f8fafc;
    text-align: center;
}

.recommendations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.recommendations > p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    transform: translateX(-350px);
}

.rec-card {
    min-width: 320px;
    width: 320px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rec-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.rec-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f1f1;
    transition: border-color 0.3s ease;
}

.rec-card:hover .user img {
    border-color: #fbbf24;
}

.user-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.user-info span {
    color: #888;
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #f1f1f1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.indicator:hover {
    background: #9ca3af;
}

/* Contact Section */
.contact {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 500px;
}

.contact-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-left input,
.contact-left textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.contact-left input:focus,
.contact-left textarea:focus {
    border-color: #fbbf24;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.contact-left input::placeholder,
.contact-left textarea::placeholder {
    color: #9ca3af;
}

.contact-left textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-left .btn {
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.contact-left .btn:hover {
    background: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.contact-right {
    flex: 1;
    max-width: 400px;
}

.contact-right h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card .icon {
    flex-shrink: 0;
}

.contact-info-card .icon span {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.contact-info-card .icon svg {
    width: 24px;
    height: 24px;
}

.info-content {
    flex: 1;
}

.info-content div {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.info-content div:last-child {
    margin-bottom: 0;
}

.info-content strong {
    color: #374151;
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

/* Footer Styles - Corrected and Enhanced */
.footer-container {
    background: #f5f5f5;
    padding: 60px 0 40px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Logos Section */
.top-logos {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

/* Individual logo sizing */
.logo-1 img { width: 80px; }
.logo-2 img { width: 90px; }
.logo-3 img { width: 85px; }
.logo-4 img { width: 80px; }

/* Glasses Avatar */
.glasses-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding-left: 0;
}

.glasses {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.glasses:hover {
    transform: scale(1.1) rotate(5deg);
}

.glasses img {
    width: 100px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    object-fit: contain;
}

/* Main Content Area */
.main-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

/* Left Section - Rating cards */
.left-section {
    width: 280px;
}

.rating-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.rating-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    width: 180px;
    height: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.rating-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rating-card:hover .image-container img {
    transform: scale(1.05);
}

.rating-text {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    margin-left: 2px;
}

/* Right Section - Content Links */
.right-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    align-items: start;
    flex: 1;
    margin-top: 0;
    height: fit-content;
}

.links-column h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-list li {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.links-list li:hover {
    color: #667eea;
    transform: translateX(5px);
    font-weight: 600;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    transform: translateX(5px) scale(1.05);
}

/* LinkedIn */
.linkedin-link .social-icon {
    background: #0077b5;
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-link .social-text {
    color: #0077b5;
    font-size: 14px;
    font-weight: 600;
}

/* Instagram */
.instagram-link .social-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.instagram-link .social-text {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
}

/* Facebook */
.facebook-link .social-icon {
    width: 28px;
    height: 28px;
    background: #1877f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.facebook-link .social-text {
    color: #1877f2;
    font-size: 14px;
    font-weight: 600;
}

/* Copyright */
.copyright {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 60px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 400;
}

.copyright-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
}

/* Floating animation for glasses */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 40px;
    }
    
    .hero {
        padding: 60px 40px;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .main-content {
        flex-direction: column;
        gap: 40px;
    }

    .left-section {
        width: 100%;
    }

    .right-section {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    .top-logos {
        gap: 60px;
    }

    .footer-content {
        padding: 0 30px;
    }

    .rating-cards {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 12px 20px;
    }
    
    .navbar ul {
        gap: 15px;
    }
    
    .navbar ul li {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    
    .footer-content {
        padding: 0 20px;
    }

    .top-logos {
        gap: 40px;
        margin-bottom: 60px;
    }

    .right-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .glasses-container {
        justify-content: center;
    }

    .main-content {
        gap: 30px;
    }

    .logo-item img {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar ul {
        gap: 10px;
    }
    
    .navbar ul li {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .top-logos {
        flex-direction: column;
        gap: 30px;
    }

    .logo-item img {
        max-width: 60px;
    }

    .footer-container {
        padding: 40px 0 30px 0;
    }
}