:root {
    --brand-blue: #00aeef;
    --text-dark: #1a1a1a;
    --text-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #0b0f1a;
}


/* Preloader wrapper */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* change if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* background: #0f172a; */
}

/* Lottie size */
#preloader-lottie {
  width: 180px;
  height: 180px;
}

@media (max-width: 480px) {
  #preloader-lottie {
    width: 120px;
    height: 120px;
  }
}


.custom-container {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* MOBILE: Extra Small Devices (320-480px) */
@media (max-width: 480px) {
    .custom-container {
        padding: 0 16px;
    }
}


.hero {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
       min-height: 80vh;  
       

    /* padding: 80px 0; ONLY vertical spacing */
}


/* FULL WIDTH HERO BACKGROUND */
.hero-bg {
    position: relative;
    width: 100%;
     background: linear-gradient(
        135deg,
        #071923 0%,
        #03131E 100%
    ); /* same color as your image */
    overflow: hidden;

    min-height: 70vh;

}





/* HERO WRAPPER */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);

    font-size: 350px;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;

    /* color: rgba(13, 110, 253, 0.06); */
     color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;

    pointer-events: none;
    user-select: none;

    animation: watermarkMove 25s linear infinite;
    z-index: 1;
}




@keyframes watermarkMove {
    0% {
        transform: translate(-15%, -50%);
    }
    100% {
        transform: translate(15%, -50%);
    }
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-watermark {
        font-size: 120px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .hero-watermark {
        font-size: 80px;
    }
}






.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.04),
        transparent 60%
    );

    pointer-events: none;
}







.hero-left {
    max-width: 520px;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
     color: #ffffff;
}

.hero-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
     color: #ffffff;
}

.hero-left p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quote-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}





.outline-btn {
    padding: 10px 20px;
     color: #ffffff;
    background: transparent;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}










/* HERO RIGHT */
.hero-right img {
    width: 520px;
    max-width: 100%;
}

/* ANIMATION */
.hero-animation {
    width: 500px;
    height: 500px;
    flex: 1;
    max-width: 100%;
}

/* RESPONSIVE ANIMATION */
@media (max-width: 1024px) {
    .hero-animation {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-animation {
        width: 300px;
        height: 300px;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav {
        display: none;
    }
}

/* MOBILE: Tablet (600-767px) */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .hero-left h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-left p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

/* MOBILE: Extra Small Devices (320-480px) */
@media (max-width: 480px) {
    .hero {
        padding: 30px 16px;
    }

    .hero-left h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-left h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero-left p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
    }

    .quote-btn,
    .outline-btn {
        width: 100%;
        padding: 11px 14px;
        font-size: 12px;
    }

    .hero-animation {
        width: 250px !important;
        height: 250px !important;
    }
}










































/* EXPERTISE SECTION */




.expertise {
    padding: 150px 80px 140px;
    /* background-color: #ffffff; */
    margin-top: 0px;
    
    
}


@media (max-width: 1024px) {
    .expertise {
        padding: 70px 60px;
    }
}

.expertise-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    /* padding: 60px; */
    border-radius: 20px;
    /* background:  linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); */
     /* background: linear-gradient(135deg, #a1c4fd, #c2e9fb); */

     max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 80px;     */
}

/* background wrapper – full width */
.expertise-grid-bg {
    width: 100vw;                 /* full viewport width */
    margin-left: calc(50% - 50vw); /* escape container */
    margin-right: calc(50% - 50vw);

    /* background: linear-gradient(135deg, #a1c4fd, #c2e9fb); */
    background-image: linear-gradient(to top, #ace0f9 0%, hsl(0, 0%, 100%) 100%);
    padding: 80px 0;              /* vertical space */
}


@media (max-width: 768px) {
    .expertise-grid {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        padding: 0 16px;
    }
}





/* Center last card in 3-column layout */
.expertise-grid .last-card {
    grid-column: 2 / 3;
}

@media (max-width: 1024px) {
    .expertise-grid .last-card {
        grid-column: auto;
    }
}


@media (max-width: 768px) {
    .expertise-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        gap: 16px;
    }
}

.expertise-card {
/* 
    background-color: rgba(255,255,255,0.94); */

    border-radius: 12px;
    /* padding: 30px; */
    box-shadow: 0 0 0 1px #f0f2f5;
    transition: transform 0.2s ease;

      /* transform: scale(1.15); */

   



    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 0;               /* VERY IMPORTANT */
    background: transparent; /* VERY IMPORTANT */

  
    
}



.card-content {
    position: relative;
    z-index: 2;

    /* background: rgba(255, 255, 255, 0.92); */
    border-radius: 12px;
    padding: 30px;

    margin: 20px;   /* removed margin to fill entire card */
}







/* Card must be positioning context */
.expertise-card.has-lottie {
    position: relative;
    overflow: hidden;
}



.card-lottie {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0a1929;
    pointer-events: none;
    transform: scale(1.2);
}




/* Keep text/icons above animation */
.expertise-card.has-lottie > *:not(.card-lottie) {
    position: relative;
    z-index: 1;
}

/* Responsive tuning */
@media (max-width: 768px) {
    .card-lottie {
        opacity: 0.12;
    }
}

@media (max-width: 480px) {
    .card-lottie {
        opacity: 0.08;
    }
}




.expertise-card:hover {
    transform: translateY(-4px);
}

.icon {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: bold;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}




/* target the inner svg/icon for transforms so layout doesn't shift */
.icon svg,
.icon i,
.icon > * {
    display: block;
    transition: transform 200ms ease;
    transform-origin: center;
    will-change: transform;
}

.icon:hover svg,
.icon:hover i,
.icon:hover > * {
    transform: scale(1.14);
}

.expertise-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise {
        padding: 60px 40px;
    }

    .expertise-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .expertise {
        padding: 40px 20px;
    }

    .expertise-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .expertise {
        padding: 30px 16px;
        margin-top: 0;
    }

    .expertise-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .expertise-grid {
        gap: 16px;
    }

    .expertise-card {
        padding: 20px 16px;
    }

    .expertise-card h3 {
        font-size: 16px;
    }

    .expertise-card p {
        font-size: 13px;
    }
}































/* SUCCESS STORIES SECTION */
.success {
    padding: 60px 80px 160px;
    background-color: #ffffff;


     /* background-image: linear-gradient(to top, #88d3ce 0%, #ffffff 100%); */
 
    
    /* background-image: linear-gradient(to top, #ace0f9  0%, #fff1eb 100%); */
    margin-top: -100px;
}

@media (max-width: 1024px) {
    .success {
        padding: 70px 60px;
    }
}

.success-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* background-image: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%); */
}

@media (max-width: 768px) {
    .success-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .success-grid {
        gap: 16px;
    }
}

.success-card {
    /* background-color: #ffffff; */
    /* background-image: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%); */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #f0f2f5;
    transition: transform 0.2s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#lottie-animation-1,
#lottie-animation-2,
#lottie-animation-3 {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    #lottie-animation-1,
    #lottie-animation-2,
    #lottie-animation-3 {
        height: 160px;
    }
}

@media (max-width: 480px) {
    #lottie-animation-1,
    #lottie-animation-2,
    #lottie-animation-3 {
        height: 140px;
    }
}

.success-content {
    padding: 24px;
}

.success-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.success-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b5f6b;
    margin-bottom: 18px;
}

.success-content a {
    font-size: 14px;
    color: #1677ff;
    text-decoration: none;
    font-weight: 500;
}

.success-content a span {
    margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .success {
        padding: 60px 40px;
    }

    .success-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .success {
        padding: 40px 20px;
    }

    .success-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .success {
        padding: 30px 16px;
        margin-top: 0;
    }

    .success-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .success-grid {
        gap: 16px;
    }

    .success-content {
        padding: 20px 16px;
    }

    .success-content h3 {
        font-size: 16px;
    }

    .success-content p {
        font-size: 13px;
    }

    .success-content a {
        font-size: 13px;
    }
}


/* trusted page ...........................................................................*/




/* TRUSTED BY SECTION */
.trusted {
    padding: 90px 80px;
    background-color: #ffffff;
    text-align: center;
}

.trusted-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.2s ease;
}

.trusted-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .trusted {
        padding: 60px 20px;
    }

    .trusted-logos img {
        height: 32px;
    }
}



/* .................................... ............................................................................*/



/* our proven approch */

/* .approach {
    text-align: center;
    padding: 80px 40px 100px;
}

.approach h2 {
    font-size: 34px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 80px;
}

.row {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.row.single {
    margin-top: 60px;
}

.card {
    max-width: 300px;
}

.icon {
    font-size: 36px;
    color: #22d3ee;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
} */




/* PROVEN APPROACH – AS IT IS */

.approach {
    /* padding: 90px 80px; */

    padding: 90px 80px 140px; /* bottom increased */


    /* background-color: #ffffff; */

    /* background-image: linear-gradient(to top, #88d3ce 0%, #ffffff 100%); */
    background-image: linear-gradient(to top, hsl(0, 0%, 100%) 0%, #ace0f9 100%);
    text-align: center;
    margin-top: -160px;

}

@media (max-width: 1024px) {
    .approach {
        padding: 70px 60px;
    }
}

.approach-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 70px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.approach-item {
    max-width: 340px;
    margin: auto;
}
/* 
.approach-center {
    grid-column: 0 / 3;
}

 */
.approach-center {
    grid-column: 2 / 3;   /* place in middle column */
    justify-self: center;
}




.approach-icon {
    width: 42px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: rgb(21, 171, 171);
    position: relative;
}

.approach-icon svg,
.approach-item svg {
    width: 42px;
    height: 48px;
    display: block;
    transition: transform 200ms ease;
    transform-origin: center;
    will-change: transform;
}

.approach-item:hover svg,
.approach-item:focus-within svg {
    transform: scale(1.12);
}

.approach-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b5f6b;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-center {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .approach {
        padding: 60px 40px;
    }

    .approach-title {
        font-size: 26px;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .approach {
        padding: 40px 20px;
    }

    .approach-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .approach {
        padding: 30px 16px;
        margin-top: 0;
    }

    .approach-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .approach-item {
        max-width: 100%;
    }

    .approach-item h3 {
        font-size: 16px;
    }

    .approach-item p {
        font-size: 13px;
    }
}









/* team */
/* 
.team {
    width: 100%;
    text-align: center;
    padding: 80px 40px 100px;
    background: #ffffff;
}

.team h2 {
    font-size: 34px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

.team-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.team-card .role {
    font-size: 14px;
    color: #2563eb;
    margin: 0;
} */











/* our client say */
/* 
.testimonials {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 90px 40px 110px;
}

.testimonials h2 {
    font-size: 34px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 70px;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.testimonial-card {
    width: 520px;
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 36px 40px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
    text-align: left;
}

.quote {
    font-size: 32px;
    color: #6b7280;
    margin-bottom: 16px;
}

.message {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

.info span {
    font-size: 13px;
    color: #6b7280;
} */








/* engaement models */


.engagement {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 90px 40px 110px;
    margin-top: -100px;

    background-image: linear-gradient(to top, #ace0f9  0%, #fff1eb 100%);
}

.engagement h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 70px;
}




.engagement-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* MOBILE: Tablet (768-1024px) */
@media (max-width: 1024px) {
    .engagement {
        padding: 60px 40px 80px;
    }

    .engagement h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .engagement-row {
        gap: 24px;
    }

    .engagement-card {
        width: 280px;
    }
}

/* MOBILE: Medium Screens (600-767px) */
@media (max-width: 768px) {
    .engagement {
        padding: 50px 20px 70px;
    }

    .engagement h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .engagement-row {
        gap: 20px;
    }

    .engagement-card {
        width: 100%;
        max-width: 340px;
    }
}

/* MOBILE: Extra Small (320-480px) */
@media (max-width: 480px) {
    .engagement {
        padding: 30px 16px 50px;
        margin-top: 0;
    }

    .engagement h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .engagement-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .engagement-card {
        width: 100%;
        padding: 24px 20px 30px;
    }

    .engagement-card h4 {
        font-size: 15px;
    }

    .engagement-card .price {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .engagement-card ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .engage-btn {
        padding: 11px 0;
        font-size: 13px;
    }
}


.engagement-card {
    width: 320px;
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 30px 40px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
    text-align: left;

    display: flex;
    /* 🔥 KEY */
    flex-direction: column;
    /* stack content */
}


.engagement-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.engagement-card .price {
    font-size: 30px;
    font-weight: 700;
    color: #1677ff;
    margin-bottom: 24px;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.engagement-card ul li {
    font-size: 15px;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.engagement-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.engagement-card button {
    width: 100%;
    background: #1677ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    /*🔥 MAGIC LINE */
    /* order: 1; */
}







.engage-btn {
    display: block;
    width: 100%;
    text-align: center;

    background: #1677ff;
    color: #ffffff;
    text-decoration: none;

    border-radius: 6px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;

    margin-top: auto;
    /* 🔥 THIS NOW WORKS */
}












/* build togther */
/* 
.contact {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 90px 40px 120px;
}

.contact h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 70px;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-card {
    width: 520px;
    background: #ffffff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
    text-align: left;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
} */

/* Form */
/* .contact-card form input,
.contact-card form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-bottom: 16px;
    outline: none;
}

.contact-card form textarea {
    height: 120px;
    resize: none;
}

.contact-card form button {
    width: 100%;
    background: #1677ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
} */

/* Contact details */
/* .detail {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.icon {
    font-size: 20px;
    color: #1677ff;
}

.detail strong {
    display: block;
    font-size: 14px;
    color: #111827;
    margin-bottom: 4px;
}

.detail p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
} */











/* footer */
.footer {
    background: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}

/* FOOTER LINKS FIX */
.footer a {
    text-decoration: none;
    /* remove underline */
    color: #6b7280;
    /* same color as text */
}

.footer a:hover {
    color: #1677ff;
    /* optional hover color */
}
.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.brand img {
    display: block;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .brand img {
        width: 120px;
        margin-bottom: 16px;
    }
}

.brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.footer-col ul li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 22px 0;
    font-size: 13px;
    color: #6b7280;
}




























/* image of login */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
}

.login-wrapper {
    display: flex;
    height: 100vh;
    padding: 40px 60px;
    gap: 40px;
}

/* LEFT */
.login-form {
    width: 45%;
    padding: 40px 20px;
}

.login-form h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #111827;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

label {
    font-size: 14px;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 18px;
    font-size: 14px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember {
    font-size: 14px;
    color: #374151;
}

.forgot {
    font-size: 14px;
    color: #1677ff;
    text-decoration: none;
}

.primary-btn {
    width: 100%;
    padding: 14px;
    background: #1677ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.divider {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 28px 0 20px;
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.terms {
    font-size: 12px;
    color: #6b7280;
    margin: 24px 0;
}

.terms a {
    color: #1677ff;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
}

/* RIGHT */
.login-image {
    width: 55%;
    background: #1677ff;
    padding: 10px;
    border-radius: 8px;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Image 4 specific: Social icons are BLACK */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 18px;
    color: #333;
}



.social-icons a {
    text-decoration: none;
    color: inherit;
}

.social-icons a:hover i {
    color: #1677ff;
}

/* Contact info links styling */
.contact-info a,
.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-item a:hover {
    color: #1677ff;
}










/* Image 4 specific: Contact icons are BLUE */
.contact-info p i,
.contact-item i {
    color: #1677ff;
    width: 20px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col ul li,
    .contact-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        padding: 0 16px;
        gap: 24px;
    }

    .brand img {
        width: 130px;
    }

    .brand-text {
        font-size: 12px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-col ul li,
    .contact-item,
    .footer-col a {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-icons {
        gap: 14px;
    }

    .social-icons i {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 16px 0;
    }
}