/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4e8;
    color: #0c0d0e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary: #1E3A8A;
    --secondary: #3B82F6;
    --accent: #60A5FA;
    --background: #f5f7b7;
    --surface: #e8eaa1;
    --surface-light: #e4e6a3;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: #cfd087;
    --gradient: linear-gradient(135deg, var(--secondary), var(--accent));
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Banner */
.scroll-banner-advanced {
  position: relative;
  top: 65px;
  background: linear-gradient(90deg, #fff3cd, #d1f2eb, #e6f7ff);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1000;
  border-bottom: 1px solid #d4d4d4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.scroll-track {
  display: inline-block;
  animation: marqueeAnim 25s linear infinite;
  padding-left: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d3748;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.scroll-item strong {
  color: #2563eb;
}

.scroll-banner-advanced:hover .scroll-track {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes marqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 247, 183, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    height: 60px;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-brand:hover .nav-logo {
    transform: rotate(-5deg) scale(1.05);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
     padding: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--background), #e8eaa1);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.hero-bg::before {
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    animation-delay: 0s;
}

.hero-bg::after {
    bottom: 20%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    font-size: 2rem;
    color: var(--accent);
}

/* Security Badge Styles */
.security-badge {
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.security-badge img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.security-badge img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .security-badge img {
        max-width: 250px;
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badges img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-badges img:hover {
    transform: scale(1.05);
}
/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--background);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 5rem 0;
}
.section-dark {
    background: var(--surface);
}

.glass-effect {
    background: rgba(245, 247, 183, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* App Devloper Section */
:root {
  --primary-color: #2563eb;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.developer-profile {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.profile-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

.text-side {
  flex: 1;
  padding-right: 40px;
}

.portrait-side {
  flex: 1;
  min-width: 400px;
  order: 2; 
}

.developer-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/5;
}

h1 {
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.description p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 40px;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 35px 0;
  width: 100%;
}

.terms-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .profile-container {
    gap: 50px;
  }
  
  .portrait-side {
    min-width: 350px;
  }
}

@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .portrait-side {
    order: 1;
    min-width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .text-side {
    order: 2; 
    padding-right: 0;
  }
  
  .stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .developer-profile {
    padding: 60px 20px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
}

/* Website Devlopment Section */
:root {
  --primary: #3a5a78;
  --primary-dark: #1a2634;
  --accent: #f8c537;
  --accent-dark: #e6b422;
  --light: #f8fafc;
  --gray: #e2e8f0;
  --text: #1e293b;
  --text-light: #64748b;
}

/* Base Styles */
.mandalnet-service-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.service-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.service-container:hover {
  transform: translateY(-5px);
}

/* Image Column */
.image-column {
  flex: 1;
 background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .service-image {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-badge:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.floating-badge svg {
  width: 18px;
  height: 18px;
}

/* Content Column */
.content-column {
  flex: 1;
  padding: 80px;
  position: relative;
}

.brand-header {
  margin-bottom: 40px;
}

.logo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.brand-header h1 {
  color: var(--primary-dark);
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.highlight {
  color: var(--accent-dark);
}

.animated-underline {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.animated-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: underlineAnimation 3s infinite;
}

@keyframes underlineAnimation {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.service-intro {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-features li:hover {
  background: rgba(248, 197, 55, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text {
  font-weight: 500;
  color: var(--text);
}
/* Action Section */
.action-section {
  margin-bottom: 50px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 20px -5px rgba(248, 197, 55, 0.4);
  margin-bottom: 20px;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(248, 197, 55, 0.5);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(248, 197, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(248, 197, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(248, 197, 55, 0); }
}

.trust-badge {
  display: flex;
  gap: 20px;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.trust-icons svg {
  color: var(--accent);
}

/* Terms Box */
.terms-box {
  background: var(--light);
  border-radius: 16px;
  padding: 30px;
  border-left: 5px solid var(--accent);
  transition: all 0.5s ease;
  cursor: pointer;
}

.terms-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.terms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.terms-header h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin: 0;
}

.terms-header svg {
  color: var(--accent);
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.terms-list li {
  position: relative;
  padding-left: 25px;
  color: var(--text);
  font-size: 0.95rem;
}

.terms-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape-1, .shape-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(248, 197, 55, 0.1);
  filter: blur(60px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-container {
    max-width: 1000px;
  }
  
  .content-column {
    padding: 60px;
  }
  
  .brand-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .service-container {
    flex-direction: column;
    max-width: 800px;
  }
  
  .image-column {
    padding: 40px;
  }
  
  .service-features, .terms-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mandalnet-service-section {
    padding: 60px 20px;
  }
  
  .content-column {
    padding: 40px;
  }
  
  .brand-header h1 {
    font-size: 2rem;
  }
  
  .service-intro {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .content-column {
    padding: 30px;
  }
  
  .floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .floating-badge svg {
    width: 16px;
    height: 16px;
  }
  
  .cta-button {
    padding: 16px 30px;
    font-size: 1rem;
  }
}


/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.contact-info {
    margin: 25px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.proceed-button {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.proceed-button:hover {
    background: var(--accent-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-container {
        flex-direction: column;
    }
    
    .image-column {
        padding: 30px;
    }
    
    .content-column {
        padding: 40px;
    }
    
    .service-features,
    .terms-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mandalnet-service-section {
        padding: 60px 15px;
    }
    
    .brand-header h1 {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 30px;
    }
}

/* Graphic Section */
:root {
    --primary: #6C63FF;
    --primary-dark: #564FD8;
    --primary-light: #8B85FF;
    --text: #2D3748;
    --text-light: #718096;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --gray: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.design-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

.design-container {
    display: flex;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

/* Text Column */
.text-column {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.design-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 15px;
    color: var(--text);
    line-height: 1.2;
}

.design-subheading {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 30px;
    font-weight: 500;
}

.design-description {
    color: var(--text-light);
    margin: 0 0 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.design-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.design-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.design-feature:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin: 0 0 8px;
    color: var(--text);
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.primary-button {
    background: var(--primary);
    color: var(--white);
    gap: 10px;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray);
}

.secondary-button:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
}

.terms-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 40px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(113, 128, 150, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-note i {
    color: var(--primary);
}

/* Image Column */
.image-column {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #F3F4FF, #E6E8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.design-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.design-tools {
    position: absolute;
    display: flex;
    gap: 15px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tool-icon i {
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.tool-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.tool-icon:hover i {
    color: var(--white);
}

.tool-icon::after {
    content: attr(data-tool);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.tool-icon:hover::after {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    filter: blur(40px);
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1200px) {
    .text-column {
        padding: 60px;
    }
    
    .image-column {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .design-container {
        flex-direction: column;
    }
    
    .text-column, .image-column {
        padding: 50px;
    }
    
    .design-heading {
        font-size: 2.4rem;
    }
    
    .image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .design-section {
        padding: 80px 20px;
    }
    
    .design-heading {
        font-size: 2rem;
    }
    
    .design-subheading {
        font-size: 1.1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .text-column, .image-column {
        padding: 30px;
    }
    
    .design-heading {
        font-size: 1.8rem;
    }
    
    .design-feature {
        flex-direction: column;
    }
    
    .feature-content {
        margin-top: 10px;
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}


.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.project-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(59, 130, 246, 0.2);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}
.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.service-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon .icon {
    font-size: 3rem;
    display: block;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-description {
    color: var(--text-muted);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon .icon {
    font-size: 3rem;
    display: block;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    font-size: 1.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-muted);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-textarea {
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}
/* Footer */
.site-footer {
    background: #0F172A;
    color: #F8FAFC;
    padding: 4rem 0 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-about-text {
    color: #94A3B8;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-link:hover {
    color: #60A5FA;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94A3B8;
}

.contact-icon {
    font-size: 1.1rem;
    color: #60A5FA;
}

.contact-item a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #60A5FA;
}

/* Newsletter Form */
.footer-newsletter {
    margin-top: 1.5rem;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #F8FAFC;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-btn {
    padding: 0 1.5rem;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #2563EB;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.newsletter-form.loading .btn-text {
    position: relative;
    left: -10px;
}

.newsletter-form.loading .btn-spinner {
    display: inline-block;
}

.newsletter-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    min-height: 1.2rem;
}

.newsletter-message.success {
    color: #10B981;
}

.newsletter-message.error {
    color: #EF4444;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3B82F6;
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #64748B;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #60A5FA;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2563EB;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}
/* Ratings Section */
.ratings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rating-card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.client-company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    align-self: flex-start;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rating-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.rating-badge {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.rating-out-of {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.rating-stars-badge {
    color: #FBBF24;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.rating-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Adjustments */
@media (min-width: 576px) {
    .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overall-rating {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        text-align: left;
    }
    
    .rating-stats {
        display: flex;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .rating-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .rating-stars {
        align-self: center;
    }
}

@media (min-width: 992px) {
    .ratings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rating-card {
        padding: 2rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-stars-badge {
        font-size: 1.5rem;
    }
}

/* Rating Form */
.submit-rating {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-form-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
}

.rating-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.rating-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    opacity: 0.7;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.star-rating label:hover {
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.star-rating input:checked ~ label,
.star-rating input:hover ~ label {
    color: #FBBF24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.star-rating input:checked + label {
    color: #FBBF24;
    transform: scale(1.1);
    animation: starPulse 0.5s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

.rating-feedback {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.rating-message {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.rating-value {
    font-weight: 600;
    color: var(--secondary);
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.char-counter.warning {
    color: #F59E0B;
}

.char-counter.error {
    color: #EF4444;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

.btn.loading .btn-text {
    position: relative;
    left: -10px;
}

.btn.loading .btn-spinner {
    display: inline-block;
}

.form-disclaimer {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Rating confirmation */
.rating-confirmation {
    display: none;
    text-align: center;
    padding: 2rem;
}

.rating-confirmation-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1rem;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.rating-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.rating-confirmation p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.rating-confirmation .btn {
    margin: 0 auto;
}

/* My Projects Section */
.custom-section {
    padding: 5rem 0;
    position: relative;
}

.custom-bg {
       background: #0F172A;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.custom-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F8FAFC;
}

.custom-gradient-text {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.custom-section-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}

.custom-projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.custom-project-tile {
    background: #1E293B;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-project-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #3B82F6;
}

.custom-project-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.custom-project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-project-tile:hover .custom-project-visual img {
    transform: scale(1.1);
}

.custom-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-project-tile:hover .custom-project-overlay {
    opacity: 1;
}

.custom-project-link {
    padding: 0.75rem 1.5rem;
    background: #3B82F6;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-project-link.secondary {
    background: transparent;
    border: 2px solid #3B82F6;
    color: #3B82F6;
}

.custom-project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.custom-project-link.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

.custom-project-details {
    padding: 1.5rem;
}

.custom-project-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #F8FAFC;
}

.custom-project-description {
    color: #94A3B8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.custom-project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.custom-tech-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.custom-section-footer {
    text-align: center;
    margin-top: 3rem;
}

.custom-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-btn.primary {
    background: #3B82F6;
    color: white;
}

.custom-btn.primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.custom-btn-icon {
    transition: transform 0.3s ease;
}

.custom-btn:hover .custom-btn-icon {
    transform: translateX(3px);
}

/* Project Links */
.project-links {
    display: flex;
    padding: 1rem;
    gap: 1.5rem;
}

.project-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--secondary);
}

.project-link::after {
    content: "↗";
    font-size: 0.8rem;
}


/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chatbot-widget {
    width: 320px;
    background: #1E293B;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.chatbot-widget.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #3B82F6;
    color: white;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
}

.chatbot-body {
    padding: 1rem;
}

.chatbot-message {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.option-content {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 600;
    color: white;
}

.option-desc {
    font-size: 0.8rem;
    color: #94A3B8;
}

.chatbot-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot-toggle.visible {
    transform: translateY(0);
    opacity: 1;
}

.chatbot-icon {
    display: flex;
}

.chatbot-label {
    font-weight: 600;
}

.chatbot-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-content {
        padding: 1rem;
    }

    .custom-projects-container {
        grid-template-columns: 1fr;
    }
    
    .custom-container {
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-widget {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 5rem;
    }

    .chatbot-toggle {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}