/* Infinito Creations - Modern Professional CSS - Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
:root {
    --primary: #0a0a0a; /* darker primary */
    --accent: #4a90e2;  /* blue accent */
    --background: #0f0f0f; /* dark background */
    --secondary: #1a1a1a; /* dark secondary */
    --text: #ffffff; /* white text */
    --text-secondary: #b0b0b0; /* light gray for secondary text */
    --nav-bg: #0a0a0a;
    --nav-link: #4a90e2;
    --nav-link-hover: #fff;
    --card-bg: #1a1a1a; /* dark card background */
    --border-color: #333333; /* dark borders */
    --shadow-color: rgba(0,0,0,0.3); /* darker shadows */
}
body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--text);
    border: none;
    box-shadow: none;
}
main {
    max-width: 1100px;
    margin: 48px auto;
    padding: 32px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow-color);
    border: 1px solid var(--border-color);
    border-top: none;
}
h1, h2, h3 {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
}
nav {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    min-height: 100px;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    transition: background 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.45s cubic-bezier(0.4,0,0.2,1), min-height 0.45s cubic-bezier(0.4,0,0.2,1), filter 0.45s cubic-bezier(0.4,0,0.2,1);
}
nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #232946 0%, #1a1a1a 100%, #232946 60%);
    background-size: 400% 400%;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite;
    border: none;
    filter: blur(0.5px);
    transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), filter 0.45s cubic-bezier(0.4,0,0.2,1);
}
nav > * {
    position: relative;
    z-index: 1;
}
.site-logo {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    margin: 0;
    transition: height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.logo-container {
    margin: 0;
    display: flex;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 36px;
    margin: 0;
    padding: 0;
    flex: 1;
}
nav ul li {
    display: flex;
    align-items: center;
}
nav ul li a {
    color: var(--nav-link);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.13em;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
    padding: 8px 18px;
    border-radius: 6px;
}
nav ul li a:hover {
    color: var(--nav-bg);
    background: var(--nav-link);
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    color: var(--nav-link-hover);
    border-radius: 16px;
    margin-bottom: 36px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(35,41,70,0.10);
}
.hero-content {
    flex: 1 1 320px;
    min-width: 280px;
}
.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 18px;
    color: var(--nav-link-hover);
}
.hero-content p {
    font-size: 1.2em;
    margin-bottom: 24px;
    color: var(--accent);
}
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(35,41,70,0.08);
}
.cta-btn:hover {
    background: var(--nav-link-hover);
    color: var(--primary);
}
.hero-image {
    flex: 1 1 320px;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(35,41,70,0.10);
}
.trust {
    text-align: center;
    margin-bottom: 36px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.trust-logos img {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 1px 4px var(--shadow-color);
    padding: 8px 16px;
    height: 70px;
    max-width: 180px;
    object-fit: contain;
    border: 1px solid var(--border-color);
}
.services, .service-cards {
    margin-bottom: 36px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 24px;
}
.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
    padding: 28px 22px;
    max-width: 260px;
    flex: 1 1 220px;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px var(--shadow-color);
    border-color: var(--accent);
}
.service-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 50%;
    background: none;
    padding: 0;
}
.service-card h3, .service-card h2 {
    color: var(--text);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.service-card a, .about-preview a, .social-links a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.service-card a:hover, .about-preview a:hover, .social-links a:hover {
    color: var(--primary);
}
.about-preview {
    background: var(--secondary);
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.about-preview h2 {
    color: var(--text);
}
.cta-bottom {
    background: linear-gradient(90deg, #eebbc3 0%, #232946 100%);
    color: #fff;
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    margin-bottom: 0;
}
.cta-bottom h2 {
    color: #fff;
    margin-bottom: 18px;
}
.cta-bottom .cta-btn {
    background: #fff;
    color: #232946;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(35,41,70,0.08);
}
.cta-bottom .cta-btn:hover {
    background: #eebbc3;
    color: #232946;
}
/* About Page Styles */
.about-hero {
    text-align: center;
    margin-bottom: 32px;
}
.about-values {
    background: var(--secondary);
    border-radius: 12px;
    padding: 28px 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}
.about-values ul {
    list-style: disc inside;
    color: #232946;
    font-size: 1.1em;
    margin: 0;
    padding: 0 0 0 20px;
}
.about-stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.about-stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
    padding: 24px 18px;
    text-align: center;
    min-width: 180px;
}
.about-stat-card img {
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--accent);
    padding: 8px;
}
.about-logos {
    text-align: center;
    margin-bottom: 32px;
}
.about-logos-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.about-logos-row img {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 1px 4px var(--shadow-color);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    height: 40px;
}
.about-cta {
    background: var(--primary);
    color: var(--nav-link-hover);
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
}
.about-cta .cta-btn {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(35,41,70,0.08);
}
.about-cta .cta-btn:hover {
    background: var(--nav-link-hover);
    color: var(--primary);
}
/* Contact Page Styles */
.contact-hero {
    text-align: center;
    margin-bottom: 32px;
}
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-form {
    flex: 1 1 320px;
    background: var(--secondary);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-color);
    min-width: 300px;
}
.contact-form h2 {
    margin-bottom: 18px;
    color: var(--text);
}
.contact-form label {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 4px;
    color: var(--text);
}
.contact-form input, .contact-form textarea {
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
}
.contact-form button {
    background: var(--primary);
    color: var(--accent);
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 1.1em;
    transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
    background: var(--accent);
    color: var(--primary);
}
.contact-info {
    flex: 1 1 260px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-color);
    min-width: 240px;
    color: var(--text);
}
.contact-info h2 {
    margin-bottom: 16px;
}
.social-links {
    margin-top: 18px;
}
.social-links a {
    color: #eebbc3;
    text-decoration: none;
    font-weight: 600;
    margin: 0 6px;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #232946;
}
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
input, textarea, button {
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
button {
    background: var(--primary);
    color: var(--accent);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
button:hover {
    background: var(--accent);
    color: var(--primary);
}
.portfolio-section {
    background: var(--secondary);
    border-radius: 14px;
    padding: 36px 24px;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
}
.portfolio-section h2 {
    color: var(--text);
    margin-bottom: 18px;
    text-align: center;
}
.portfolio-category {
    margin-bottom: 32px;
}
.portfolio-category h3 {
    color: var(--accent);
    margin-bottom: 8px;
}
.portfolio-category p {
    color: var(--text);
    margin-bottom: 12px;
}
.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px var(--shadow-color);
    border: 1px solid var(--border-color);
}
.portfolio-table th, .portfolio-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 1em;
    color: var(--text);
}
.portfolio-table th {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
}
.portfolio-table tr:last-child td {
    border-bottom: none;
}
.portfolio-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s;
}
.portfolio-link:hover {
    color: var(--primary);
}
/* Loader Animation Styles */
.loader-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--accent);
  border-right-color: var(--primary);
  animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 28px 10px;
    }
    .service-cards, .about-stats, .about-logos-row, .contact-container {
        flex-direction: column;
        align-items: center;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
        min-height: 80px;
    }
    .logo-container {
        margin-bottom: 8px;
    }
    nav ul {
        gap: 18px;
        width: 100%;
        justify-content: flex-start;
    }
    .site-logo {
        height: 80px;
    }
    .portfolio-section {
        padding: 18px 6px;
    }
    .portfolio-table th, .portfolio-table td {
        padding: 7px 6px;
        font-size: 0.97em;
    }
}
.faq-section {
  max-width: 800px;
  margin: 48px auto;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
}
.faq-section h1 {
  text-align: center;
  color: var(--text);
  margin-bottom: 32px;
}
.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.18em;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-toggle {
  font-size: 1.3em;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-answer {
  display: none;
  padding: 0 0 16px 0;
  color: var(--text-secondary);
  font-size: 1.08em;
  animation: fadeIn 0.3s;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Blog Page Enhancements */
.blog-main {
  max-width: 950px;
  margin: 48px auto 32px auto;
  padding: 0 12px;
}
.faq-section {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--shadow-color);
  border: 1px solid var(--border-color);
  margin-bottom: 38px;
  padding: 36px 28px 18px 28px;
  transition: box-shadow 0.2s;
}
.faq-section h1 {
  text-align: left;
  color: var(--text);
  margin-bottom: 28px;
  font-size: 2em;
  border-left: 5px solid var(--accent);
  padding-left: 16px;
}
.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13em;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
  padding: 16px 0 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  border-radius: 6px;
}
.faq-question:hover, .faq-item.active .faq-question {
  color: var(--primary);
  background: var(--secondary);
}
.faq-toggle {
  font-size: 1.5em;
  margin-left: 16px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--accent);
}
.faq-answer {
  display: none;
  padding: 0 0 16px 0;
  color: var(--text);
  font-size: 1.08em;
  animation: fadeIn 0.3s;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  display: block;
}
@media (max-width: 700px) {
  .faq-section {
    padding: 18px 6px 8px 6px;
  }
  .faq-section h1 {
    font-size: 1.2em;
    padding-left: 8px;
  }
}
/* --- Responsive Navigation Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  margin-left: 10px;
}
.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--accent);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
    margin-left: auto;
  }
  .nav-toggle .bar {
    width: 28px;
    height: 4px;
    background: var(--nav-link);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
  }
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 24, 40, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 105;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  nav ul.open {
    display: flex;
    max-height: 400px;
    animation: slideDown 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    width: 100%;
    display: block;
    padding: 18px 32px;
    font-size: 1.15em;
    text-align: right;
    background: none;
    color: var(--nav-link);
    border-radius: 0;
  }
  nav ul li a:hover {
    background: rgba(74,144,226,0.08);
    color: #fff;
  }
  .logo-container {
    z-index: 120;
  }
}
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Hide nav-toggle on desktop */
.nav-toggle {
  display: none;
}
/* --- Hero Gradient Section (moved from index.html) --- */
.hero-gradient {
  background: linear-gradient(120deg, #eebbc3 0%, #232946 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35,41,70,0.10);
  margin: 32px auto 24px auto;
  max-width: 950px;
  padding: 40px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}
.hero-gradient h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.hero-gradient p {
  font-size: 1.15rem;
  color: #f4f4f4;
  margin-bottom: 20px;
}
.hero-gradient .cta-btn {
  display: inline-block;
  background: #fff;
  color: #232946;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(35,41,70,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-gradient .cta-btn:hover, .hero-gradient .cta-btn:focus {
  background: #eebbc3;
  color: #232946;
  transform: translateY(-2px) scale(1.04);
}
.hero-gradient .hero-img {
  flex: 1 1 260px;
  min-width: 180px;
  text-align: center;
}
.hero-gradient .hero-img img {
  max-width: 240px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(35,41,70,0.06);
}
@media (max-width: 700px) {
  .hero-gradient { flex-direction: column; padding: 24px 8px; }
  .hero-gradient .hero-img { margin-top: 18px; }
  .hero-gradient h1 { font-size: 1.5rem; }
  .hero-gradient p { font-size: 1rem; }
}
/* --- Service Cards --- */
@media (max-width: 700px) {
  .service-cards { flex-direction: column; gap: 18px; }
  .service-card { max-width: 100%; }
  .service-card img { width: 100px; height: 100px; }
}
/* --- Portfolio Table Responsive --- */
@media (max-width: 700px) {
  .portfolio-table, .portfolio-table thead, .portfolio-table tbody, .portfolio-table th, .portfolio-table td, .portfolio-table tr {
    display: block;
    width: 100%;
  }
  .portfolio-table th, .portfolio-table td {
    box-sizing: border-box;
    padding: 10px 6px;
    font-size: 0.97em;
  }
  .portfolio-table th { background: var(--secondary); color: var(--text); }
}
/* --- About Preview Section --- */
@media (max-width: 700px) {
  .about-preview { padding: 18px 6px; }
  .about-preview h2 { font-size: 1.2rem; }
}
nav.scrolled::before {
    opacity: 0.85;
    filter: blur(2px);
}
nav.scrolled {
    box-shadow: 0 2px 16px rgba(35,41,70,0.18);
    min-height: 72px;
    transition: min-height 0.25s cubic-bezier(0.4,0,0.2,1);
}
nav.scrolled .site-logo {
    height: 80px;
    transition: height 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* --- Modern Agency Layout Styles --- */
body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--text);
    border: none;
    box-shadow: none;
}

.hero-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 64px 0 32px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
}
.hero-modern .hero-content {
    flex: 1 1 400px;
    min-width: 300px;
    padding: 0 32px;
}
.hero-modern h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.hero-modern p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 32px;
}
.hero-modern .cta-btn {
    font-size: 1.15rem;
    padding: 16px 40px;
    border-radius: 8px;
    background: #4a90e2;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(74,144,226,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-modern .cta-btn:hover {
    background: #232946;
    color: #4a90e2;
    transform: translateY(-2px) scale(1.04);
}
.hero-modern .hero-image {
    flex: 1 1 340px;
    min-width: 260px;
    text-align: center;
}
.hero-modern .hero-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 2px 16px rgba(35,41,70,0.10);
}

.services-modern {
    max-width: 1200px;
    margin: 0 auto 64px auto;
    padding: 0 16px;
    text-align: center;
}
.services-modern h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #4a90e2;
}
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    justify-items: center;
}
.service-card {
    background: rgba(35,41,70,0.85);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(35,41,70,0.10);
    padding: 36px 24px 28px 24px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid #232946;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px #4a90e2;
    border-color: #4a90e2;
}
.service-card .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 6px rgba(74,144,226,0.10));
}
.service-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.service-card p {
    color: #b0b0b0;
    font-size: 1.05rem;
}

.about-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 64px auto;
    gap: 48px;
    padding: 0 16px;
}
.about-modern .about-content {
    flex: 1 1 400px;
    min-width: 300px;
}
.about-modern h2 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 18px;
}
.about-modern ul {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    padding-left: 18px;
}
.about-modern ul li {
    margin-bottom: 10px;
    list-style: disc;
}
.about-modern .cta-btn {
    background: #232946;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s;
}
.about-modern .cta-btn:hover {
    background: #4a90e2;
    color: #232946;
}
.about-modern .about-image {
    flex: 1 1 340px;
    min-width: 260px;
    text-align: center;
}
.about-modern .about-image img {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(35,41,70,0.10);
}

.portfolio-modern {
    max-width: 1200px;
    margin: 0 auto 64px auto;
    padding: 0 16px;
    text-align: center;
}
.portfolio-modern h2 {
    color: #4a90e2;
    font-size: 2.2rem;
    margin-bottom: 32px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}
.portfolio-card {
    background: rgba(35,41,70,0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(35,41,70,0.10);
    padding: 28px 18px;
    color: #fff;
    font-size: 1.08rem;
    border: 1px solid #232946;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.portfolio-card:hover {
    box-shadow: 0 6px 24px #4a90e2;
    border-color: #4a90e2;
    transform: translateY(-4px) scale(1.03);
}
.portfolio-cta {
    background: #232946;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    margin-top: 8px;
}
.portfolio-cta:hover {
    background: #4a90e2;
    color: #232946;
}

.testimonials-modern {
    max-width: 900px;
    margin: 0 auto 64px auto;
    padding: 0 16px;
    text-align: center;
}
.testimonials-modern h2 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 32px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    justify-items: center;
}
.testimonial-card {
    background: rgba(35,41,70,0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(35,41,70,0.10);
    padding: 32px 24px;
    color: #fff;
    font-size: 1.13rem;
    font-style: italic;
    border: 1px solid #232946;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.testimonial-card span {
    display: block;
    margin-top: 18px;
    color: #4a90e2;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px #4a90e2;
    border-color: #4a90e2;
    transform: translateY(-4px) scale(1.03);
}

.cta-modern {
    max-width: 900px;
    margin: 0 auto 64px auto;
    padding: 48px 16px;
    text-align: center;
    background: linear-gradient(120deg, #232946 0%, #4a90e2 100%);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(35,41,70,0.10);
}
.cta-modern h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
}
.cta-main {
    background: #fff;
    color: #232946;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(35,41,70,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-main:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.footer-modern {
    background: #181a22;
    color: #b0b0b0;
    padding: 48px 0 0 0;
    margin-top: 64px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 32px 16px;
    gap: 32px;
}
.footer-brand {
    flex: 1 1 220px;
    min-width: 180px;
    text-align: left;
}
.footer-brand img {
    width: 80px;
    margin-bottom: 12px;
}
.footer-links {
    flex: 1 1 180px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    text-align: left;
}
.footer-bottom {
    border-top: 1px solid #232946;
    text-align: center;
    padding: 18px 0;
    color: #b0b0b0;
    font-size: 0.98rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-modern, .about-modern {
        flex-direction: column;
        gap: 32px;
        padding: 32px 0 0 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}
@media (max-width: 700px) {
    .hero-modern, .about-modern {
        padding: 18px 0 0 0;
    }
    .hero-modern .hero-content, .about-modern .about-content {
        padding: 0 8px;
    }
    .footer-content {
        padding: 0 8px 24px 8px;
    }
    .cta-modern {
        padding: 32px 8px;
    }
}

h1 {
  text-align: center;
  font-family: 'Playfair Display', 'Montserrat', 'Outfit', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 2.5rem 0 1.5rem 0;
}

h1 span {
  display: inline-block;
  vertical-align: baseline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

#typewriter-services.typewriter {
  min-width: 16ch;
  margin-left: 0.5ch;
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: blink-cursor 0.75s steps(1) infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: #fff; }
}

/* Hero Section Styles - Open, Centered, No Box */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 4rem 1.5rem 3rem 1.5rem;
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* Gradient text effect for hero heading */
.gradient-text {
  background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-section h1 {
  text-align: center;
  font-family: 'Playfair Display', 'Montserrat', 'Outfit', serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: #fff;
}

.hero-section p {
  text-align: center;
  font-family: 'Inter', 'Outfit', 'DM Sans', sans-serif;
  font-size: 1.22rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 1.7rem;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.accent-underline {
  position: relative;
  display: inline-block;
  color: #fff;
}

.accent-underline::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
}

.accent-underline.animated::after {
  transform: scaleX(1);
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2.5rem 0.5rem 2rem 0.5rem;
    max-width: 98vw;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .hero-section p {
    font-size: 1.02rem;
  }
}
/* Hamburger menu for mobile */
.hamburger-mobile {
  display: none;
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2100;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.hamburger-mobile span {
  display: block;
  width: 26px;
  height: 3.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .hamburger-mobile {
    display: flex;
  }
  nav {
    display: none !important;
  }
  .mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,34,44,0.98);
    z-index: 2200;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.2s;
  }
  .mobile-nav-dropdown.closed {
    display: none;
  }
  .mobile-nav-dropdown a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    transition: background 0.18s;
  }
  .mobile-nav-dropdown a:hover {
    background: #232b3e;
  }
  .mobile-nav-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2.2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }
}
@media (min-width: 901px) {
  .mobile-nav-dropdown, .mobile-nav-close, .hamburger-mobile { display: none !important; }
}


/* Contact Modal Styles */
.contact-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,22,28,0.85);
  align-items: center;
  justify-content: center;
}
.contact-modal-overlay[style*="display: flex"] {
  display: flex !important;
}
.contact-modal-box {
  background: #232b3e;
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  position: relative;
  animation: modalPopIn 0.25s cubic-bezier(0.77,0,0.175,1);
}
@keyframes modalPopIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.contact-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.contact-modal-box a {
  color: #7ecbff;
  text-decoration: underline;
  word-break: break-all;
}
.contact-modal-box a:hover {
  color: #fff;
  text-decoration: none;
}

