/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #0F1126;
  color: #333;
  scroll-behavior: smooth;
  
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: black;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}
.logo {
  height: 10px;
  right:10px;
  border-radius: 100px;
}
.logo-header {
  background-color: black;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10%;
  animation: fadeInHeader 1.5s ease-in-out forwards;
}

.brand-logo {
  width: 55%;
  height: 2%;
}


.openbtn {
  font-size: 2rem;
  cursor: pointer;
  color: white;
  font-weight: bold;
  background: linear-gradient(135deg, #4db8ff, #5a0bb4, #962d8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border: none;
  outline: none;
}
/* Sidebar Base */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #0c0c18;
  overflow-x: hidden;
  transition: 0.4s ease;
  padding-top: 60px;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
}

/* Sidebar open state - controlled via JS */
.sidebar.open {
  width: 240px;
}

/* Sidebar links */
.sidebar a {
  
  padding: 14px 28px;
  text-decoration: none;
  font-size: 1.1rem;
  color: #00f0ff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 600;
  border-radius: 8px;
}

.sidebar a:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #ffffff;
}

/* Close button (X) */
.sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sidebar .closebtn:hover {
  transform: rotate(90deg);
}

/* Optional: Add blur background effect when open (JS toggled) */
body.sidebar-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  z-index: 1000;}

/* Hero Section */
#hero {
  text-align: center;
  padding: 50px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}
/* Video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0; /* Behind overlay and content */
  animation: slideIn 5s ease-in-out;
}

/* Semi-transparent overlay */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Adjust transparency */
  z-index: 0; /* Above video, below content */
}

/* Hero content */
#hero h2, #hero p {
  position: relative;
  z-index: 2; /* Above overlay */
}

/* Animations */
#hero h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 3s ease-in-out;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
 
.cta-button {
  position: relative;
  z-index: 2; /* Higher than ::before's z-index */
  background: linear-gradient(to right, #3b82f6, #9333ea); /* Or your gradient */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  decoration: none;
}
.cta-button a{
  text-decoration: none;
  color:white;
  font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  background: #0F1126;
}

.contact-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header .gradient-text {
  background: linear-gradient(90deg, #00ffff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-header p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

/* Contact Info Cards */
.contact-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 20px;
}

.contact-card {
  flex: 1 1 30%;
  background: #1a1c3a;
  padding: 25px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

/* Contact Form */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: #1a1c3a;
  color: #fff;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-submit button {
  background: linear-gradient(90deg, #00ffff, #0077ff);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit button:hover {
  background: linear-gradient(90deg, #0077ff, #00ffff);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-cards {
    gap: 15px;
  }
  .contact-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .contact-card {
    flex: 1 1 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    flex: 1 1 100%;
  }
}
  

/* Default: stack vertically (mobile) */
#products {
  display: flex;
  flex-direction: column;
  gap: 30px; /* vertical spacing on mobile */
  padding: 50px 20px;
}

/* Desktop layout */
@media (min-width: 900px) {
  #products {
    flex-direction: row;       /* horizontal layout */
    flex-wrap: wrap;           /* allow wrapping if needed */
    justify-content: space-between;
    gap: 30px;                 /* horizontal + vertical spacing */
  }

  #products .service-item {
    flex: 1 1 calc(30% - 20px); /* each item ~30% width minus gap */
    min-width: 280px;           /* prevent items from being too narrow */
  }
}
#screenshots {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box;
  margin-top: 16px;
  align-items: start;
}

/* Make images fit their grid cells and never force the layout wider */
#screenshots img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;   /* keeps aspect ratio, crops if you set height */
  border-radius: 8px;
}

/* About Us Section */
#about-us {
  padding: 60px 20px;
  background: #0F1126;
  text-align: left;
  color: #fff;
}

#about-us .service-item {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

#about-us h2 {
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-left: 5px;
}

#about-us p {
  font-size: 1.05rem;
  color: #e6e6e6;
  margin-bottom: 18px;
}

#about-us ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#about-us ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #e6e6e6;
  display: flex;
  align-items: center;
  gap: 8px;
}

#about-us ul li i {
  color: #4fd1c5; /* accent color */
  font-size: 1.2rem;
}

/* Logo inside heading */
#about-us h2 img {
  vertical-align: middle;
  margin-left: 10px;
}

/* Section Icons */
#about-us h2 i {
  margin-right: 10px;
  color: #4fd1c5;
}

/* More spacing after headings */
#about-us h2 + p {
  margin-top: 10px;
}

/* Make it responsive */
@media (max-width: 768px) {
  #about-us {
    padding: 40px 15px;
  }

  #about-us h2 {
    font-size: 1.8rem;
  }

  #about-us p {
    font-size: 1rem;
  }

  #about-us ul li {
    font-size: 1rem;
  }
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 60px 0;
  flex-wrap: wrap;
}

/* Glass + Minimal Style */
.stat-card {
  padding: 25px 35px;
  width: 220px;
  text-align: center;
  border-radius: 20px;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);

  transition: 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Numbers */
.stat-card h3 {
  font-size: 42px;
  margin: 0;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Labels */
.stat-card p {
  font-size: 15px;
  margin-top: 10px;
  color: #e0e0e0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-card {
    width: 180px;
    padding: 20px 25px;
  }

  .stat-card h3 {
    font-size: 34px;
  }
}

.services {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.service-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 90%;
  margin: 0 auto; /* This centers the div */
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

.service-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #4db8ff;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about-us ul li {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid #4db8ff;
  border-radius: 10px;
  font-size: 1rem;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  gap: 12px;
}


#about-us ul li:hover i {
  transform: scale(1.2) rotate(6deg);
  color: #5a0bb4;
}

.services ul {
  list-style: none;
  padding: 0;
  color: aliceblue;
}

.services ul li {
  font-size: 1rem;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #58a6ff;
}



/* AOS animation adjustments */
[data-aos] {
  transition: all 0.6s ease-in-out !important;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #about-us h2 {
    font-size: 1.7rem;
  }

  #about-us p {
    font-size: 1rem;
  }

  #hero h2 span:last-of-type {
    font-size: 2rem;
    -webkit-text-stroke: 0.8px silver;
  }
}
h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* or any preferred font */
  font-weight: 700; /* bold */
  font-size: 2rem; /* adjust as needed */
  color: white; /* soft cyan blue - you can change this */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}
p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #dddddd;
  font-family: 'Segoe UI', sans-serif;
}
h3 {
  font-size: 1.25rem; /* Adjust size as needed */
  color: aquamarine;     /* Replace with your desired color */
}

.dropdown-container {
  display: none; /* Hidden by default */
  padding-left: 30px;
  background-color: #333;
}

.dropdown-container a {
  padding: 8px 16px;
  display: block;
  color: #fff;
  text-decoration: none;
}

.dropdown-container a:hover {
  background-color: #444;
}
.footer-dropdown-container {
  display: none;
  padding-left: 30px;
  
}

.footer-dropdown-container a {
  display: block;
  padding: 6px 0;
  color: #ccc;
  text-decoration: none;
}

.footer-dropdown-container a:hover {
  color: #fff;
}

/* Privacy Policy Section - Dark Theme */
.privacy-policy-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  background: #1a1c2e; /* Darker background to match body */
  color: #e0e0e0; /* Light text color */
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Darker shadow */
}

.privacy-policy-section h1,
.privacy-policy-section h2 {
  color: #ffffff;
  border-bottom: 2px solid #333; /* Darker border for dark mode */
  padding-bottom: 5px;
  margin-top: 30px;
}

.privacy-policy-section ul {
  padding-left: 20px;
}

.privacy-policy-section a {
  color: #4da6ff; /* Lighter blue for visibility */
  text-decoration: underline;
}

.footer-note {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  padding-top: 10px;
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: rgba(0, 123, 255, 0.2); /* semi-transparent blue */
  border-radius: 12px; /* slightly smaller radius */
  padding: 1rem; /* reduce padding to make it smaller */
  flex: 1 1 220px; /* smaller base width */
  max-width: 260px; /* smaller max width */
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* slightly smaller shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.service-card img.card-img {
  height: 150px;
  margin-bottom: 1rem;
}
.service-card i.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00ffff;
}
.service-card h3 {
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}
/* General Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0; /* shorthand for top/left/right/bottom 0 */
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: auto;
  padding: 20px; /* Prevents content touching edges on small screens */
}

/* Modal Content */
.modal-content {
  margin: 30px 30px; /* centers with space for close btn */
  background: #fff;
  padding: 25px;
  width: 100%;
  max-width: 500px; /* LIMIT WIDTH ON BIG SCREENS */
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-out;

  max-height: 70vh;   /* PREVENT overflow */
  overflow-y: auto;   /* Scroll inside modal if needed */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 50px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;          /* WHITE so visible on dark overlay */
  z-index: 10000;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  padding: 7px 12px;
  border-radius: 50%;
}

/* Close hover */
.close-btn:hover {
  background: rgba(255,0,0,0.7);
  color: #fff;
}

/* Header */
#request h2 {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 14px;
  color: #444;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 10px;
  width: 100%;
  box-sizing: border-box;
}

textarea { resize: vertical; }

/* Submit Button */
.cta-button {
  background: #007bff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

.cta-button:hover {
  background: #0056b3;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Fixes */
@media (max-width: 480px) {
  .modal-content {
    margin: 40px auto;
    padding: 20px;
    max-height: 80vh;
  }

.close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 26px;
}
}  

/* Blog Cards Container */
/* --- Variables for Easy Theming --- */
:root {
  --bg-dark: #121212;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-color: #00bfff;
  --shadow: rgba(0, 0, 0, 0.4);
  --border-radius: 12px;
  --transition: 0.3s ease;
}

/* --- Blog Container --- */
.blog-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
}

/* --- Blog Card --- */
.blog-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 6px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

/* --- Image + Heading Row --- */
.blog-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card-img {
  width: 30%;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.blog-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.2;
}

/* --- Meta Info --- */
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* --- Summary --- */
.blog-card-summary {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* --- Read More Button --- */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-color);
  background: none;
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  background: var(--accent-color);
  color: var(--bg-dark);
}

/* --- Single Blog View --- */
.blog-single {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Roboto', sans-serif;
}

.blog-single img {
  width: 80%;
  max-width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
  margin: 2rem auto;
  transition: transform var(--transition);
}

.blog-single img:hover {
  transform: scale(1.02);
}

.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single p,
.blog-single ul li, 
.blog-single ol{
  color: var(--text-primary);
  line-height: 1.6;
}
.blog-single i {
font-size: 30px; /* icon size */
color:green; /* your gradient */
}

.blog-single .blog-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.blog-single .back-btn {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  background: none;
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.blog-single .back-btn:hover {
  background: var(--accent-color);
  color: var(--bg-dark);
}

/* --- Mobile Screens --- */
@media (max-width: 768px) {
  .blog-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card-img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .blog-single img {
    width: 100%;
    margin: 1rem 0;
  }
}

/* CSS for code blocks */
.code-block {
    background-color: #1e1e1e;  /* dark background */
    color: #d4d4d4;             /* light text color */
    font-family: 'Fira Code', 'Courier New', monospace; /* monospaced font */
    font-size: 14px;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;           /* horizontal scroll if too wide */
    margin: 1rem 0;             /* spacing above and below */
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* subtle shadow */
    position: relative;
}

/* Optional: add subtle line numbers */
.code-block pre {
    margin: 0;
    white-space: pre;
}

/* Optional: copy-to-clipboard button (if added later) */
.code-block .copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #282828;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
}

.code-block .copy-btn:hover {
    background-color: #3c3c3c;
}
/* Portfolio Cards General */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.portfolio-category {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
  width: 100%;
  display: block;
}

/* Portfolio Card */
.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(33% - 20px); /* 3 cards per row on desktop */
  max-width: 80%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

.portfolio-card h3 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
  color: #ffffff;
}

.portfolio-card p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 12px;
}
.title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

/* Iframe inside card */
.card-iframe {
  width: 100%;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

/* Call to Action Buttons */
.portfolio-card .cta-button {
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* Responsive Layouts */

/* Tablet */
@media (max-width: 1024px) {
  .portfolio-card {
    flex: 1 1 calc(45% - 20px); /* 2 cards per row */
  }
  .card-iframe {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio-card {
    flex: 1 1 100%; /* single card per row */
  }
  .card-iframe {
    height: 200px;
  }
.portfolio-card h3 {
  font-size: 1.2rem;
  text-align: center;
}
  .portfolio-card p {
    font-size: 0.95rem;
  }
  .portfolio-card .cta-button {
    font-size: 0.85rem;
    padding: 8px 14px;
    text-decoration: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .card-iframe {
    height: 180px;
  }
}
.multi-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 20px;
}

.multi-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}


.banner-title {
  width: 100%;
  text-align: center;
  margin: 20px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.banner-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-img {
  width: 260px;   /* Increase size */
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

@media (max-width: 600px) {
  .banner-img {
    width: 90%;   /* Mobile full width */
  }
}
.mini-portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Mini portfolio cards */
.mini-portfolio-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 10px;
  width: 45%; /* Two per row on desktop */
  max-width: 300px;
  transition: transform 0.3s;
  text-align: center;
}

.mini-portfolio-card:hover {
  transform: translateY(-5px);
}

.mini-portfolio-card img,
.slider {
  width: 100%;
  height: 180px; /* adjust as needed */
  object-fit: cover;
  border-radius: 8px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mini-portfolio-card {
    width: 100%; /* stack on mobile/tablet */
  }
}
.footer-container {
  background-color: #111;
  color: #fff;
  padding: 50px 40px; /* more padding on sides */
  font-family: Arial, sans-serif;
  text-align: left; /* left-align all text by default */
}

/* About Row */
.footer-about {
  max-width: 1000px;
  margin-bottom: 40px;
}

.footer-about h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-about p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Links Row */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: flex-start; /* align columns to the left */
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 5px 0;
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #00bfff;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center; /* align social icons left */
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 1.3rem;
}

.social-icons a:hover {
  color: #00bfff;
}

/* Footer Note */
.footer-note {
  font-size: 0.85rem;
  color: #bbb;
}

.credits {
  color: #bbb;
  text-decoration: underline;
}
.featured-card {
  padding: 16px 12px;
  background: transparent;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title */
.featured-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.featured-title i {
  color: #2563eb;
}

/* Logos container */
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Logo images */
.logos img {
  height: 48px;
  width: auto;
  max-width: 100%;
  transition: transform 0.2s ease;
}

.logos img:hover {
  transform: scale(1.05);
}

/* 📱 Mobile */
@media (max-width: 640px) {
  .featured-title {
    font-size: 13px;
  }

  .logos img {
    height: 40px;
  }
}

/* 💻 Large screens */
@media (min-width: 1024px) {
  .logos img {
    height: 52px;
  }
}
/* Skeleton Loader */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skeleton-card {
  padding: 1rem;
  border-radius: 12px;
  background: #f2f2f2;
}

.skeleton-img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 37%,
    #e0e0e0 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 37%,
    #e0e0e0 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-line.title {
  height: 20px;
  width: 70%;
}

.skeleton-line.short {
  width: 40%;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

