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

:root {
    --primary-color: #4F46E5;
    --secondary-color: #06B6D4;
    --accent-color: #10B981;
    --dark-bg: #0F172A;
    --darker-bg: #020617;
    --light-text: #F8FAFC;
    --gray-text: #94A3B8;
    --card-bg: #1E293B;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}
/* First Section Start */
header.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  height: 100px;
}
header.header.fixed-navbar {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 0 15px #ddd;
}
.first_section {
  background-image: url("../images/1.0Bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8.8125rem;
}
.contantBanner {
  background-size: 100% 29.3125rem;
  background-position: top;
}
.form_box {
    max-width: 28rem;
    width: 100%;
    margin-bottom: 5.25rem;
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: 0.625rem;
    background-color: rgba(var(--white-color), 1);
    border: var(--box-border-1);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    background-image: linear-gradient(
    179deg,
    rgba(105, 213, 255, 0.3) 15.54%,
    rgba(105, 213, 255, 0) 62.96%
  );
    background-size: 100% 9.4375rem;
    background-repeat: no-repeat;
    background-position: top;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 50%, #1e293b 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.floating-houses .house-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    animation: float 15s infinite ease-in-out;
}

.house-1 {
    top: 20%;
    left: 20%;
    animation-delay: 2s;
}

.house-2 {
    top: 60%;
    right: 25%;
    animation-delay: 7s;
}

.house-3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.cta-btn-secondary {
    border: 2px solid var(--light-text);
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Process Section */
.process-section {
    background: var(--darker-bg);
    padding: 6rem 0;
}

.process-cycle {
    max-width: 900px;
    margin: 0 auto;
}

.cycle-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.cycle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cycle-path {
    fill: none;
    stroke: url(#cycleGradient);
    stroke-width: 3;
    stroke-dasharray: 1571;
    stroke-dashoffset: 1571;
    animation: drawCircle 3s ease-out forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

.process-stages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stage-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage-item[data-stage="1"] {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-250px) rotate(0deg);
}

.stage-item[data-stage="2"] {
    transform: translate(-50%, -50%) rotate(60deg) translateY(-250px) rotate(-60deg);
}

.stage-item[data-stage="3"] {
    transform: translate(-50%, -50%) rotate(120deg) translateY(-250px) rotate(-120deg);
}

.stage-item[data-stage="4"] {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-250px) rotate(-180deg);
}

.stage-item[data-stage="5"] {
    transform: translate(-50%, -50%) rotate(240deg) translateY(-250px) rotate(-240deg);
}

.stage-item[data-stage="6"] {
    transform: translate(-50%, -50%) rotate(300deg) translateY(-250px) rotate(-300deg);
}

.stage-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.stage-icon {
    font-size: 2.5rem;
}
.stage-icon img {
    width: 50px;
    height: 64px;
}

.stage-item:hover .stage-circle {
    transform: scale(1.15);
}

.stage-content {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 10;
}

.stage-item:hover .stage-content {
    opacity: 1;
    visibility: visible;
}

.stage-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.stage-content p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}
 .feature-icon img{
    width: 80px;
    height: 100px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: var(--darker-bg);
    padding: 6rem 0;
}

.flip-card {
    background-color: transparent;
    height: 280px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card-front {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.flip-card-back {
    background: var(--card-bg);
    transform: rotateY(180deg);
    border: 2px solid var(--primary-color);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.benefit-icon img{
    width: 80px;
    height: 100px;
}

.flip-card-front h4 {
    font-size: 1.75rem;
    margin: 0;
    color: white;
}

.flip-card-back p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.portfolio-description {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.portfolio-details h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.portfolio-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.portfolio-details ul li {
    color: var(--gray-text);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.portfolio-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.portfolio-results {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.portfolio-results strong {
    color: white;
}

/* Journey Section */
.journey-section {
    background: var(--darker-bg);
    padding: 6rem 0;
}

.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.timeline-svg {
    width: 100%;
    height: 100%;
}

.path-line {
    fill: none;
    stroke: url(#cycleGradient);
    stroke-width: 3;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    padding-top: 150px;
    gap: 2rem;
}

.timeline-item {
    text-align: center;
    flex: 1;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
}

.timeline-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.timeline-item p {
    color: var(--gray-text);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.testimonial-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h5 {
    color: var(--light-text);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.testimonial-author p {
    color: var(--secondary-color);
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 2rem;
}

/* Metrics Section */
.metrics-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
}

.metric-card {
    padding: 2rem;
}

.metric-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.metric-icon img {
    width: 80px;
    height: 100px;
}

.metric-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}


.metric-number::after {
    content: '+';
}

.metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* CTA Section */
.cta-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-shapes .cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -100px;
    left: -100px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-light {
    background: white;
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: var(--dark-bg);
}

.cta-btn-outline {
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cycle-container {
        padding-top: 120%;
    }

    /* .stage-item[data-stage="1"],
    .stage-item[data-stage="2"],
    .stage-item[data-stage="3"],
    .stage-item[data-stage="4"],
    .stage-item[data-stage="5"],
    .stage-item[data-stage="6"] {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-200px) rotate(0deg);
    } */

    .timeline-items {
        flex-direction: column;
        gap: 3rem;  
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .stage-circle {
        width: 80px;
        height: 80px;
    }

    .stage-icon {
        font-size: 2rem;
    }

    .flip-card {
        height: 240px;
    }

    .metric-number {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
