html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Global Styles */
body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: 70px;
}

/* Navigation Styles */
.nav {
    background-color: #f8f9ff;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #00b4d8;
}

.nav-link.active {
    color: #00b4d8;
    font-weight: 600;
}

.profile-button {
    background-color: #ff7849;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.profile-button:hover {
    background-color: #ff6b6b;
}

/* Mobile menu button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #f8f9ff;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.hidden {
    display: none;
}

.md\:hidden {
    @media (min-width: 768px) {
        display: none;
    }
}

.md\:flex {
    @media (min-width: 768px) {
        display: flex;
    }
}

/* Links and Buttons */
.text-gray-800 {
    color: #2d3748;
}

.hover\:text-orange-500:hover {
    color: #ff6b6b;
}

.transition-colors {
    transition: color 0.2s ease;
}

.bg-orange-500 {
    background-color: #ff6b6b;
}

.text-white {
    color: #ffffff;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.hover\:bg-orange-600:hover {
    background-color: #ff5252;
}

/* Mobile Menu */
#mobile-menu {
    margin-top: 1rem;
    padding: 1rem;
}

.block {
    display: block;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Text Styles */
.text-cyan-500 {
    color: #66d9ef;
}

.font-bold {
    font-weight: bold;
}

.text-xl {
    font-size: 1.25rem;
}

/* Sections */
.section {
    padding: 2rem 1rem;
}

.text-center {
    text-align: center;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* Grid Layout */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.sm\:grid-cols-2 {
    @media (min-width: 640px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.md\:grid-cols-4 {
    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Styles */
.bg-gray-100 {
    background-color: #f7fafc;
}

.p-4 {
    padding: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #eaf6ff, #ffffff);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Circle Container and Logo */
.circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, 
        rgba(234, 246, 255, 0.9) 0%,
        rgba(234, 246, 255, 0.7) 30%,
        rgba(234, 246, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 70%);
    overflow: visible;
}

.techno-logo {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    transform: none;
    top: auto;
    left: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .circle-container {
        width: 300px;
        height: 300px;
        margin-right: 0;
    }

    .techno-logo {
        width: 200px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* Calendar Section */
.calendar-section {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    margin: 2rem 0;
}

.calendar-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

.calendar-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.calendar-left {
    flex: 0 0 200px;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calendar-left label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 500;
}

.calendar-left input[type="date"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.calendar-right {
    flex: 1;
    overflow: hidden;
}

.events-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-behavior: smooth;
}

.event-card {
    flex: 0 0 300px;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-card ul {
    list-style: none;
    padding: 0;
}

.event-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.event-card li:last-child {
    border-bottom: none;
}

/* Chat Styles */
.chat-container {
    height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Dashboard Styles */
.dashboard-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Footer Section */
.footer {
    background-color: #f9f9f9;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a img {
    width: 35px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links div h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #333;
    cursor: pointer;
}

.footer-links li:hover {
    text-decoration: underline;
} 