/* ===========================================
   COSMIC THEME OVERLAY FOR INDEX.HTML
   This file overrides key styles to apply 
   the modern cosmic theme while preserving 
   existing functionality.
   =========================================== */

/* Fonts loaded via HTML preconnect for better performance */

/* Root Variables */
:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.5);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --accent-primary: #8b5cf6;
    --accent-secondary: #667eea;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(139, 92, 246, 0.2);
}

/* Base Overrides */
body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

/* Stars Animation Background */
.cosmic-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cosmic-stars .star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Header - Fully Transparent Initially */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 20px 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 1000 !important;
    /* Fully Transparent */
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Beautiful Gradient Glass on Scroll */
header.sticky {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.85) 0%,
        rgba(118, 75, 162, 0.85) 50%,
        rgba(139, 92, 246, 0.85) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    padding: 12px 50px !important;
}

/* Animated shine effect */
header.sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: headerShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {
    0% { left: -50%; }
    50%, 100% { left: 100%; }
}

/* Navigation links adapt to background */
header .navigation a {
    transition: all 0.3s ease !important;
}

header.sticky .navigation a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

header.sticky .navigation a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

header.sticky .brand {
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header.sticky .navigation .dropdown .dropdown-btn {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

header.sticky .navigation .dropdown .dropdown-btn:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

header .brand {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-transform: none !important;
}

/* Navigation - All in One Line */
header .navigation {
    position: static !important;
    display: flex !important;
    gap: 30px !important;
    align-items: center !important;
}

header .navigation a {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    margin-left: 0 !important;
}

header .navigation > a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    transition: width 0.3s ease !important;
}

header .navigation > a:hover::after {
    width: 100% !important;
}

header .navigation a:hover {
    color: #06b6d4 !important;
}

header.sticky .navigation a:hover {
    color: #06b6d4 !important;
}

/* Dropdown */
header .navigation .dropdown {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 0 !important;
}

header .navigation .dropdown .dropdown-btn {
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 0 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

/* Underline effect same as other nav links */
header .navigation .dropdown .dropdown-btn::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    transition: width 0.3s ease !important;
}

header .navigation .dropdown .dropdown-btn:hover::after {
    width: 100% !important;
}

header .navigation .dropdown .dropdown-btn:hover {
    color: #06b6d4 !important;
}

#caret-icon {
    transition: transform 0.3s ease !important;
    font-size: 0.75rem !important;
    color: inherit !important;
}

.rotate-icon {
    transform: rotate(90deg) !important;
}

/* Dropdown Content */
header .navigation .dropdown .dropdown-content {
    display: none;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    padding: 10px 0 !important;
    min-width: 220px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    margin-top: 10px !important;
}

header .navigation .dropdown .dropdown-content.show {
    display: block !important;
}

header .navigation .dropdown .dropdown-content a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    color: var(--text-secondary) !important;
    transition: all 0.3s ease !important;
}

header .navigation .dropdown .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #06b6d4 !important;
}

header .navigation .dropdown .dropdown-content a::after {
    display: none !important;
}

/* Main Hero Section */
.main {
    background: var(--bg-primary);
}

.main .content h1 {
    font-family: 'Space Grotesk', sans-serif;
}

.main .content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-text h3 {
    background: linear-gradient(135deg, #667eea, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons Cosmic Style */
.btn {
    background: var(--gradient-primary) !important;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Social Media Icons */
.media-icons a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.media-icons a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title, .title h2, .heading {
    font-family: 'Space Grotesk', sans-serif !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading span {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: var(--bg-primary);
}

.about .img-card {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.about .content-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.about .paragraph-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Skills Section */
.skills {
    background: var(--bg-secondary);
}

.skills .content-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.skills p {
    color: var(--text-secondary);
}

.skills .bar .info span {
    color: var(--text-primary);
    font-weight: 600;
}

.skills .bar .line {
    background: rgba(139, 92, 246, 0.15);
    border-radius: 25px;
    height: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skills .bar .line::before {
    border-radius: 25px;
    width: 0;
    box-shadow: 0 0 20px currentColor;
}

/* Vibrant cosmic gradients */
.skills .bar .python::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700) !important;
    box-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.skills .bar .c::before {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5, #667eea) !important;
    box-shadow: 0 0 20px rgba(58, 123, 213, 0.5);
}

.skills .bar .mathematica::before {
    background: linear-gradient(90deg, #f7971e, #ffd200, #fff200) !important;
    box-shadow: 0 0 20px rgba(255, 210, 0, 0.5);
}

.skills .bar .gnuplot::before {
    background: linear-gradient(90deg, #11998e, #38ef7d, #7fff00) !important;
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.5);
}

.skills .bar .latex::before {
    background: linear-gradient(90deg, #667eea, #764ba2, #f953c6) !important;
    box-shadow: 0 0 20px rgba(118, 75, 162, 0.5);
}

/* Elastic bounce animation */
@keyframes skillBounce {
    0% { width: 0; opacity: 0.5; }
    50% { opacity: 1; }
    60% { width: var(--skill-width); }
    75% { width: calc(var(--skill-width) - 3%); }
    90% { width: calc(var(--skill-width) + 1%); }
    100% { width: var(--skill-width); opacity: 1; }
}

/* Skill widths via CSS variables */
.skills.animate-skills .bar .python { --skill-width: 90%; }
.skills.animate-skills .bar .c { --skill-width: 70%; }
.skills.animate-skills .bar .mathematica { --skill-width: 65%; }
.skills.animate-skills .bar .gnuplot { --skill-width: 80%; }
.skills.animate-skills .bar .latex { --skill-width: 95%; }

.skills.animate-skills .bar .line::before {
    animation: skillBounce 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Staggered animation delays */
.skills.animate-skills .bar:nth-child(1) .line::before { animation-delay: 0s; }
.skills.animate-skills .bar:nth-child(2) .line::before { animation-delay: 0.12s; }
.skills.animate-skills .bar:nth-child(3) .line::before { animation-delay: 0.24s; }
.skills.animate-skills .bar:nth-child(4) .line::before { animation-delay: 0.36s; }
.skills.animate-skills .bar:nth-child(5) .line::before { animation-delay: 0.48s; }

/* Services Section */
.services {
    background: var(--bg-primary);
}

.services .card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.services .card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.services .service-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .info h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.services .info p {
    color: var(--text-secondary);
}

/* Events Subsection */
.events-subsection {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
}

.subsection-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

.events-container {
    color: var(--text-secondary);
}

.events-group h3 {
    color: var(--accent-primary);
}

.events-group li {
    color: var(--text-secondary);
}

.view-more-btn {
    display: inline-block !important;
    margin-top: 15px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

.view-more-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

/* Calendar */
.calendar {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.calendar h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

/* Subscribe Section */
.events-subscribe {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.events-subscribe p {
    color: var(--text-secondary);
}

.events-subscribe input[type="email"] {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 12px 16px;
}

.events-subscribe button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-subscribe button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Work Section */
.work {
    background: var(--bg-secondary);
}

.work-subtitle {
    color: var(--text-secondary);
}

.research-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.research-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary) !important;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.research-badge {
    background: var(--gradient-primary) !important;
}

.research-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary) !important;
}

.research-authors, .research-venue, .research-abstract {
    color: var(--text-secondary) !important;
}

.research-tags span {
    background: rgba(139, 92, 246, 0.2) !important;
    color: var(--accent-primary) !important;
    border-radius: 50px;
}

.research-btn.primary {
    background: var(--gradient-primary) !important;
    border-radius: 8px;
}

.view-all-btn {
    background: var(--gradient-primary) !important;
    border-radius: 12px;
    color: #fff !important;
}

/* Hobbies Section */
.hobbies {
    background: var(--bg-primary);
}

.hobby-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.hobby-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary) !important;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.hobby-card i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hobby-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.hobby-card p {
    color: var(--text-secondary);
}

.hobby-card label {
    color: var(--text-secondary);
}

.hobby-card select {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px 12px;
}

/* ============================================
   GALLERY SECTION - COSMIC REDESIGN
   ============================================ */
.gallery {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    padding: 6rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Animated background particles */
.gallery::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(167, 139, 250, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(6, 182, 212, 0.4), transparent) !important;
    background-size: 200px 200px !important;
    animation: galleryStars 20s linear infinite !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
}

@keyframes galleryStars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.gallery .heading {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    animation: none !important;
    position: relative !important;
    z-index: 2 !important;
}

.gallery .heading span {
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 50%, #667eea 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    position: relative !important;
}

/* Subtitle under heading */
.gallery-subtitle {
    text-align: center !important;
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Gallery Container Grid */
.gallery-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Gallery Box - Modern Card Design */
.gallery-box {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px) !important;
    aspect-ratio: 4/3 !important;
}

/* Animated border glow */
.gallery-box::before {
    content: '' !important;
    position: absolute !important;
    inset: -2px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #667eea, #764ba2, #8b5cf6, #06b6d4, #667eea) !important;
    background-size: 300% 300% !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
    animation: borderGlow 4s ease infinite !important;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gallery-box:hover::before {
    opacity: 1 !important;
}

.gallery-box:hover {
    transform: translateY(-15px) scale(1.02) !important;
    border-color: transparent !important;
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.gallery-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease !important;
}

.gallery-box:hover img {
    transform: scale(1.15) !important;
    filter: brightness(0.7) !important;
}

/* Gallery Layer - Overlay Content */
.gallery-layer {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        rgba(15, 23, 42, 0.4) 40%,
        rgba(15, 23, 42, 0.95) 100%
    ) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 1.5rem !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.gallery-box:hover .gallery-layer {
    opacity: 1 !important;
    transform: none !important;
}

.gallery-layer h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: #fff !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    transform: translateY(20px) !important;
    transition: transform 0.5s ease 0.1s !important;
}

.gallery-box:hover .gallery-layer h4 {
    transform: translateY(0) !important;
}

.gallery-layer p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    transform: translateY(20px) !important;
    transition: transform 0.5s ease 0.2s !important;
}

.gallery-box:hover .gallery-layer p {
    transform: translateY(0) !important;
}

/* Gallery Info Bar */
.gallery-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 0 0 20px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
}

.gallery-box:hover .gallery-info {
    transform: translateY(0) !important;
}

.gallery-info span {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 0.85rem !important;
    margin-right: 0 !important;
}

.gallery-info .like-icon {
    cursor: pointer !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.gallery-info .like-icon:hover {
    transform: scale(1.2) !important;
    color: #f472b6 !important;
}

.gallery-info .like-icon.liked {
    color: #f472b6 !important;
    animation: likePopGallery 0.4s ease !important;
}

@keyframes likePopGallery {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.gallery-info .share {
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}

.gallery-info .share:hover {
    color: #06b6d4 !important;
}

/* Hide the old dropdown in gallery */
.dropdown1 {
    display: none !important;
}

/* See More Button - Modern Style */
.button-container {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

#seeMoreBtn {
    display: inline-block !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%) !important;
    background-size: 200% 200% !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    padding: 18px 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
}

#seeMoreBtn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.5s ease !important;
}

#seeMoreBtn:hover::before {
    left: 100% !important;
}

#seeMoreBtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 15px 35px rgba(139, 92, 246, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2) !important;
    background-position: 100% 0 !important;
}

/* ============================================
   GALLERY SLIDESHOW - Featured & Latest Rows
   ============================================ */

.gallery-row {
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.gallery-row-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem !important;
    padding-left: 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.gallery-row-title i {
    background: linear-gradient(135deg, #667eea 0%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 1.2rem !important;
}

/* Slider Wrapper - masks overflow */
.gallery-slider-wrapper {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 10px 0 !important;
}

/* Gradient fade edges */
.gallery-slider-wrapper::before,
.gallery-slider-wrapper::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.gallery-slider-wrapper::before {
    left: 0 !important;
    background: linear-gradient(to right, var(--bg-secondary), transparent) !important;
}

.gallery-slider-wrapper::after {
    right: 0 !important;
    background: linear-gradient(to left, var(--bg-secondary), transparent) !important;
}

/* Slider Track */
.gallery-slider {
    display: flex !important;
    gap: 1.5rem !important;
    width: max-content !important;
}

/* Featured slider - scrolls left */
.featured-slider {
    animation: slideLeft 30s linear infinite !important;
}

/* Latest slider - scrolls right */
.latest-slider {
    animation: slideRight 35s linear infinite !important;
}

/* Pause on hover */
.gallery-slider-wrapper:hover .gallery-slider {
    animation-play-state: paused !important;
}

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

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

/* Individual Slide */
.gallery-slide {
    flex-shrink: 0 !important;
    width: 320px !important;
    height: 220px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.gallery-slide::before {
    content: '' !important;
    position: absolute !important;
    inset: -2px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #667eea, #764ba2, #8b5cf6, #06b6d4, #667eea) !important;
    background-size: 300% 300% !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    animation: borderGlow 4s ease infinite !important;
}

.gallery-slide:hover::before {
    opacity: 1 !important;
}

.gallery-slide:hover {
    transform: translateY(-10px) scale(1.05) !important;
    border-color: transparent !important;
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.gallery-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease, filter 0.4s ease !important;
}

.gallery-slide:hover img {
    transform: scale(1.1) !important;
    filter: brightness(0.6) !important;
}

/* Slide Overlay */
.slide-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(15, 23, 42, 0.95) 100%
    ) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 1.2rem !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.gallery-slide:hover .slide-overlay {
    opacity: 1 !important;
}

.slide-overlay h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.3rem !important;
    transform: translateY(15px) !important;
    transition: transform 0.4s ease 0.1s !important;
}

.gallery-slide:hover .slide-overlay h4 {
    transform: translateY(0) !important;
}

.slide-overlay p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem !important;
    transform: translateY(15px) !important;
    transition: transform 0.4s ease 0.15s !important;
}

.gallery-slide:hover .slide-overlay p {
    transform: translateY(0) !important;
}

/* Responsive Slides */
@media (max-width: 768px) {
    .gallery-slide {
        width: 260px !important;
        height: 180px !important;
    }
    
    .gallery-row-title {
        font-size: 1.3rem !important;
        padding-left: 1rem !important;
    }
    
    .gallery-slider-wrapper::before,
    .gallery-slider-wrapper::after {
        width: 50px !important;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        width: 220px !important;
        height: 160px !important;
    }
    
    .slide-overlay h4 {
        font-size: 1rem !important;
    }
    
    .slide-overlay p {
        font-size: 0.8rem !important;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

.contact .title .section-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.5rem !important;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.contact .card {
    background: rgba(30, 41, 59, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease;
}

.contact .card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.contact .contact-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem !important;
}

.contact .info h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #f1f5f9 !important;
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
}

.contact .info a {
    color: #94a3b8 !important;
    text-decoration: none !important;
}

.contact .info a:hover {
    color: #8b5cf6 !important;
}

.contact-form {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary) !important;
    outline: none;
}

.contact-form .send-btn {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Modal Cosmic Style */
.modal-content {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    color: var(--text-primary);
}

.modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content .close-btn {
    color: var(--text-secondary);
}

.modal-content .close-btn:hover {
    color: var(--accent-primary);
}

.education-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.education-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-primary);
}

.education-item .institution {
    color: var(--text-primary);
}

.education-item .duration {
    color: var(--accent-secondary);
}

.education-item .details {
    color: var(--text-secondary);
}

/* Footer Cosmic Style */
.footer {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--glass-border);
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: var(--text-secondary);
}

/* Scroll to Top Button */
.scrollToTop-btn {
    background: var(--gradient-primary) !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.scrollToTop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Weather Box */
.floating-weather-box {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    color: var(--text-primary);
}

/* Reveal Animation Override */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1rem 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    section {
        padding: 80px 100px;
    }
    
    header {
        padding: 15px 30px !important;
    }
    
    header .navigation {
        gap: 20px !important;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 50px;
    }
    
    header {
        padding: 15px 25px !important;
    }
    
    header .navigation {
        gap: 15px !important;
    }
    
    header .navigation a {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 1040px) {
    header .navigation {
        display: none !important;
    }
    
    header .navigation.active {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: rgba(15, 15, 35, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 80px 20px 30px !important;
        gap: 5px !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        z-index: 888 !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5) !important;
        overflow-y: auto !important;
    }
    
    header .navigation.active a {
        width: 100% !important;
        text-align: left !important;
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
        color: #f1f5f9 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
    }
    
    header .navigation.active a:hover {
        background: rgba(139, 92, 246, 0.2) !important;
        color: #a78bfa !important;
    }
    
    header .navigation.active .dropdown {
        width: 100% !important;
    }
    
    header .navigation.active .dropdown .dropdown-btn {
        width: 100% !important;
        text-align: left !important;
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
        justify-content: space-between !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    header .navigation.active .dropdown .dropdown-content {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        background: rgba(30, 30, 60, 0.5) !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    header .navigation.active .dropdown .dropdown-content a {
        padding: 12px 40px !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .menu-btn {
        display: block !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px;
    }

    header {
        padding: 15px 20px !important;
    }

    header.sticky {
        padding: 10px 20px !important;
    }
}

/* Menu Button Mobile Style */
.menu-btn {
    display: none;
    background: var(--text-primary);
    width: 25px;
    height: 3px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-btn::before,
.menu-btn::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn::before {
    top: -8px;
}

.menu-btn::after {
    top: 8px;
}

@media (max-width: 1040px) {
    .menu-btn {
        display: block !important;
    }
    
    /* Menu button animation when active */
    .menu-btn.active {
        background: transparent !important;
    }
    
    .menu-btn.active::before {
        transform: rotate(45deg) !important;
        top: 0 !important;
    }
    
    .menu-btn.active::after {
        transform: rotate(-45deg) !important;
        top: 0 !important;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Small Tablets and Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .main .content h1 {
        font-size: 1.2rem !important;
    }
    
    .main .content h1 span {
        font-size: 2rem !important;
    }
    
    .animated-text h3 {
        font-size: 1.5rem !important;
    }
    
    .main .btn {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
    }
    
    .media-icons a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    /* About Section */
    .about .content {
        flex-direction: column !important;
    }
    
    .about .content .column {
        width: 100% !important;
    }
    
    .about .content .col-left {
        margin-bottom: 30px !important;
    }
    
    .about .img-card {
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .about .content-title {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .about .paragraph-text {
        font-size: 0.95rem !important;
        text-align: center !important;
    }
    
    /* Skills Section */
    .skills .content {
        flex-direction: column !important;
    }
    
    .skills .content .column {
        width: 100% !important;
    }
    
    .skills .left-side {
        margin-bottom: 30px !important;
    }
    
    .skills .section-title,
    .skills .content-title {
        text-align: center !important;
    }
    
    .skills .paragraph-text {
        text-align: center !important;
    }
    
    /* Services Section */
    .services-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-box {
        padding: 25px !important;
    }
    
    .service-box h3 {
        font-size: 1.3rem !important;
    }
    
    /* Work/Portfolio Section */
    .work .content {
        flex-direction: column !important;
    }
    
    .work .card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 20px !important;
    }
    
    /* Hobbies Section */
    .hobbies .hobbies-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .hobby-box {
        padding: 25px !important;
    }
    
    /* Gallery Section */
    .gallery .heading {
        font-size: 2rem !important;
    }
    
    .gallery-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .gallery-box {
        max-width: 100% !important;
    }
    
    .dropdown1 {
        margin-bottom: 20px !important;
    }
    
    .dropdown-btn1 {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Contact Section */
    .contact .content {
        flex-direction: column !important;
    }
    
    .contact .column {
        width: 100% !important;
    }
    
    .contact .left-side {
        margin-bottom: 30px !important;
    }
    
    .contact .section-title {
        text-align: center !important;
    }
    
    .contact-info {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .contact-info-card {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .contact form {
        padding: 20px !important;
    }
    
    .contact form input,
    .contact form textarea {
        font-size: 0.9rem !important;
    }
    
    /* Footer */
    footer .content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    footer .footer-content {
        flex-direction: column !important;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-title::before {
        width: 100px !important;
    }
    
    /* Weather Box - Responsive positioning for mobile */
    .floating-weather-box {
        position: fixed !important;
        bottom: 70px !important;
        right: 15px !important;
        left: auto !important;
        top: auto !important;
        font-size: 0.85rem !important;
        padding: 10px 15px !important;
        max-width: 180px !important;
        z-index: 99 !important;
    }
    
    /* Scroll to Top */
    .scrollToTop-btn {
        right: 15px !important;
        bottom: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Modal Adjustments */
    .modal-content {
        width: 95% !important;
        margin: 10px auto !important;
        padding: 20px !important;
        max-height: 90vh !important;
    }
}

/* Very Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    section {
        padding: 40px 15px !important;
    }
    
    header {
        padding: 12px 15px !important;
    }
    
    header .brand {
        font-size: 1.3rem !important;
    }
    
    header .navigation {
        top: 60px !important;
    }
    
    header .navigation a {
        font-size: 1rem !important;
        padding: 12px !important;
    }
    
    .main .content h1 {
        font-size: 1rem !important;
    }
    
    .main .content h1 span {
        font-size: 1.6rem !important;
    }
    
    .animated-text h3 {
        font-size: 1.2rem !important;
    }
    
    .about .img-card {
        max-width: 220px !important;
    }
    
    .about .content-title {
        font-size: 1.3rem !important;
    }
    
    .about .paragraph-text {
        font-size: 0.9rem !important;
    }
    
    .skills-box {
        padding: 15px !important;
    }
    
    .service-box {
        padding: 20px !important;
    }
    
    .service-box h3 {
        font-size: 1.1rem !important;
    }
    
    .work .card {
        max-width: 100% !important;
    }
    
    .hobby-box {
        padding: 20px !important;
    }
    
    .gallery .heading {
        font-size: 1.6rem !important;
    }
    
    .contact form {
        padding: 15px !important;
    }
    
    .contact form input,
    .contact form textarea {
        padding: 12px !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* Tablet Landscape (max-width: 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hobbies .hobbies-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .work .content {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .work .card {
        width: calc(50% - 20px) !important;
    }
}

/* Fix for dropdown on mobile */
@media (max-width: 768px) {
    header .navigation .dropdown {
        width: 100% !important;
    }
    
    header .navigation .dropdown .dropdown-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    header .navigation .dropdown .dropdown-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 10px !important;
        opacity: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    header .navigation .dropdown .dropdown-content.show {
        opacity: 1 !important;
        max-height: 500px !important;
    }
    
    header .navigation .dropdown .dropdown-content a {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    header .navigation .dropdown .dropdown-content a:last-child {
        border-bottom: none !important;
    }
}

/* Placeholder text color */
::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.7;
}

