/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
}

/* ================= GLOBAL TYPOGRAPHY ================= */

/* Base font applied once */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Make EVERYTHING use the same font */
*, *::before, *::after {
    font-family: inherit;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 700;
    color: #333;
}

/* Ensure form elements inherit the font */
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}






/* ===== HERO SECTION ===== */
.hero {
    background: #ffffff;
    padding: 90px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.highlight {
    color: #7b014c;
}

.hero-desc {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* CTA BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #7b014c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #7b014c;
    transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
    background: #5a0138;
    border-color: #5a0138;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 1, 76, 0.25);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 450px;
    height: 450px; /* fixed height for all images */
    object-fit: contain;
    transition: opacity 0.6s ease-in-out;
}


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }
}

/* ===================== SERVICES SECTION ===================== */

.services-section {
    padding: 80px 0;
    text-align: center;
    background: #ffffff; /* clean white */
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333; /* Main dark text */
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Entire card zoom on hover */
.service-card {
    background: #f5f5f5;
    width: 360px;
    padding-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    transform: scale(1); /* default */
        /* Soft floating idle animation */
    animation: floatCard 4s ease-in-out infinite;
}

.service-card:hover {
    transform: scale(1.08); /* full card zoom */
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
    animation: none; /* stop floating while hovering */
}


.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.service-card:hover img {
    filter: grayscale(0%);
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    color: #555; /* soft dark */
}

/* ===== Button ===== */

.services-btn-box {
    margin-top: 40px;
}

.services-btn {
    padding: 14px 40px;
    background: linear-gradient(to right, #7b014c, #5a0138); /* your brand gradient */
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.services-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #5a0138, #7b014c); /* reverse hover effect */
}

/* ===== Fade-in Scroll Animation ===== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional delay */
.fade-delay-1 { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }
.fade-delay-3 { transition-delay: 0.6s; }

/* Soft floating animation */
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.services-container .service-card:nth-child(1) {
    animation-delay: 0s;
}

.services-container .service-card:nth-child(2) {
    animation-delay: 0.7s;
}

.services-container .service-card:nth-child(3) {
    animation-delay: 1.4s;
}

.services-container .service-card:nth-child(4) {
    animation-delay: 2.1s;
}

/* Add more if you have more than 4 cards */

/* ================= WHY CHOOSE SECTION ================= */

.why-choose {
    padding: 100px 0;
    background: linear-gradient(to bottom right, #ffffff, #f5f5ff);
}

.why-choose-container {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Image */
.why-image img {
    width: 480px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Right Content */
.why-content {
    flex: 1;
    padding: 0 100px;
}

.why-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.why-text {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Button */
.why-btn {
    display: inline-block;
    padding: 14px 45px;
    font-size: 16px;
    background: linear-gradient(90deg, #7b014c, #5a0138);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(123, 1, 76, 0.2);
}

.why-btn:hover {
    background: linear-gradient(90deg, #5a0138, #7b014c);
    transform: scale(1.05);
}

/* Smooth Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-container {
        flex-direction: column;
        text-align: center;
    }

    .why-image img {
        width: 100%;
    }

    .why-content {
        padding: 0 20px;
    }
}



/* ================= METRICS SECTION (Screenshot Style) ================= */


.soft-metrics-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 40px;
    padding: 40px 0;
}

/* Metric container */
.soft-metric {
    position: relative;
    min-width: 220px;
    transition: 0.3s ease;
}

/* BIG FADED NUMBER (background) */
.soft-number {
    font-size: 110px;
    font-weight: 800;
     color: rgba(0,0,0,0.10);
    display: block;
    line-height: 0.8;
}

/* LABEL (foreground) */
.soft-label {
    font-size: 22px;
    font-weight: 700;
    color: #7b014c; /* Your primary */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    white-space: nowrap;

    /* subtle glow / lift */
    text-shadow: 0 2px 6px rgba(123, 1, 76, 0.15);
}


/* Responsive */
@media (max-width: 992px) {
    .soft-number {
        font-size: 70px;
    }
}

@media (max-width: 600px) {
    .soft-number {
        font-size: 50px;
    }
}

/* MOBILE — CENTER ALL METRICS PERFECTLY */
@media (max-width: 768px) {

    .soft-metrics-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .soft-metric {
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
    }

    .soft-number {
        font-size: 90px;
        text-align: center;
        width: 100%;
    }

    .soft-label {
        left: 50%;
        transform: translate(-50%, -40%);
        text-align: center;
        width: 100%;
        white-space: normal;
    }
}


/* ================= CALL TO ACTION SECTION ================= */

.cta-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* Container */
.cta-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Headline */
.cta-title {
    font-size: 36px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Subtext */
.cta-subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    background: linear-gradient(90deg, #7b014c, #5a0138);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(123, 1, 76, 0.25);
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #5a0138, #7b014c);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(123, 1, 76, 0.35);
}

/* Floating Shape */
/* Floating Shape with Left/Right Movement */
.cta-shape {
    width: 110px;
    height: 110px;
    background: #7b014c;
    opacity: 0.15;
    position: absolute;
    left: 18%;
    top: 60%;
    transform: translate(-50%, -50%) rotate(35deg);
    border-radius: 12px;
    z-index: 1;

    /* Up/Down + Left/Right faster animation */
    animation: floatShape 3s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translate(-50%, -50%) rotate(35deg);
    }
    50% {
        transform: translate(-48%, -60%) rotate(35deg);  /* moves right + slightly up */
    }
    100% {
        transform: translate(-50%, -50%) rotate(35deg);
    }
}



/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    .cta-subtext {
        font-size: 16px;
    }
    .cta-shape {
        width: 80px;
        height: 80px;
        left: 10%;
        top: 70%;
    }
}








/* Wrapper to keep shapes behind content */
.floating-shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Base Style for Shapes */
.shape {
    position: absolute;
    background: #7b014c;
    opacity: 0.12;
    border-radius: 14px;
    transform: rotate(35deg);
    animation: floatBasic 6s ease-in-out infinite;
}

/* INDIVIDUAL SHAPES */
.s1 {
    width: 110px;
    height: 110px;
    left: 12%;
    top: 55%;
    animation: float1 4s ease-in-out infinite;
}

.s2 {
    width: 80px;
    height: 80px;
    left: 70%;
    top: 30%;
    opacity: 0.10;
    animation: float2 5s ease-in-out infinite;
}

.s3 {
    width: 60px;
    height: 60px;
    left: 25%;
    top: 20%;
    opacity: 0.08;
    animation: float3 3.5s ease-in-out infinite;
}

.s4 {
    width: 130px;
    height: 130px;
    left: 85%;
    top: 70%;
    opacity: 0.14;
    animation: float4 6s ease-in-out infinite;
}

.s5 {
    width: 50px;
    height: 50px;
    left: 40%;
    top: 75%;
    opacity: 0.1;
    animation: float5 4.5s ease-in-out infinite;
}

/* -----------------------------------
   FLOATING ANIMATIONS  
------------------------------------ */
@keyframes float1 {
    0%   { transform: translate(0,0) rotate(35deg); }
    50%  { transform: translate(15px, -25px) rotate(35deg); }
    100% { transform: translate(0,0) rotate(35deg); }
}

@keyframes float2 {
    0%   { transform: translate(0,0) rotate(35deg); }
    50%  { transform: translate(-20px, -15px) rotate(35deg); }
    100% { transform: translate(0,0) rotate(35deg); }
}

@keyframes float3 {
    0%   { transform: translate(0,0) rotate(35deg); }
    50%  { transform: translate(10px, -20px) rotate(35deg); }
    100% { transform: translate(0,0) rotate(35deg); }
}

@keyframes float4 {
    0%   { transform: translate(0,0) rotate(35deg); }
    50%  { transform: translate(-25px, -30px) rotate(35deg); }
    100% { transform: translate(0,0) rotate(35deg); }
}

@keyframes float5 {
    0%   { transform: translate(0,0) rotate(35deg); }
    50%  { transform: translate(18px, -12px) rotate(35deg); }
    100% { transform: translate(0,0) rotate(35deg); }
}






