/* Global Font Family */
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* General Body Styling */
body {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 90px;
    color: #000000;
    overflow-x: hidden;
    transition: padding-top 0.3s ease-in-out;
}

body::before {
    display: none;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ffd700;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #ffd700;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  width: 50px;
  height: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border-left: 4px solid #ffd700;
  transform: translateX(5px);
}

.mobile-menu-nav a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 12px;
  opacity: 0.7;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 50%, #1e3a8a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8);
    }
}

.loading-text {
    font-size: 2.5em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.bouncing-ball {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    border-radius: 0;
    position: relative;
    animation: bounce 1.2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
    25% {
        transform: translateY(-30px);
        box-shadow: 0 30px 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: translateY(-40px);
        box-shadow: 0 40px 25px rgba(255, 215, 0, 0.2);
    }
    75% {
        transform: translateY(-20px);
        box-shadow: 0 20px 15px rgba(255, 215, 0, 0.4);
    }
}

.bouncing-ball::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    animation: shadow 1.2s ease-in-out infinite;
}

@keyframes shadow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) scale(0.7);
        opacity: 0.3;
    }
    75% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.5;
    }
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    height: 90px;
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; 
    box-shadow: none;
    border-bottom: 1px solid #000000;
    padding: 0 48px;
    margin: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.ring-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-inner img {
    width: 60px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

/* Search Box Styles - Hidden on Portfolio page */
.search-container {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-box:focus-within {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    width: 400px;
    border: 1px solid rgba(102, 126, 234, 0.5);
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    padding: 8px 0;
    font-size: 1em;
    color: #333;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.navbar-text {
    font-size: 1.9em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: flex-end;
    line-height: 1;
    transform: translateY(-2px);
}

.navbar-text a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.navbar-text a:hover {
    color: #333333;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-list {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-list a {
    color: #000000;
    text-decoration: none;
    font-size: 1.08em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    position: relative;
    white-space: nowrap;
}

.navbar-list a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-list a:hover::after,
.navbar-list a.active::after {
    width: 80%;
}

.navbar-list a:hover,
.navbar-list a.active {
    color: #000000;
    font-weight: bold;
    transform: translateY(-2px);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    z-index: 10;
    background: rgba(102, 126, 234, 0.12);
    padding: 30px 40px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
}

.text-overlay h1 {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #1e3a8a, #1e3a8a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    line-height: 1.2;
}

.text-overlay p {
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.3);
    line-height: 1.6;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #fff;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

/* Portfolio Section */
.portfolio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
    width: 100%;
    max-width: none;
    padding: 40px 20px;
    gap: 30px;
    color: #000000;
}

.portfolio-container h2 {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    text-align: center;
}

.portfolio-intro {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.9);
    max-width: 600px;
}

/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto 0;
    justify-content: center;
    padding: 0 20px;
}

.portfolio-item {
    position: relative;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(25% - 20px);
    min-width: 280px;
    flex-shrink: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
    height: 250px;
}

.portfolio-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-item.show:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item.show:nth-child(2) { transition-delay: 0.3s; }
.portfolio-item.show:nth-child(3) { transition-delay: 0.5s; }
.portfolio-item.show:nth-child(4) { transition-delay: 0.7s; }
.portfolio-item.show:nth-child(5) { transition-delay: 0.9s; }
.portfolio-item.show:nth-child(6) { transition-delay: 1.1s; }

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #000000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    font-weight: bold;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Category Sections */
.category-section {
    margin: 80px 0;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03), rgba(14, 165, 233, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: none;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-header h3 {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.category-header p {
    font-size: 1.2em;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* Enhanced Portfolio Item */
.portfolio-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Portfolio Tags */
.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    color: #000000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Testimonials Section */
.testimonials-container {
    background: rgba(102, 126, 234, 0.05);
    margin: 100px auto;
    max-width: 1200px;
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-container h2 {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    text-align: center;
}

.testimonials-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.95);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #000000;
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.testimonial-author span {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9em;
}

/* Call to Action Section */
.cta-section {
    background: rgba(102, 126, 234, 0.7);
    margin: 100px auto;
    max-width: 1000px;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-content p {
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #1e3a8a, #ff69b4, #45b7d1);
    background-size: 300% 300%;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3a8a 100%);
    color: #fff;
    padding: 60px 0 20px 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat;
    background-size: cover;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    color: #ff69b4;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.footer-section p, 
.footer-section a {
    color: #ffffff;
    line-height: 1.8;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-radius: 5px;
    position: relative;
}

.footer-section a:hover {
    color: #ffd700;
    transform: translateX(8px);
    padding-left: 10px;
    background: rgba(255, 215, 0, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: scale(1.3) rotate(15deg);
    filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 15px rgba(255, 107, 107, 0.6));
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Animation for portfolio items */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.portfolio-item {
    animation: fadeInUp 0.5s ease-out;
}

/* Admin Portal Section */
.admin-portal-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px;
    color: #000000;
}

.admin-container {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.admin-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-header h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.admin-header p {
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px;
}

.admin-toggle-btn {
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    border: none;
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.admin-toggle-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

.admin-portal {
    margin-top: 30px;
    animation: fadeInUp 0.5s ease;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000000;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    backdrop-filter: blur(10px);
    font-size: 1em;
}

.admin-tab-btn.active,
.admin-tab-btn:hover {
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.admin-tab-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-form h3,
.review-form h3,
.manage-content h3 {
    color: #ff69b4;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
    font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #ff69b4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-area:hover {
    border-color: #ff69b4;
    background: rgba(78, 205, 196, 0.1);
}

.upload-placeholder {
    color: rgba(0, 0, 0, 0.8);
}

.upload-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

.upload-placeholder p {
    font-size: 1.1em;
    margin: 10px 0;
}

.upload-placeholder small {
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.6);
}

.image-preview {
    margin-top: 20px;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.star {
    font-size: 2em;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.star:hover,
.star.active {
    filter: grayscale(0%);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Manage Content Section */
.manage-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.manage-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manage-section h4 {
    color: #ff69b4;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-list {
    max-height: 300px;
    overflow-y: auto;
}

.content-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.content-info {
    flex: 1;
}

.content-info h5 {
    color: #000000;
    margin: 0 0 5px 0;
    font-size: 1em;
}

.content-info p {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    font-size: 0.85em;
}

.content-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: rgba(255, 107, 107, 0.8);
    border: none;
    color: #000000;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn:hover {
    background: rgba(255, 107, 107, 1);
    transform: translateY(-2px);
}

.action-btn.edit-btn {
    background: rgba(78, 205, 196, 0.8);
}

.action-btn.edit-btn:hover {
    background: rgba(78, 205, 196, 1);
}

.manage-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.refresh-btn {
    background: linear-gradient(45deg, #ff69b4, #45b7d1);
}

.export-btn {
    background: linear-gradient(45deg, #1e3a8a, #ff8e53);
}

/* Approval Message Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        height: 70px;
        padding: 8px 15px;
        justify-content: space-between;
    }
    
    .navbar-left {
        margin-bottom: 0;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .navbar-right {
        justify-content: flex-end;
    }
    
    .navbar-text {
        font-size: 1.4em;
        text-align: left;
    }
    
    .navbar-text a {
        padding: 6px 8px;
        border-radius: 6px;
        line-height: 1.2;
    }
    
    /* Hide desktop menu items */
    .search-container,
    .navbar-list {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }
    
    .portfolio-container {
        padding: 20px 10px;
        margin: 50px auto;
        width: 100%;
    }
    
    .portfolio-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 10px;
    }
    
    .portfolio-item {
        width: calc(50% - 15px);
        min-width: 250px;
        max-width: 300px;
        height: 200px;
    }
    
    .portfolio-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.9em;
    }
    
    .category-section {
        margin: 60px 0;
        padding: 30px 10px;
        width: 100%;
    }
    
    .category-header h3 {
        font-size: 2em;
    }
    
    .category-header p {
        font-size: 1.1em;
        padding: 0 10px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .testimonials-container {
        padding: 40px 20px;
        margin: 50px auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
        margin: 50px auto;
    }
    
    .text-overlay {
        padding: 20px 30px;
        width: 95%;
        max-width: 500px;
    }
    
    .text-overlay h1 {
        font-size: 2em;
    }
    
    .text-overlay p {
        font-size: 1em;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-social img {
        width: 30px;
        height: 30px;
    }
    
    .admin-portal-section {
        padding: 20px;
        margin: 50px auto;
    }
    
    .admin-container {
        padding: 25px 20px;
    }
    
    .admin-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-tab-btn {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .manage-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .upload-icon {
        font-size: 2.5em;
    }
    
    .manage-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Animation for admin portal */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.admin-portal {
    animation: slideInRight 0.5s ease;
}

/* Custom scrollbar for content lists */
.content-list::-webkit-scrollbar {
    width: 6px;
}

.content-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.content-list::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.6);
    border-radius: 3px;
}

.content-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 105, 180, 0.8);
}

/* Enhanced Portfolio Styles */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(14, 165, 233, 0.2));
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 0.95em;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    border: 2px solid #1e3a8a;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 250px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.95));
    color: #000000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
    color: #ffd700;
    font-weight: bold;
}

.portfolio-overlay p {
    font-size: 0.95em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Portfolio Statistics */
.portfolio-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 60px 0 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.stat-item h3 {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    color: #000000;
    font-size: 1.1em;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for portfolio */
@media (max-width: 768px) {
    .portfolio-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item img {
        height: 100%;
    }
    
    .portfolio-stats {
        flex-direction: column;
        gap: 15px;
        padding: 30px;
    }
    
    .stat-item {
        max-width: 100%;
        min-width: auto;
    }
    
    .stat-item h3 {
        font-size: 2em;
    }
}
