:root {
    /* Color Palette derived from image */
    --primary-blue: #2a4c82;
    --dark-blue: #1b335f;
    --navy: #15264a;
    --primary-pink: #b63a76;
    --pink-hover: #9c3065;
    
    --text-dark: #2b2b2b;
    --text-gray: #666666;
    --text-light: #f0f0f0;
    
    --bg-light: #f8f9fc;
    --white: #ffffff;
    
    /* Project Card Backgrounds */
    --proj-dark: #12213e;
    --proj-green: #67922d;
    --proj-purple: #463973;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif; /* For stats numbers / some accents maybe, stick to Inter mostly */
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.bg-light { background-color: var(--bg-light); }

.subtitle {
    display: block;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-transform: capitalize;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-pink {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-pink:hover {
    background-color: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 58, 118, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* --- HEADER --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.sticky {
    position: fixed;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo img {
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* --- HERO --- */
.hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Offset for header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

/* --- STATS --- */
.stats {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.stats-container {
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-box {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box.blue { background-color: var(--primary-blue); }
.stat-box.pink { background-color: var(--primary-pink); }

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    display: inline-block;
}

.stat-box .plus-sign {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* --- HOW WE WORK --- */
.hww-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hww-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

/* Show only on desktops */
@media screen and (max-width: 1023px) {
  .hww-image {
    display: none;
  }
}

.blob-mask {
    border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%; }
    50% { border-radius: 60% 40% 50% 50% / 40% 60% 50% 60%; }
    100% { border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%; }
}

.blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--bg-light);
    border-radius: 50%;
    z-index: 1;
}

.hww-text {
    flex: 1;
}

.hww-text p {
    margin-bottom: 20px;
}

/* --- SERVICES --- */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: 'e';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 400px;
    font-weight: 800;
    color: rgba(0,0,0,0.02);
    z-index: 0;
    line-height: 1;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 100px 0;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 76, 130, 0.85); /* primary blue with opacity */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- ABOUT US --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.checklist {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item i {
    color: var(--primary-pink);
    background: rgba(182, 58, 118, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.check-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.support-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(42, 76, 130, 0.3);
}

.support-badge i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.support-badge h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.support-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* --- FEATURED PROJECTS --- */
.featured-projects {
    padding-bottom: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 400px; /* Full height block */
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    cursor: pointer;
}

.dark-blue-bg { background-color: var(--proj-dark); background-image: linear-gradient(rgba(18,33,62,0.9), rgba(18,33,62,0.9)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&q=80&w=800'); background-size: cover; background-position: center; }
.green-bg { background-color: var(--proj-green); background-image: linear-gradient(rgba(103,146,45,0.9), rgba(103,146,45,0.9)), url('https://images.unsplash.com/photo-1563206767-5b18f218e8de?auto=format&fit=crop&q=80&w=800'); background-size: cover; background-position: center; }
.purple-bg { background-color: var(--proj-purple); background-image: linear-gradient(rgba(70,57,115,0.9), rgba(70,57,115,0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&q=80&w=800'); background-size: cover; background-position: center; }

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    background: rgba(0,0,0,0);
}

.project-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-card .btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    margin-top: 15px;
}

.project-card:hover .btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.project-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 5px;
}

.project-desc {
    font-size: 1rem;
    opacity: 0.8;
}

/* --- CLIENTS --- */
.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.clients-grid img {
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
    max-width: 150px;
}

.clients-grid img:hover {
    filter: grayscale(0%) opacity(1);
}

/* --- NEWSLETTER CTA --- */
.newsletter {
    background-color: var(--primary-blue);
    padding: 50px 0;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-text h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.news-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.news-form form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    width: 250px;
    font-family: var(--font-primary);
    outline: none;
}

/* --- LATEST NEWS --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.news-content h3:hover {
    color: var(--primary-pink);
}

.news-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* --- PRE-FOOTER --- */
.pre-footer {
    background-color: var(--navy);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pre-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.pf-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pf-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.pf-form {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 5px;
    border-radius: 4px;
    width: 60%;
}

.pf-form input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    font-family: var(--font-primary);
    outline: none;
}

.pf-form input[type="text"] {
    border-right: 1px solid #ddd;
}

.pf-form .btn {
    border-radius: 2px;
}

/* --- FOOTER --- */


.footer-section {
  width: 100%;
}

/* TOP SECTION */
.footer-top {
  display: flex;
  flex-wrap: wrap;
}

/* MAP */
.footer-map {
  width: 50%;
  min-height: 400px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RIGHT CONTENT */
.footer-content {
  width: 50%;
  background: #1f2a36;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* INNER CONTENT */
.footer-inner {
  padding: 50px;
}

.logo-footer {
  width: 180px;
  margin-bottom: 20px;
}

.desc {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ccc;
}

/* LINKS */
.links h4 {
  margin-bottom: 15px;
  color: #d6d6d6;
}

.link-columns {
  display: flex;
  gap: 40px;
}

.link-columns ul {
  list-style: none;
}

.link-columns li {
  margin-bottom: 10px;
  cursor: pointer;
}

/* BOTTOM CONTACT */
.footer-bottom {
  padding: 30px 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: #ffffff;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.social {
  margin-top: 15px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;

  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.social a.linkedin { background: #0077b5 !important; }
.social a.facebook{ background: #1877f2 !important; }
.social a.youtube { background: #ff0000 !important; }
.social a.twitter { background: #1da1f2 !important; }

/* Hover effect (optional but nice) */
.social a:hover {
  background: #0077b5; /* LinkedIn blue default */
}
/* COPYRIGHT */
.copyright {
  text-align: center;
  padding: 15px;
  background: #f5f5f5;
  font-size: 14px;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .footer-map,
  .footer-content {
    width: 100%;
  }

  .footer-map {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-inner {
    padding: 30px 20px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .link-columns {
    flex-direction: column;
    gap: 10px;
  }

  .social span {
    padding: 8px;
  }
}
@media (max-width: 768px) {
    .nav {
        display: none; /* simple mobile menu for now */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }
    
    .contact-info {
        display: none;
    }

    .stats-container {
        flex-direction: column;
    }
    
    .services-grid, .news-grid, .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        height: auto;
    }
    
    .project-card {
        height: 300px;
    }

    .pre-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pf-form {
        width: 100%;
        flex-direction: column;
        padding: 10px;
    }

    .pf-form input[type="text"] {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .newsletter-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .news-text {
        width: 100%;
    }

    .news-text h2,
    .news-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .news-form form {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .news-form input {
        width: 100%;
        max-width: 400px;
    }

    .news-form .btn {
        width: auto;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        order: 2;
    }

    .support-badge {
        position: static;
        margin: 20px auto 0;
        left: auto;
        bottom: auto;
        right: auto;
        width: fit-content;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        justify-content: center;
    }
}
