/* Hero Section */
:root {
    /* Color Palette */
    --primary: hsl(220, 91%, 58%);
    --primary-glow: hsl(220, 91%, 68%);
    --accent: hsl(264, 83%, 57%);
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(220, 26%, 14%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(220, 13%, 91%);
    --muted-foreground: hsl(220, 8.9%, 46.1%);
    --border: hsl(220, 13%, 91%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-hero: linear-gradient(135deg, hsl(220, 91%, 58%) 0%, #7f36ec 100%);
    --gradient-hero2: linear-gradient(135deg, hsl(0, 0%, 97%) 0%, #7f36ec 100%);
    --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(220, 13%, 95%) 100%);
    --gradient-subtle: linear-gradient(180deg, var(--background) 0%, hsl(220, 13%, 95%) 100%);

    /* Shadows */
    --shadow-primary: 0 10px 30px -10px hsla(220, 91%, 58%, 0.3);
    --shadow-card: 0 4px 20px -4px hsla(220, 26%, 14%, 0.1);
    --shadow-glow: 0 0 40px hsla(220, 91%, 68%, 0.4);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

  --fg: var(--foreground);
  --bg: var(--background);
  --muted-fg: var(--muted-foreground);
}


*{
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    /*overflow-x: hidden;*/
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--fg);
    background: var(--bg);
}

.logo {
    height: 60px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: var(--primary);
    color: var(--on-primary);
    padding: .5rem .75rem;
    border-radius: .5rem;
    z-index: 1000
}

.container {
    max-width: 100%;
    margin: 0 20px;
    margin-inline: auto;
    padding-inline: 1.25rem
}

.narrow {
    max-width: 850px;
    margin-inline: auto
}

.text-center {
    text-align: center
}

.center {
    display: flex;
    justify-content: center
}

.mt-lg {
    margin-top: 2rem
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-fg)
}

.muted {
    color: var(--muted-fg)
}


/* Emergency Banner */

.container_banner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;

}

.emergency-banner {
    background: var(--gradient-hero2);
    color: white;
    padding: 0.75rem 0;
}

.emergency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 1rem;
    height: 1rem;
    color: black;
}

.emergency-banner span {
    font-size: 0.875rem;
    font-weight: 500;
    color: black;
}




/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    background: hsla(0, 0%, 100%, .95);
    backdrop-filter: saturate(180%) blur(10px);
    /* border-bottom: 1px solid var(--border); */
    z-index: 100
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    position: relative
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 1.125rem
}

.brand-inline {
    display: inline-flex;
    align-items: center;
    gap: .625rem
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    /* background: var(--primary); */
    color: var(--on-primary);
    font-weight: 800;
    font-size: 1.25rem;
    position: absolute;
}

.brand-name {
    font-weight: 700
}

/* Desktop Navigation */
.nav-list {
    display: none;
    align-items: center;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

@media (min-width:900px) {
    .nav-list {
        display: flex
    }
}

.nav-link {
    display: inline-block;
    padding: .625rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
    color: var(--fg);
    transition: background .2s, color .2s;
    font-weight: 500
}

.nav-link:hover {
    background: var(--muted)
}

.nav-link.active {
    color: var(--primary);
    background: color-mix(in oklab, var(--primary) 10%, white 90%)
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 101
}

@media (min-width:900px) {
    .mobile-toggle {
        display: none
    }
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all .3s ease;
    border-radius: 2px
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px)
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.mobile-menu.open {
    display: block;
    max-height: 100vh
}

@media (min-width:900px) {
    .mobile-menu {
        display: none !important
    }
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: grid;
    gap: .5rem
}

.mobile-menu-link {
    display: block;
    padding: .75rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
    color: var(--fg);
    transition: background .2s;
    font-weight: 500
}

.mobile-menu-link:hover {
    background: var(--muted)
}

.mobile-menu-link.active {
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 10%, white 90%)
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: .6rem;
    background: var(--primary);
    color: var(--on-primary);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform .15s ease, filter .2s ease;
    border: none;
}

.button:hover {
    filter: brightness(1.03)
}

.button:active {
    transform: translateY(1px)
}

.button-outline {
    background: transparent;
    color: whitesmoke;
    border: 1px solid color-mix(in oklab, var(--primary) 60%, white 40%)
}

.button-outline:hover {
    background: color-mix(in oklab, var(--primary) 10%, white 90%);
    color: var(--primary)
}


.button-outlines {
    background: color-mix(in oklab, var(--primary) 10%, white 90%);
    color: var(--primary);
    border: 1px solid color-mix(in oklab, var(--primary) 60%, white 40%)
}

.button-outlines:hover {
    background: var(--primary);
    color: whitesmoke;
}

.button-secondary {
    background: var(--gradient-hero);
    color: var(--card);
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-outline {
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: #e5e7eb00;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-gradient:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}


.hero {
    position: relative;
    padding: 30px 0 8rem;
    overflow: hidden;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #7f36ec 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;

    opacity: 0.8;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}


@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: hsla(220, 91%, 58%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1,
.entry-content h1 {
    font-size: 45px;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }

}

@media screen and (max-width: 480px) {

    h1,
    .entry-content h1 {
        font-size: 30px;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.stat {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat {
        text-align: left;
    }
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: black;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
        color: black;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: black;
}

.hero-visual {
    position: relative;
}

.services-grid {
    position: relative;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.services-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: var(--radius-xl);
    filter: blur(3rem);
    z-index: -1;
}

.service-card {
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
}

.service-card.education {
    background-color: hsla(220, 91%, 58%, 0.1);
}

.service-card.it {
    background-color: hsla(264, 83%, 57%, 0.1);
}

.service-card.cloud {
    background-color: hsla(142, 76%, 36%, 0.1);
}

.service-card.security {
    background-color: hsla(0, 84%, 60%, 0.1);
}

.service-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.service-card.education .service-title {
    color: var(--primary);
}

.service-card.it .service-title {
    color: var(--accent);
}

.service-card.cloud .service-title {
    color: hsl(142, 76%, 36%);
}

.service-card.security .service-title {
    color: hsl(0, 84%, 60%);
}

.service-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ------------------- RESPONSIVE FIXES ------------------- */

/* MOBILE FIX 1: Text center + spacing adjust */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* MOBILE FIX 2: Hero title responsive */
h1,
.entry-content h1 {
    font-size: clamp(28px, 6vw, 45px);
}

.hero-title {
    font-size: clamp(18px, 4.5vw, 25px);
}

/* MOBILE FIX 3: Buttons full width on phone */
@media (max-width: 600px) {
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* SERVICES GRID FIX — SAME DESIGN but responsive */
.services-grid {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Tablet */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
    }
}

/* Phone */
@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 16px;
    }
}

/* Fix spacing on very small devices */
@media (max-width: 400px) {
    .hero {
        padding-top: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}





/* Services Section */
.services {
    padding: 20 0 8rem;

}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: hsla(220, 91%, 58%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid-main {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.service-icon i {
    font-size: 25px;
    color: white;
}

.education-gradient {
    background: linear-gradient(135deg, hsl(220, 91%, 58%), hsl(264, 83%, 57%));
}

.it-gradient {
    background: linear-gradient(135deg, hsl(264, 83%, 57%), hsl(316, 73%, 52%));
}

.cloud-gradient {
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(220, 91%, 58%));
}

.security-gradient {
    background: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(25, 95%, 53%));
}

.devops-gradient {
    background: linear-gradient(135deg, hsl(229, 84%, 50%), hsl(220, 91%, 58%));
}

.smart-gradient {
    background: linear-gradient(135deg, hsl(45, 93%, 47%), hsl(0, 84%, 60%));
}

.ai {
    background: linear-gradient(135deg, hsl(220deg 97% 49.11%), #68c1fb);
}

.marketing {
    background: linear-gradient(135deg, hsl(135.32deg 93.17% 46.28%), #03ad6c);
}

.testing {
    background: linear-gradient(135deg, hsl(329, 100%, 50%), #99124f);
}

.analytics-gradient {
    background: linear-gradient(135deg, hsl(280, 100%, 50%), #8b5cf6);   
}

.web-gradient {
    background: linear-gradient(135deg, hsl(169, 90%, 48%), #3bddbf);    
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-item:hover h3 {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    align-items: center;
    display: flex;
    justify-content: center;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 18px;
    color: var(--muted-foreground);
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 0.75rem;
}

.section-cta {
    text-align: center;
}

.ast-single-post .entry-content a,
.ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    /* text-decoration: underline; */
    padding: 10px 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 40px;
    text-decoration: none;
}

/*SERVICES HERO BANNER*/

.services-hero {
  position: relative;
  padding: 160px 20px 140px;
  color: #111;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(90, 9, 231, 0.336),
      rgba(140, 90, 210, 0.126)
    ),
    url("images/servicehero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero-content {
  position: relative;
  max-width: 880px;
  margin: auto;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.services-hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/*RESPONSIVE*/

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px 90px;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 20px;
    font-size: 16px;
  }

  .services-hero {
    padding: 96px 16px 80px;
  }
  .services-hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .services-hero p {
    font-size: 15px;
    line-height: 1.6;
  }
}



/* About Page Specific Styles */

.about-hero {
    padding: 5rem 0 8rem;
    background: var(--gradient-subtle);
    text-align: center;
}

.about-hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 3.75rem;
    }
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.values-section {
    padding: 5rem 0;
    background: var(--gradient-subtle);
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-features {
        list-style: none;
        margin-bottom: 1.5rem;


    }

}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-primary);
}

.value-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.stats-section {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-subtle);
}

.cta-content {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

/* Footer */

.footer-logo{
    height: 120px;
}

.footer {
    background-image: linear-gradient(180deg, #FFFFFF 0%, #7f36ec 100%);
    padding: 60px 20px;
    border-top: 1px solid #e6e6e6;
    font-family: "Inter", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1 1 200px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo span {
    font-weight: 400;
}

.footer-desc {
    max-width: 450px;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 15px;
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.6;
}

/* Right Columns */
.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    flex: 2 1 300px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: black;
    line-height: 1.5;
}

.footer-col ul li a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #000;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: black;
    align-items: center;
}

.footer-links a {
    margin-left: 20px;
    color: black;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        margin-left: 10px;
    }
}

@media (max-width: 450px) {
    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
        text-align: center;
    }
}

/* 1. Mobile & Small Tablet (Single Column) */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: left; /* Keep left aligned for better readability on mobile */
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 2. Tablets (iPad Mini, Air, Pro) - 768px to 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allows items to wrap naturally */
        gap: 40px;
    }

    .footer-left {
        flex: 1 1 100%; /* Full width on top to prevent the side-gap */
        margin-bottom: 20px;
    }

    .footer-right {
        flex: 1 1 100%;
        display: grid;
        /* This line creates 3 columns if they fit, or 2 if they don't */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 30px;
    }
}

/* ────────────────────────────────────────────────
   MISSION SECTION
───────────────────────────────────────────────── */

.enhanced-mission {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f0ff 100%);
}

.mission-layout {
  display: grid;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Desktop two-column layout */
@media (min-width: 1200px) {
  .mission-layout {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 0;
  }
}

.mission-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mission-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #000;
  font-size: 17px;
  line-height: 1.6;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  background-image: url("images/iconmission.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.mission-visual img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(127,54,236,0.25));
}

/* Slide-in animation */
.mission-visual {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.mission-visual.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ────────────────────────────────────────────────
   RESPONSIVE MISSION
───────────────────────────────────────────────── */

@media (max-width: 1199px) {
  .mission-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .mission-visual img {
    max-width: 380px;
  }
}

@media (max-width: 800px) {
  .enhanced-mission {
    padding: 4.5rem 0;
  }
  .mission-layout {
    gap: 3rem;
  }
  .mission-list li {
    font-size: 16px;
  }
  .mission-visual {
    transform: translateX(60px);
  }
  .mission-visual img {
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .enhanced-mission {
    padding: 3.5rem 0;
  }
  .mission-layout {
    gap: 2.5rem;
  }
  .mission-list li {
    font-size: 15px;
    line-height: 1.55;
    padding-left: 24px;
  }
  .mission-visual {
    transform: translateX(40px);
  }
  .mission-visual img {
    max-width: 280px;
  }
}

/* ────────────────────────────────────────────────
   HOW WE WORK SECTION
───────────────────────────────────────────────── */

/* ────────────────────────────────────────────────
   HOW WE WORK SECTION - FULL CORRECTED CSS
───────────────────────────────────────────────── */

.how-we-work-flow {
  padding: 5rem 0;
  /* Soft gradient that blends into the white background above */
  background: linear-gradient(180deg, #ffffff 0%, #f4f0ff 100%);
}

.flow-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* PROCESS LAYOUT 
   Changed align-items to 'start' to prevent the card from stretching vertically.
   Increased gap to 6rem to move the card slightly away from the right edge.
*/
.process-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  margin-top: 3.5rem;
  align-items: start; 
}

/* FLOW ROW (The Step Rows) */
.flow-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.2rem;
}

.flow-row:last-child {
  margin-bottom: 0;
}

/* IMAGE STYLING */
.flow-image {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.flow-row:nth-child(even) .flow-image {
  justify-content: flex-start;
}

.flow-image img {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(127, 54, 236, 0.25);
}

/* TEXT STYLING */
.flow-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-text p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

/* ANIMATION STATES (Triggered by JS) */
.flow-image.slide-left  { transform: translateX(-80px); }
.flow-image.slide-right { transform: translateX( 80px); }

.flow-image.in-view {
  opacity: 1;
  transform: translateX(0) !important;
}

/* SIDEBAR CARD 
   Set height to auto and used padding-bottom control to remove the empty void.
*/
.why-choose-sidebar {
  position: relative;
  height: fit-content;
}

.why-choose-card {
  background: #cb87f354;
  border-radius: 26px;
  padding: 2.5rem 2.2rem; /* Balanced padding */
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.13);
  position: sticky;
  top: 120px;
  max-width: 380px;
  width: 100%;
  height: auto; 
  opacity: 0;
  transform: translateX(80px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.why-choose-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* CARD ICON */
.card-icon {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 64px;
  height: 64px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(127, 54, 236, 0.4));
}

/* WHY CHOOSE US LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.why-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 1.3rem;
}

.why-list li:last-child {
  margin-bottom: 0; /* Remove extra margin at bottom of the list */
}

.dot {
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.why-list strong {
  font-size: 16px;
  line-height: 1.4;
}

.why-list p {
  font-size: 14.5px;
  margin-top: 4px;
  color: #555;
}

/* ────────────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE
───────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .process-with-sidebar {
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  .process-with-sidebar {
    grid-template-columns: 1fr; /* Stacked layout */
  }

  .why-choose-card {
    position: relative;
    top: auto;
    margin: 40px auto 0;
    max-width: 480px;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .flow-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flow-image {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .flow-image img {
    width: 140px;
    height: 140px;
  }

  .why-choose-card {
    padding: 2rem 1.5rem;
  }
}


/*CUSTOM SOLUTION BANNER*/

.custom-banner {
  background: rgba(198, 137, 248, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 5rem 2rem;
  text-align: center;
  margin: 5rem auto;
  max-width: 1200px;

  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(127, 54, 236, 0.12),
    inset 0 0 0 1px rgba(127, 54, 236, 0.08);
  border: 1px solid rgba(127, 54, 236, 0.1);

  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.custom-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(127, 54, 236, 0.04) 0%,
    rgba(59, 130, 246, 0.04) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.custom-banner > * {
  position: relative;
  z-index: 1;
}

/* Heading */
.custom-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #000;
}

/* Text */
.custom-banner p {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #000;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 1rem 2.6rem;
  font-size: 1.25rem;
  font-weight: 700;

  color: white;
  background: linear-gradient(90deg, #410fca, #6f42c1);
  border-radius: 16px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(127, 54, 236, 0.35);
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(167, 133, 219, 0.45);
}

@media (max-width: 800px) {
  .custom-banner {
    margin: 4rem 1.5rem;
    padding: 4.2rem 2rem;
    border-radius: 22px;
  }

  .custom-banner h1 {
    font-size: 2.6rem;
  }

  .custom-banner p {
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
  }

  .cta-button {
    font-size: 1.15rem;
    padding: 0.95rem 2.3rem;
  }
}

@media (max-width: 480px) {
  .custom-banner {
    margin: 3rem 1rem;
    padding: 3.2rem 1.5rem;
    border-radius: 20px;
  }

  .custom-banner h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .custom-banner p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 2rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 0;
    border-radius: 14px;
  }
}

/* ────────────────────────────────────────────────
   VISION & VALUES SECTION
───────────────────────────────────────────────── */

.vision-values-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6a5af9;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f0e0f;
  line-height: 1.15;
}

/* VISION CONTENT */
.vision-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.vision-text h3 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #2b2b2b;
}

.vision-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

.vision-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(108, 92, 249, 0.18);
}

/* VALUES GRID */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.val-card {
  position: relative;
  background: linear-gradient(90deg, #b671f1f5, #e0d3ec);
  backdrop-filter: blur(10px);
  padding: 30px 25px 30px 70px; /* space for icon */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.val-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.val-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.val-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.val-icon-img {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
}

/* ────────────────────────────────────────────────
   ANIMATIONS – VISION & VALUES
───────────────────────────────────────────────── */

.animate-right,
.vision-image.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-active {
  opacity: 1;
  transform: translateX(0) !important;
}

/* Cards stagger */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-card.from-left  { transform: translateX(-80px); }
.animate-card.from-right { transform: translateX( 80px); }

.animate-card.animate-active {
  opacity: 1;
  transform: translate(0,0) !important;
}

/* Stagger delays – up to 5 cards */
.val-grid .animate-card:nth-child(1) { transition-delay: 0.1s; }
.val-grid .animate-card:nth-child(2) { transition-delay: 0.2s; }
.val-grid .animate-card:nth-child(3) { transition-delay: 0.3s; }
.val-grid .animate-card:nth-child(4) { transition-delay: 0.4s; }
.val-grid .animate-card:nth-child(5) { transition-delay: 0.5s; }

@media (min-width: 768px) {
  .vision-image {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ────────────────────────────────────────────────
   DIFFERENCE / WHY CHOOSE SECTION
───────────────────────────────────────────────── */

/* SECTION WRAPPER */
.difference-choose-section {
    padding: 80px 0;
    background-color: #f8f9ff; /* Adjust to your background color */
}

/* FLEX CONTAINER */
.two-column-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px; /* Space between the two sides */
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT CONTENT (60% width) */
.difference-left {
    flex: 1.2;
}

.section-pill {
    background: #e0e7ff;
    color: #6059e4;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.section-heading {
    font-size: 4rem;
    margin-top: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: #555;
    margin: 20px 0;
}

.difference-list {
    list-style: none;
    padding: 0;
}

.difference-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* RESPONSIVENESS - Stacks on mobile */
@media (max-width: 992px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .difference-left, .why-choose-sidebar {
        width: 100%;
        flex: none;
    }
}

/* ────────────────────────────────────────────────
   RESPONSIVE STYLES
───────────────────────────────────────────────── */

@media (max-width: 1199px) {
  .vision-values-section,
  .difference-choose-section {
    padding: 80px 20px;
  }

  .vision-content {
    gap: 50px;
  }

  .vision-image img {
    max-width: 380px;
  }

  .val-grid {
    gap: 24px;
  }

  .two-column-layout {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .vision-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .vision-image img {
    margin: 30px auto 0;
    max-width: 420px;
  }

  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .difference-left {
    order: 1;
  }

  .section-heading {
    font-size: 32px;
  }
}

@media (max-width: 800px) {
  .vision-values-section,
  .difference-choose-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 34px;
  }

  .vision-text h3,
  .section-heading {
    font-size: 28px;
  }

  .vision-text p,
  .section-desc {
    font-size: 15.5px;
  }

  .val-card {
    padding: 28px 20px 28px 64px;
  }

  .val-icon-img {
    width: 32px;
    height: 32px;
    top: 20px;
    left: 20px;
  }

  .val-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .vision-values-section,
  .difference-choose-section {
    padding: 50px 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 13px;
  }

  .section-heading {
    font-size: 26px;
  }

  .vision-text h3 {
    font-size: 24px;
  }

  .vision-text p,
  .section-desc,
  .val-card p,
  .difference-list li {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .vision-image img {
    max-width: 320px;
  }

  .val-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .val-card {
    padding: 24px 18px 24px 60px;
  }

  .val-icon-img {
    width: 28px;
    height: 28px;
    top: 18px;
    left: 18px;
  }

  /* Disable / soften heavy animations on small screens */
  .animate-right,
  .animate-left,
  .animate-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .val-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  }
}

/* DROPDOWN MENU */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(127, 54, 236, 0.08);
  color: var(--primary);
}

/* SHOW ON HOVER */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE SERVICES DROPDOWN */
.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown-menu a {
  padding: 10px 0;
  display: block;
  font-size: 15px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

/* Prevent animation overflow */
.hero,
.enhanced-mission,
.how-we-work-flow,
.vision-values-section,
.difference-choose-section {
  overflow-x: clip;
}

/* Tablet fix for sidebar overflow */
@media (max-width: 900px) {
  .process-with-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Image safety */
img {
  max-width: 100%;
}

