/* ========================================
   CSS VARIABLES & RESET
   ======================================== */

:root {
    --primary-color: #FF6B00;
    --secondary-color: #0057FF;
    --accent-yellow: #FFD43B;
    --accent-red: #FF3B30;
    --light-gray: #F9FAFB;
    --heading-color: #1E1E1E;
    --text-color: #555555;
    --white: #FFFFFF;
    --footer-bg: #1a2332;

    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
#header {
    background-color: #042446;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #042446;
    text-align: center;
    margin-bottom: 60px;
}

.section-title.align-left {
    text-align: left;
    margin-bottom: 30px;
    color: #042446;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: #e55f00;
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}


/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 140px;
    height: auto;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px;
    transition: var(--transition);
}
/* ========================================
   MOBILE NAVIGATION
   ======================================== */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    #navMenu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #042446;
        display: none;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        z-index: 999;
        transition: all 0.3s ease;
    }
    #navMenu.active {
        display: flex;
    }

    .nav-link {
        color: #fff; 
        font-size: 1rem;
        padding: 15px 0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.6;
}

.shape-circle-1 {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.shape-circle-2 {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--accent-yellow);
    top: 30%;
    left: 10%;
    opacity: 0.2;
    animation: rotate 10s linear infinite;
}

.shape-triangle-2 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--accent-red);
    bottom: 25%;
    right: 15%;
    opacity: 0.15;
    animation: rotate 12s linear infinite reverse;
}

.shape-confetti-1,
.shape-confetti-2,
.shape-confetti-3 {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.shape-confetti-1 {
    top: 20%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}

.shape-confetti-2 {
    top: 60%;
    right: 25%;
    background: var(--accent-yellow);
    animation: float 7s ease-in-out infinite reverse;
}

.shape-confetti-3 {
    bottom: 30%;
    left: 30%;
    background: var(--secondary-color);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.floating-svg-shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.svg-shape {
    position: absolute;
    opacity: 0.25;
    animation: float-svg 8s ease-in-out infinite;
    transform-origin: center;
}

.svg-triangle {
    top: 10%;
    left: 15%;
    width: 20px;
    animation-delay: 0s;
}

.svg-polygon {
    top: 50%;
    right: 20%;
    width: 40px;
    animation-delay: 2s;
}

.svg-line {
    bottom: 20%;
    left: 30%;
    width: 60px;
    opacity: 0.15;
    animation-delay: 1s;
}

.svg-plus {
    top: 30%;
    right: 40%;
    width: 25px;
    animation-delay: 3s;
}

.svg-triangle.small {
    bottom: 40%;
    left: 60%;
    width: 18px;
    opacity: 0.2;
    animation-delay: 1.5s;
}

.svg-polygon.small {
    top: 70%;
    right: 10%;
    width: 22px;
    opacity: 0.18;
    animation-delay: 2.5s;
}

@keyframes float-svg {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-color);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-rectangle {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 170%; 
    height: 170%;
    background: url('assets/images/rectangle.svg') no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 0; 
}

.mockup-container {
    position: relative; 
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.floating-image {
    width: 100%;
    border-radius: 5px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding-top: 10%;
    background: var(--white);
}

.features-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.features-left {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.stagger {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin: 10px 10px;
}

.stagger:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.features1-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.features-container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: 20%;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F63E3E, #FFBC3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #042446;
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #959090;
    padding: 0px 10px;
}

.features-right {
  flex: 1;
  margin-top: 20%;
}


.features-right h2 {
  width: 100%;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #042446;
  margin-bottom: 20px;
  padding: 5px 0;
}


.features-right p {
  width: 90%;
  font-weight: 400;
  font-size: 18px;
  line-height: 164%;
  letter-spacing: 0;
  color: #727276;
  margin-bottom: 40px;
}

.features-images {
  position: relative;
  width: 100%;
  height: 350px;
  margin: 0 auto;
  left: 20%;
}

.features-images img {
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  transition: transform 0.3s ease;
}

.img6 {
  top: -25%;
  right: 0%;
  height: 150%;
  width: auto;
  object-fit: contain;
  z-index: 1;
  transform: none;
}

.img1, .img2, .img3, .img4, .img5 {
  z-index: 2;
}

.img1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
}

.img2 {
  top: 70px;
  left: 15%;
  width: 80px;
  height: 80px;
}

.img3 {
  top: 150px;
  right: 25%;
  width: 100px;
  height: 100px;
}

.img4 {
  top: 170px;
  left: 20%;
  width: 90px;
  height: 90px;
}

.img5 {
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
}

@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        gap: 50px;
    }

    .features-left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        gap: 20px;
    }

    .stagger {
        width: 220px;
        height: 220px;
        padding: 20px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    }

    .feature-icon img {
        width: 25px;
        height: 25px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-text {
        font-size: 14px;
        padding: 0 5px;
    }

    .features-right {
        display: none;
    }

    .features-images {
        display: none;
    }
}

@media (max-width: 767px) {
    .features-container {
        flex-direction: column;
        gap: 40px;
    }

    .features-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .stagger {
        width: 90%;
        height: auto;
        padding: 20px 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 0.85rem;
    }

    .feature-text {
        font-size: 14px;
        padding: 0 10px;
        text-align: center;
    }

    .features-right {
        display: none;
    }

    .features-images {
        display: none;
    }
}


/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.process-section {
  width: 85%;
  max-width: 1100px;
  margin-top: -30%;
  margin-left: 10%;
  position: relative;
}

.processContent {
  margin: 120px 0;
}

.process-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #042446;
}

.process-section p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #959090;
}

.process-step {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 40px;
  width: 40%;
}

.process-step.left {
  flex-direction: row;
}

.process-step.right {
  flex-direction: row;
  justify-content: flex-start;
  left: 65%;
  transform: translateY(-30px);
}

.number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 25px;
  margin-top: -5px;
}

.filled {
  background: #ff4a00;
  color: #fff;
}

.outlined {
  border: 2px solid #ff4a00;
  color: #ff4a00;
}

.content {
  width: 80%;
}

.content h3 {
  font-weight: 600;
  font-size: 20px;
  color: #042446;
  margin-bottom: 10px;
}

.content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.64;
  color: #727276;
  margin: 0;
}

.arrow {
  position: absolute;
  width: 160px;
  opacity: 0.8;
  z-index: 1;
}

.right-arrow {
  top: 20px;
  right: -180px;
}

.left-arrow {
  top: 80%;
  left: -200px;
}

@media (max-width: 992px) {

  .process-section {
    width: 90%;
    margin-left: 5%;
    margin-top: 10%;
    text-align: center;
  }

  .process-step {
    width: 100%;
    left: 0;
    transform: none;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    margin-bottom: 60px;
    text-align: center;
  }

  .process-step.right {
    left: 0;
    transform: none;
  }

  .number {
    margin: 0 0 10px 0 !important;
  }

  .content {
    width: 100%;
    text-align: center !important;
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 767px) {

  .process-section {
    width: 95%;
    margin-top: 5%;
  }

  .process-step {
    margin-bottom: 50px;
  }

  .number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .content h3 {
    font-size: 16px;
  }

  .content p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* ========================================
   ANALYTICS SECTION
   ======================================== */

.analytics {
    padding: 100px 0;
    background: var(--white);
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.analytics-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.analytics-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.dashboard-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
}

.chart-container {
    margin-bottom: 24px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 200px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
}

.chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.thumbnail {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.thumbnail:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.thumbnail-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.thumbnail-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 100px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: block;
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 6px;
    min-height: 20px;
}

.social-links {
    text-align: center;
}

.social-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--footer-bg);
    padding: 40px 0;
     display: flex;
    justify-content: center;
    align-items: center;
}


.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
.footer-link {
  color: var(--primary-color); 
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #727276;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media screen and (max-width: 992px) {
    .section-title {
        font-size: 2rem;
        color: #042446;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .analytics-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        padding: 40px 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 140px 0 80px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

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

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }
}
