* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* Keep Inter, or change to 'Plus Jakarta Sans', etc. */
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563; /* Softer, modern dark grey for body text */
    background: #fff;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Container inside header */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo link */
.logo {
  text-decoration: none;
}

/* Logo text styling */
.logo h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo h1 span {
  font-weight: 700;
  background: linear-gradient(#1a202c, #1a202c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation styles */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #3b82f6;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
#hero {
 background: linear-gradient(135deg, #1a202c, #0f172a);
  color: white;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

#hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

#hero h2 span {
  background: linear-gradient(135deg, #60a5fa, #c084fc); /* vibrant gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero p {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 0.375rem; /* small rounded corners */
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #9333ea); /* Consistent with header logo gradient */
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); /* Adjusted shadow to new blue */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4); /* Adjusted shadow to new blue */
}
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: #111827;
  color: white;
  border: 2px solid #ffffff22;
  border-radius: 0.5rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  border-color: transparent;
  box-shadow: 0 0 0 2px #3b82f6, 0 0 10px #3b82f6, 0 0 20px #9333ea; /* Consistent with new gradient */
}

/* Services */
#services {
  padding: 5rem 2rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#services h2, #about h2, .testimonials-section .title, #contact h2 {
    font-size: 2.5rem;
    font-weight: 700; /* Keep 700 or adjust if you prefer lighter headings */
    color: #1a202c; /* Consistent dark charcoal for main headings */
}
#services .subtitle, .testimonials-section .subtitle {
    font-size: 1.1rem;
    color: #4b5563; /* Consistent mid-grey for subtitles */
    margin-bottom: 3rem;
}
/* For the contact section subtext, keep it light for contrast on the dark background */
#contact .subtext {
    color: #e0f2fe; /* Ensure good contrast on the dark gradient */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 48px;       /* increased icon size for professional look */
  color: #007bff;        /* a clean blue color, change to your brand color */
  margin-bottom: 12px;   /* slightly bigger spacing below icon */
}

.service-card h3 {
  color: #111827;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #374151;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check {
  color: #10b981; /* Tailwind green-500 */
  margin-right: 0.5rem;
  font-weight: bold;
}
#about {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  flex: 1;
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stat-box p {
  font-size: 0.95rem;
  color: #6b7280;
}

.about-callout {
  flex: 1 1 40%;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-callout h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.about-callout ul {
  list-style: none;
  padding: 0;
}

.about-callout li {
  margin-bottom: 1.25rem;
  color: #1f2937;
  font-size: 1rem;
}

.about-callout li span {
  color: #6b7280;
  font-size: 0.95rem;
  display: block;
  margin-top: 0.25rem;
}

.about-callout strong {
  color: #1d4ed8;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 2rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-section .title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}

.testimonials-section .subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
 background: #f7f9fd; /* A very light, clean off-white background */
  border: 1px solid #eef2f8; /* Softer, subtle border */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03); /* Lighter shadow */
  border-radius: 1.25rem;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* stronger bottom shadow */
  transform: translateY(-4px); /* subtle lift */
  border-color: #c7d2fe; /* slightly darker on hover */
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* Adjusted hover shadow */
    border-color: #d8e2ee; /* Slightly darker on hover */
}

.card .stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card .text {
    color: #4b5563; /* Consistent mid-grey for testimonial text */
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card hr {
 border: none;
  border-top: 1px solid #e2e8f0; /* Consistent soft divider */
  margin-bottom: 1rem;
}

.card .name {
  font-weight: 600;
  color: #1a202c; /* Consistent dark charcoal for names */
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.card .role {
 font-size: 0.85rem;
  color: #3b82f6; /* Consistent primary blue for roles */
}

/* Contact Section */
#contact {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

#contact .subtext {
  font-size: 1.1rem;
  color: #dbeafe;
  margin-bottom: 3rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-item strong {
  font-size: 1rem;
  color: #f9fafb;
}

.contact-item p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #dbeafe;
}

.contact-box {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 1.25rem;
  color: #f1f5f9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.contact-box ul {
  list-style: none;
  padding: 0;
}

.contact-box li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.check-green {
  color: #22c55e; /* Consistent success green */
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.contact-link {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* Footer */
#footer {
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #1e293b;
}

#footer p {
  margin: 0;
  font-size: 0.9rem;
}

#footer .socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#footer .socials a {
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: color 0.3s;
}

#footer .socials a:hover {
  color: #60a5fa;
}



/* Responsive */
/* Burger button styling */
#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

#burger span {
  height: 2px;
  width: 25px;
  background: #111827;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#burger.toggle span:nth-child(2) {
  opacity: 0;
}
#burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
/* --- RESPONSIVE MEDIA QUERIES (Updated & Added) --- */

/* General adjustments for screens smaller than typical desktop (e.g., tablets, larger phones) */
@media (max-width: 768px) {
    /* Header & Navigation */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 1rem;
        padding: 1rem 2rem;
        display: none; /* Hidden by default for mobile nav */
        border-bottom: 1px solid #e5e7eb;
    }

    nav.show {
        display: flex; /* Shown when toggled by JS */
    }

    #burger {
        display: flex; /* Show hamburger icon */
    }

    /* Adjust padding for main sections */
    section {
        padding: 4rem 1.5rem; /* Reduce horizontal padding on sections */
    }

    /* Adjust main headings for better readability on smaller screens */
    #services h2,
    #about h2,
    .testimonials-section .title,
    #contact h2 {
        font-size: 2rem; /* Slightly smaller on tablets/smaller desktops */
    }

    /* Adjust horizontal padding for containers within sections */
    header > div,
    #hero .hero-container,
    #services,
    #about .about-container,
    .testimonials-section .container,
    #contact .contact-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}


/* Adjustments for smaller mobile devices (e.g., iPhone SE, other standard phones) */
@media (max-width: 480px) {
    /* Further reduce padding on sections for very small screens */
    section {
        padding: 3rem 1rem; /* More vertical, less horizontal padding */
    }

    /* Adjust hero padding specifically if needed */
    #hero {
        padding: 3rem 1rem; /* Adjust Hero section padding */
    }

    /* Adjust header padding for very small screens */
    header > div {
        padding: 0.75rem 1rem;
    }

    /* Adjust font size for main headings on very small phones */
    #services h2,
    #about h2,
    .testimonials-section .title,
    #contact h2 {
        font-size: 1.75rem; /* Even smaller on mobile */
    }

    /* Adjust font size for subtitles on very small phones */
    #services .subtitle,
    .testimonials-section .subtitle,
    #contact .subtext {
        font-size: 1rem;
    }

    /* Force service cards to stack in a single column */
    .service-grid {
        grid-template-columns: 1fr; /* Force single column on tiny screens */
        gap: 1.5rem; /* Slightly reduce gap */
    }

    /* Stack hero buttons vertically if they become too cramped */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .btn-primary, .btn-secondary {
        width: 100%; /* Make buttons full width when stacked */
        text-align: center;
    }

    /* Stack stat boxes in the about section vertically */
    .stats {
        flex-direction: column; /* Stacks stat boxes vertically */
        gap: 1rem; /* Reduce gap between stacked items */
    }
    .stat-box {
        width: 100%; /* Ensures they take full width when stacked */
        padding: 1.25rem 1rem; /* Slightly smaller padding for stat boxes */
    }

    /* Adjust contact items and box for smaller screens */
    .contact-container {
        flex-direction: column; /* Stack contact info and box */
        gap: 1.5rem;
    }
    .contact-info,
    .contact-box {
        flex: 1 1 auto; /* Allow items to take full width */
    }
    .contact-box {
        padding: 1.5rem; /* Smaller padding for contact box */
    }

    /* Adjust testimonials card padding */
    .cards .card {
        padding: 1.5rem;
    }
}


/* General responsive image/media rule (add this if you haven't already, good practice) */
img, video {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents extra space below images */
}


