

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Audiowide&family=Bebas+Neue&family=Cal+Sans&family=Fugaz+One&family=Oswald:wght@200..700&family=Permanent+Marker&family=Playwrite+RO:wght@100..400&family=Tagesschrift&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* style.css - Normal CSS Version with Applied Colors */

/* START: Intro Animation Section Styles - REMOVED */

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

/* Light Theme Styles / Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #374155; /* Base text color */
    background-color: #f8fafc; /* Base bg */
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

/* Header Styling - Light Theme */
.site-header {
    background-color: #ffffff; /* Header bg */
    color: #1e293b; /* Header text */
    padding: 15px 0;
    position: sticky;
    height: 80px;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 1px 3px rgba(100, 116, 139, 0.08); /* Header shadow */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo a { text-decoration: none; display: flex; align-items: center; }
.logom{ width: 60px; cursor: pointer; }

/* Navigation Styling - Light Theme */
.main-nav ul { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }
.main-nav ul li a {
    color: #1e293b; /* Header text */
    text-decoration: none;
    font-size: 17px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.main-nav ul li a:hover {
    color: #3b82f6; /* Link color */
    background-color: #f1f5f9; /* Header hover bg */
}

/* Dropdown Menu Styles - Light Theme */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; /* Dropdown bg */
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Dropdown shadow */
    z-index: 1001;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.dropdown-content a {
    color: #374155; /* Dropdown text color */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 0;
}
.dropdown-content a:hover {
    background-color: #f1f5f9; /* Dropdown hover bg */
}
.dropdown:hover .dropdown-content { display: block; }

/* Hero Section - Light Theme */
.hero {
    height: 100vh;
    text-align: left;
    color: #1e293b; /* Hero text color */
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: color 0.2s ease;
    z-index: 1;
    background-size: cover;
    background: url(images/hero.png) no-repeat ;
    background-position: center;
    background-size: cover;
}
.hero span{ /* devfrontX span */
    color: #3b82f6; /* Accent color */
    font-size: 50px;
    font-family: "Audiowide", sans-serif;
    letter-spacing: 2px;
}
.container-btn a { /* Default button style */
    padding: 15px;
    border-radius: 15px;
    margin: 0 10px;
    font-size: 20px;
    border: 1px solid #cbd5e1; /* Hero button border */
    background-color: transparent; /* Hero button bg */
    color: #374155; /* Hero button text */
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}
.container-btn a.btn { /* Primary button style */
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%); /* Hero button primary bg */
    color: #ffffff; /* Hero button primary text */
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.container-btn a:hover:not(.btn){
    background-color: #f1f5f9; /* Hero button hover bg */
}
.container-btn a.btn:hover {
    background: linear-gradient(90deg, #2563eb 0%, #4f46e5 100%); /* Hero button primary hover bg */
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}
.hero{
    padding-top: 50px;
        padding-left: 70px;
}
.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    padding-left: 0;
    width: 750px;
    color: #fff; /* Heading color */
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 500px;
    text-align: left;
    padding-left: 0;
    color: #759fd9; /* Hero subtext color */
}

/* Featured Projects Section */
.featured-projects {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    transition: background 0.2s ease; /* Add transition for dark mode */
}

.featured-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    position: relative;
    transition: color 0.2s ease; /* Add transition for dark mode */
}

.featured-projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.project-card {
    height: 760px;
    width: 400px;
    perspective: 1500px;
}

.project-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-content {
    transform: rotateY(180deg);
}

.project-front,
.project-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.project-front {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease, box-shadow 0.2s ease; /* Add transition for dark mode */
}

.project-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    padding: 30px 20px;
    color: white;
    transform: translateY(30%);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-front:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    backdrop-filter: blur(4px);
}

.project-back {
    background: #ffffff;
    transform: rotateY(180deg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     transition: background 0.2s ease, box-shadow 0.2s ease; /* Add transition for dark mode */
}

.project-back h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 20px;
     transition: color 0.2s ease; /* Add transition for dark mode */
}

.project-back p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
     transition: color 0.2s ease; /* Add transition for dark mode */
}


/* Dark theme adjustments for Featured Projects */
body[data-theme="dark"] .featured-projects {
    background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

body[data-theme="dark"] .featured-projects h2 {
    color: #f0f9ff;
}

body[data-theme="dark"] .project-front,
body[data-theme="dark"] .project-back {
    background: #1e293b;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Dark card shadow */
}

body[data-theme="dark"] .project-back h3 {
    color: #f0f9ff;
}

body[data-theme="dark"] .project-back p {
    color: #94a3b8;
}

body[data-theme="dark"] .tag {
    background: rgba(96, 165, 250, 0.9);
}

body[data-theme="dark"] .project-btn {
     background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%); /* Dark button primary bg */
     box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}
body[data-theme="dark"] .project-btn:hover {
     box-shadow: 0 6px 16px rgba(167, 139, 250, 0.2);
}

/* Dark theme adjustments for JavaScript page */
body[data-theme="dark"] .javascript-hero {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
}

body[data-theme="dark"] .javascript-hero h1 {
    color: white;
}

body[data-theme="dark"] .javascript-hero p {
    color: #cbd5e1;
}


/* Collection Section - Light Theme */
.collection {
    margin-top: 30px;
    padding: 0 40px 30px;
    text-align: center;
    background-color: #f8fafc; /* Match body bg */
    transition: background-color 0.2s ease; /* Add transition */
}

.collection h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 70px;
    position: relative;
    transition: color 0.2s ease; /* Add transition for dark mode */
}
.collection h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
}
.collection-grid { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding: 20px; }
.collection-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 350px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.collection-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0;
}
.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.collection-card h3 {
    color: #1e293b;
    margin: 15px 20px 10px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.collection-card p {
    color: #64748b;
    margin: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(59, 130, 246, 0) 0%,
        rgba(59, 130, 246, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none; /* Ensure overlay doesn't block clicks */
}
.collection-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.collection-card:hover::before {
    opacity: 1;
}
.collection-card:hover img {
    transform: scale(1.05);
}
.collection-card:hover h3 {
    color: #3b82f6;
}

/* Dark theme adjustments */
body[data-theme="dark"] .collection { background-color: #0b1120; } /* Match body bg */
body[data-theme="dark"] .collection-card {
    background-color: #1e293b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
body[data-theme="dark"] .collection-card::before {
    background: linear-gradient(
        180deg,
        rgba(96, 165, 250, 0) 0%,
        rgba(96, 165, 250, 0.1) 100%
    );
}
body[data-theme="dark"] .collection-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
                0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.collection-card1 {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 350px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.collection-card1 a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0;
}

.collection-card1 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collection-card1 h3 {
    color: #1e293b;
    margin: 15px 20px 10px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.collection-card1 p {
    color: #64748b;
    margin: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.collection-card1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(59, 130, 246, 0) 0%,
        rgba(59, 130, 246, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none; /* Ensure overlay doesn't block clicks */
}

.collection-card1:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.collection-card1:hover::before {
    opacity: 1;
}

.collection-card1:hover img {
    transform: scale(1.05);
}

.collection-card1:hover h3 {
    color: #3b82f6;
}
.imgone{
    width: 100%;
}
/* Dark theme adjustments */
body[data-theme="dark"] .collection-card1 {
    background-color: #1e293b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .collection-card1::before {
    background: linear-gradient(
        180deg,
        rgba(96, 165, 250, 0) 0%,
        rgba(96, 165, 250, 0.1) 100%
    );
}
body[data-theme="dark"] .hero{
    background-image:none;
    background-size: cover;
}

body[data-theme="dark"] .collection-card1:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
                0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
body[data-theme="dark"] .collection-card1:hover h3 { color: #60a5fa; }


/* about background */
.containero {
  width: 100%;
  height: 100%;
  --s: 65px; /* control the size */
  --c1: #17bbf7;
  --c2: #171717;

  --c: #0000 71%, var(--c1) 0 79%, #0000 0;
  --_s: calc(var(--s) / 2) / calc(2 * var(--s)) calc(2 * var(--s));
  background: linear-gradient(45deg, var(--c)) calc(var(--s) / -2) var(--_s),
    linear-gradient(135deg, var(--c)) calc(var(--s) / 2) var(--_s),
    radial-gradient(var(--c1) 35%, var(--c2) 37%) 0 0 / var(--s) var(--s);
}
.about-section {
    transition: background-color 0.2s ease, color 0.2s ease;
}
#about-us p{
    font-size: 25px;
}
.about-section .about-container { display: flex; align-items: center; gap: 40px; max-width: 100%;height: 600px; margin: 0 auto; padding: 0 20px; }
.about-section .about-text { flex: 1 1 60%; text-align: left; }
.about-section .about-text h2 {
    color: white; /* Heading color */
    margin-bottom: 25px;
    font-size: 2.2rem;
    transition: color 0.2s ease;
}
.about-section .about-text p {
    font-size: 1.05rem;
    color: white; /* Text secondary */
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-section .about-text p:last-child { margin-bottom: 0; }
.about-section .about-image { flex: 1 1 35%; text-align: center; }
.about-section .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1); /* Adjusted shadow */
    object-fit: cover;
}

/* Social Media Section Styles - Light Theme */
.social-media-section {
    padding: 40px 0;
    background-color: #ffffff; /* Social section bg */
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-top: 1px solid #e2e8f0; /* Subtle separator */
}
.social-media-section h2 {
    color: #1e293b; /* Heading color */
    margin-bottom: 25px;
    font-size: 2rem;
    transition: color 0.2s ease;
}
.social-icons-container { display: flex; justify-content: center; align-items: center; gap: 25px; }
.social-icon { display: inline-flex; justify-content: center; align-items: center; text-decoration: none; color: #64748b; /* Social icon color */ transition: color 0.2s ease, transform 0.2s ease; }
.social-icon i { font-size: 2.5rem; }
.social-icon:hover { transform: scale(1.15); }
/* Keep original brand colors on hover */
.social-icon:hover .bxl-instagram { color: #E1306C; }
.social-icon:hover .bxl-facebook-square { color: #1877F2; }
.social-icon:hover .bxl-tiktok { color: #000000; }
.social-icon:hover .bxl-youtube { color: #FF0000; }

/* Footer - Light Theme */
#footer {
    background-color: #f1f5f9; /* Footer bg */
    padding: 40px 0;
    color: #64748b; /* Footer text color */
    transition: background-color 0.2s ease, color 0.2s ease;
    border-top: 1px solid #e2e8f0; /* Footer border */
}
#footer .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
#footer .footer-columns { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
#footer .footer-column { flex: 1; min-width: 180px; margin-bottom: 30px; text-align: left; }
#footer .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1e293b; /* Footer heading color */
    transition: color 0.2s ease;
}
#footer .footer-column ul { list-style: none; padding: 0; }
#footer .footer-column li { margin-bottom: 8px; }
#footer .footer-column a {
    color: #3b82f6; /* Footer link color */
    text-decoration: none;
    transition: color 0.2s ease;
}
#footer .footer-column a:hover {
    color: #1d4ed8; /* Footer link hover */
}

/* Theme Toggle Button - Light Theme */
#theme-toggle {
    position: fixed; top: 15px; right: 20px; width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid #d1d5db; /* Button border */
    background-color: #ffffff; /* Button bg */
    cursor: pointer; padding: 0; display: flex; justify-content: center; align-items: center; overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Button icon shadow */
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    z-index: 1001;
}
#theme-toggle:hover { background-color: #f8fafc; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); }
#theme-toggle:active { transform: scale(0.95); }
#theme-toggle:focus-visible { outline: 2px solid #3b82f6; outline-offset: 1px; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); }
#theme-toggle .icon {
    display: block; width: 24px; height: 24px; border-radius: 50%;
    background-color: #facc15; /* Button icon color (Sun) */
    position: relative;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05); /* Button icon shadow */
    transition: all 0.2s ease-in-out, background-color 0.2s ease;
    transform: scale(1) rotate(0deg);
}


/* START: Dark Theme Styles */
body[data-theme="dark"] {
    color: #d1d5db; /* gray-300 */
    background-color: #0b1120; /* Dark navy/slate */
}

/* Header Styling - Dark Theme */
body[data-theme="dark"] .site-header {
    background-color: #111827; /* Dark header bg */
    color: #f0f9ff; /* Dark header text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Dark header shadow */
}
body[data-theme="dark"] .main-nav ul li a { color: #f0f9ff; }
body[data-theme="dark"] .main-nav ul li a:hover {
    color: #60a5fa; /* Dark link hover */
    background-color: #1f293b; /* Dark header hover bg */
}

/* Dropdown Menu Styles - Dark Theme */
body[data-theme="dark"] .dropdown-content {
    background-color: #1f293b; /* Dark dropdown bg */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Dark dropdown shadow */
}
body[data-theme="dark"] .dropdown-content a { color: #f0f9ff; }
body[data-theme="dark"] .dropdown-content a:hover { background-color: #334155; } /* Dark dropdown hover bg */

/* Intro Animation - Dark Theme - REMOVED */


/* Hero Section - Dark Theme */
body[data-theme="dark"] .hero {
    color: #f0f9ff; /* Dark hero text */
    background-color: #0b1120; /* Match body */
    background: url(images/hero1.png) no-repeat;
    background-position: center;
    background-size: cover;
}
body[data-theme="dark"] .hero span { color: #60a5fa; }
body[data-theme="dark"] .hero { color: #60a5fa; }

body[data-theme="dark"] .hero h1 { color: #ebe3e3; }
body[data-theme="dark"] .hero p { color: #94a3b8; } /* slate-400 */

body[data-theme="dark"] .container button { /* Default button */
    border-color: #475569; /* Dark button border */
    color: #cbd5e1; /* Dark button text */
    background-color: transparent;
}
body[data-theme="dark"] .container button.btn { /* Primary button */
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%); /* Dark button primary bg */
    color: #1e293b; /* Dark button primary text */
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15); /* Dark subtle shadow */
    border: none;
}
body[data-theme="dark"] .container button:hover:not(.btn) {
    background-color: #1e293b; /* Dark button hover bg */
}
body[data-theme="dark"] .container button.btn:hover {
    background: linear-gradient(90deg, #38bdf8 0%, #c4b5fd 100%); /* Dark button primary hover */
    box-shadow: 0 6px 16px rgba(167, 139, 250, 0.2); /* Dark hover shadow */
}

body[data-theme="dark"] .box::before {
    box-shadow: 0 100px 0 40px #0b1120; /* Hero image shadow color (dark body bg) */
}
body[data-theme="dark"] .box .circle {
    background: rgb(25, 25, 170); /* Keep original dark hero circle bg */
}

/* Collection Section - Dark Theme */
body[data-theme="dark"] .collection { background-color: #0b1120; } /* Match body bg */
body[data-theme="dark"] .collection h2 { color: #f0f9ff; }
body[data-theme="dark"] .collection-card {
    background-color: #1e293b; /* Dark card bg */
    border-color: #334155; /* Dark card border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Dark card shadow */
}
body[data-theme="dark"] .collection-card img { border-bottom-color: #334155; }
body[data-theme="dark"] .collection-card h3 { color: #e2e8f0; } /* Dark heading */
body[data-theme="dark"] .collection-card p { color: #94a3b8; } /* Dark secondary text */
body[data-theme="dark"] .collection-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* Dark card hover shadow */
}
body[data-theme="dark"] .collection-card:hover h3 { color: #60a5fa; } /* Dark link hover */


body[data-theme="dark"] .collection-card1 {
    background-color: #1e293b; /* Dark card bg */
    border-color: #334155; /* Dark card border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Dark card shadow */
}
body[data-theme="dark"] .collection-card1 img { border-bottom-color: #334155; }
body[data-theme="dark"] .collection-card1 h3 { color: #e2e8f0; } /* Dark heading */
body[data-theme="dark"] .collection-card1 p { color: #94a3b8; } /* Dark secondary text */
body[data-theme="dark"] .collection-card1:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* Dark card hover shadow */
}
body[data-theme="dark"] .collection-card1:hover h3 { color: #60a5fa; } /* Dark link hover */


/* About Us Section Styles - Dark Theme */
body[data-theme="dark"] .about-section .about-text h2 { color: #f0f9ff; }
body[data-theme="dark"] .about-section .about-text p { color: white; font-size: x-large; } /* slate-300 */
body[data-theme="dark"] .about-section .about-image img { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

/* Social Media Section Styles - Dark Theme */
body[data-theme="dark"] .social-media-section {
    background-color: #111827; /* Dark social bg */
    border-top-color: #1f2937;
}
body[data-theme="dark"] .social-media-section h2 { color: #f0f9ff; }
body[data-theme="dark"] .social-icon { color: #94a3b8; } /* Dark icon color */
/* Keep hover brand colors */
body[data-theme="dark"] .social-icon:hover .bxl-tiktok { color: #ffffff; }

/* Footer - Dark Theme */
body[data-theme="dark"] #footer {
    background-color: #111827; /* Dark footer bg */
    color: #94a3b8; /* Dark footer text */
    border-top-color: #1f2937; /* Dark footer border */
}
body[data-theme="dark"] #footer .footer-column h3 { color: #e2e8f0; } /* Dark footer heading */
body[data-theme="dark"] #footer .footer-column a { color: #60a5fa; } /* Dark footer link */
body[data-theme="dark"] #footer .footer-column a:hover { color: #93c5fd; } /* Dark footer link hover */

/* Theme Toggle Button - Dark Theme */
body[data-theme="dark"] #theme-toggle {
    border-color: #334155; /* Dark button border */
    background-color: #1f293b; /* Dark button bg */
}
body[data-theme="dark"] #theme-toggle:hover { background-color: #334155; } /* Dark button hover */
body[data-theme="dark"] #theme-toggle:focus-visible { outline-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3); }
body[data-theme="dark"] #theme-toggle .icon {
    background-color: #eab308; /* Dark button icon (Moon) */
    transform: scale(1) rotate(180deg) translateX(-1px);
    box-shadow: inset -5px -3px 0 0px #0b1120; /* Use body bg for cutout */
}
/* END: Dark Theme Styles */

@media (max-width: 1700.98px) {
    .hero{
        height: 660px;
    }
    .hero .one{
        height: 570px;
    }
    .hero h1{
        font-size: 3rem;
    }

}
/* Responsive Media Queries (Keep existing layout adjustments) */
@media (max-width: 1200.98px) {
    /* Intro animation responsive styles - REMOVED */

    .hero .container { flex-direction: row; text-align: center; }
    .hero-text-content { flex-basis: 100%; padding-right: 0; order: 1; }
    .hero h1 { width: 100%; font-size: 2.75rem; text-align: center;}
    .hero p { max-width: 600px; text-align: center; margin-left: auto; margin-right: auto;}
    .hero img{
        display: none;
    }
    .collection-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .collection-card {max-width: 450px;}

    .about-section .about-container { flex-direction: column; gap: 40px; height: 750px;}
    .about-section .about-text { flex-basis: 100%; text-align: center; }
    .about-section .about-image { flex-basis: 80%; max-width: 550px; }
    .about-section .about-image img { width: 100%; height: 300px; }

    .social-media-section h2 { font-size: 1.8rem; }
    .social-icon i { font-size: 2.5rem; } /* Increased size slightly */
    .social-icons-container { gap: 20px; }

    #footer .footer-columns { justify-content: space-around; }
    #theme-toggle { top: 15px; right: 15px; }
}

@media (max-width: 768px) {
    .site-header { height: 100px; } /* Slightly shorter header */
    .site-header .container { flex-wrap: nowrap; }
    .logo { flex-grow: 1; }
    .main-nav { order: 3; width: 100%;} /* Pushed below logo/toggle */
    .main-nav ul { flex-direction: row; align-items: center; gap: 5px; } /* Stack links vertically */
    .main-nav ul li { width: 100%; text-align: center;} /* Make list items full width */

    .dropdown1 { position: fixed; transform: none; box-shadow: none; background-color: #ffffff; text-align: center; left: 200px; width: 20%; }
    body[data-theme="dark"] .dropdown-content { background-color: #1e293b; }
    .dropdown-content a { padding: 8px 10px; }
    body[data-theme="light"] .dropdown-content a { color:#cbd5e1 ; } /* Adjusted mobile dropdown color */
    body[data-theme="dark"] .dropdown-content a { color: #374155; } /* Adjusted mobile dropdown color */
    .dropdown > a i { /* Hide the dropdown icon on mobile */
        display: none;
    }
 .hero { min-height: auto; padding: 40px 15px; }
    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1rem; }
    .container a, .container .btn {margin-top: 10px; font-size: 0.95rem; padding: 10px 20px; }

    .hero img { display: none;}

    .collection-grid { grid-template-columns: 1fr; gap: 20px; }
    .collection h2 { font-size: 2rem; }
    .collection-card h3 { font-size: 1.15rem; }

    .about-section { padding: 150px 0; }
    .about-section .about-text h2 { font-size: 2rem; }
    .about-section .about-text p { font-size: 1rem; text-align: left; } /* Keep text left on mobile */
    .about-section .about-image { flex-basis: 90%; max-width: 350px; }
        .about-section .about-image img { width: 100%; height: 200px; }


    .social-media-section { padding: 40px 15px; }
    .social-media-section h2 { font-size: 1.75rem; }
    .social-icons-container { gap: 20px; }
    .social-icon i { font-size: 2.2rem; }

    #footer .footer-columns { flex-direction: column; align-items: center; }
    #footer .footer-column { width: 100%; min-width: auto; text-align: center; margin-bottom: 20px; }
    #footer .footer-column:last-child { margin-bottom: 0; }


    #theme-toggle { position: static; order: 2; margin-left: auto; flex-shrink: 0; width: 40px; height: 40px; margin-top: 0; }
    #theme-toggle .icon { width: 20px; height: 20px; }
    body[data-theme="dark"] #theme-toggle .icon { box-shadow: inset -5px -2px 0 0px #111827; } /* Use dark header bg */
        .javascript-hero {
        padding: 60px 0;
    }

    .javascript-hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .javascript-hero p {
        font-size: 1.1rem;
        text-align: center;
        margin: 0 auto;
    }
    .cards-hero {
        padding: 60px 0;
    }

    .cards-hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .cards-hero p {
        font-size: 1.1rem;
        text-align: center;
        margin: 0 auto;
    }
}

/* Responsive adjustments for Featured Projects */
@media (max-width: 768px) {
    .featured-projects {
        padding: 60px 0;
        display: none;
    }

    .featured-projects h2 {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .project-card {
        height: 350px;
    }

    .project-overlay h3 {
        font-size: 1.25rem;
    }

    .tag {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}