:root {
    --color-primary: #004aad;
    --color-white: #ffffff;
    --color-black: #121212;
    --color-text-dark: #121212;
    --color-text-muted: #4c4c4c;
    --color-text-light: #ffffff;
    --color-bg-light: #f8f9fc;
    --color-bg-light-alt: #f6f6f6;
    --color-bg-card-light: #f7f6e7;
    --color-bg-card-grey: #e5e5e5;
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Somar Sans', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: #fdfdfd;
    color: var(--color-text-dark);
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}

.section-title-container {
    position: relative;
    margin-bottom: 16px;
}

.section-title-bg {
    position: absolute;
    top: -25px;
    left: -19px;
    font-size: 44px;
    font-weight: 700;
    color: rgba(18, 18, 18, 0.06);
    z-index: 1;
    white-space: nowrap;
}

.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-text-dark);
    z-index: 2;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.36;
}

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

.arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-black);
    border-radius: 50%;
    background-color: var(--color-white);
    cursor: pointer;
}

.arrow-btn.prev {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-title-bg {
        font-size: 36px;
        top: -20px;
        left: -10px;
    }
    .section-description {
        font-size: 16px;
    }
}  



/* --- Styles for Industries Section --- */

/* --- Section Header Styles --- */
.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add some padding for container */
}

.industries-section .industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.industries-section .industries-title-wrapper {
    flex-basis: 60%;
    flex-grow: 1;
}

/* You might already have these title styles */
.industries-section .section-title-container {
    position: relative;
    margin-bottom: 15px;
    height: 60px; /* Adjust as needed */
}

.industries-section .section-title-bg {
    font-size: 3.5rem;
    color: #eeeeee;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    line-height: 1;
}

.industries-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    position: absolute;
    top: 20px;
    left: 0;
    margin: 0;
}

.industries-section .section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
}

.industries-section .arrow-nav {
    display: flex;
    gap: 10px;
}

.industries-section .arrow-nav .arrow-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.industries-section .arrow-nav .arrow-btn img {
    width: 18px;
    height: 18px;
}

/* --- Industries Slider (The Accordion) --- */
.industries-section .industries-slider {
    display: flex;
    width: 100%;
    height: 450px; /* You can adjust this height */
    gap: 16px;
}

.industries-section .industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    color: #333;
    
    /* --- This is the animation --- */
    flex-grow: 1;  /* All cards start small */
    flex-basis: 0;
    transition: flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- The ACTIVE (expanded) card --- */
.industries-section .industry-card.active {
    flex-grow: 10; /* The active card grows much larger */
}


/* --- 1. Collapsed Content (e.g., "02 Fitness") --- */
.industries-section .card-preview {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* --- Animation --- */
    opacity: 1;
    transition: opacity 0.3s ease-out;
}
.industries-section .industry-card.active .card-preview {
    opacity: 0;
    pointer-events: none; /* Make it unclickable when hidden */
}
.industries-section .card-preview .card-number {
    font-size: 1.5rem;
    font-weight: bold;
}
.industries-section .card-preview h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* --- 2. Expanded Content (Image + Text) --- */

/* The background image */
.industries-section .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    
    /* --- Animation (Hidden by default) --- */
    opacity: 0;
    transform: scale(1.1); /* Slight zoom out effect */
    transition: opacity 0.5s ease-in, transform 0.8s ease-out;
}
/* Dark overlay for text readability */
.industries-section .card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.8) 100%);
}

/* The text content */
.industries-section .card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: white;

    /* --- Animation (Hidden by default) --- */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease;
}


/* --- Show Expanded Content on .active card --- */
.industries-section .industry-card.active .card-bg,
.industries-section .industry-card.active .card-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}


/* --- Styles for the expanded text (from your code) --- */
.industries-section .card-content .card-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    display: block;
}
.industries-section .card-content .card-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.industries-section .card-content .card-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.industries-section .card-content .card-icon-wrapper img {
    width: 24px; /* Set a fixed size */
    height: 24px;
    display: block;
}
.industries-section .card-content .card-text h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.industries-section .card-content .card-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 0;
} 

/* CSS for section section:hero */
.hero-section {
    
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    min-height: 864px;
    display: flex;
    flex-direction: column;
}
.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 16px 80px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.logo {
    width: 84px;
    height: 82px;
}
.main-nav {
    display: flex;
    gap: 16px;
}
.main-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
}
.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background-color: rgba(232, 232, 232, 0.15);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(3px);
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    gap: 38px;
    padding-top: 163.5px; /* (275.5 - 112) */
}
.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.36;
    max-width: 1024px;
    margin: 0;
}
.hero-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.36;
    max-width: 1024px;
    margin: 0;
}
.proposal-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30.5px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
} 
/* Style for accordion items */
.about-section .accordion-item {
    background-color: #f9f9f9; /* normal background */
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    padding: 10px;
}

/* Hover effect */
.about-section .accordion-item:hover {
    background-color: #007bff; /* blue background */
    color: white; /* text color for contrast */
    cursor: pointer;
}

/* Make text inside change color on hover too */
.about-section .accordion-item:hover h4,
.about-section .accordion-item:hover p {
    color: white;
}

/* Optional: change arrow icon color or invert */
.about-section .accordion-item:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
    .main-nav { display: none; } /* Simple hide for mobile, would need a burger menu */
}
@media (max-width: 768px) {
    .hero-container { padding: 16px 20px 0; }
    .hero-content { padding-top: 80px; gap: 24px; }
    .hero-content h1 { font-size: 40px; }
    .hero-content p { font-size: 18px; }
}

/* CSS for section section:about */
.about-section {
    padding: 72px 0;
}
.about-header {
    margin-bottom: 65px; /* 1001 - 936 */
}
.about-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.about-image-collage {
    position: relative;
    width: 689px;
    height: 359px;
    flex-shrink: 0;
}
.collage-img-main {
    position: absolute;
    width: 594px;
    height: 317.17px;
    top: 41.83px;
    left: 32px;
    border-radius: 16px;
    z-index: 3;
}
.collage-bg-1 {
    position: absolute;
    width: 469px;
    height: 291.87px;
    top: 0;
    left: 0;
    background-color: var(--color-bg-light-alt);
    border-radius: 16px;
    z-index: 1;
}
.collage-bg-2 {
    position: absolute;
    width: 468px;
    height: 255.87px;
    top: 72.97px;
    left: 221px;
    background-color: var(--color-bg-light-alt);
    border-radius: 16px;
    z-index: 2;
}
.about-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}
.accordion-item {
    border-radius: 16px;
    padding: 24px;
}
.accordion-item.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.accordion-item:not(.active) {
    background-color: var(--color-bg-light-alt);
    border: 1px solid #ebebeb;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-header h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}
.accordion-item.active .accordion-header h4 {
    color: var(--color-white);
}
.accordion-item p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 28px;
}
@media (max-width: 1200px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-image-collage {
        width: 100%;
        max-width: 689px;
        height: auto;
        aspect-ratio: 689 / 359;
    }
    .collage-img-main, .collage-bg-1, .collage-bg-2 {
        width: auto;
        height: auto;
        position: absolute;
    }
    .collage-img-main { width: 86.2%; height: 88.3%; top: 11.6%; left: 4.6%; }
    .collage-bg-1 { width: 68.1%; height: 81.3%; top: 0; left: 0; }
    .collage-bg-2 { width: 67.9%; height: 71.3%; top: 20.3%; left: 32.1%; }
    .about-accordion { width: 100%; }
}



/* 🌐 INDUSTRIES SECTION */
.industries-section {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

/* HEADER */
.industries-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.industries-title-wrapper {
  max-width: 1104px;
}

/* SLIDER */
.industries-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

/* 💠 BASE CARD STYLE */
.industry-card {
  flex: 0 0 220px;
  height: 400px;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  background-color: var(--color-bg-card-grey);
  cursor: pointer;
}

/* COLORS FOR VARIATION */
.industry-card:nth-child(2) { background-color: var(--color-bg-card-grey); }
.industry-card:nth-child(3) { background-color: var(--color-bg-card-light); }
.industry-card:nth-child(4) { background-color: var(--color-primary); color: var(--color-white); }
.industry-card:nth-child(5) { background-color: var(--color-bg-card-grey); }

/* 🌟 ACTIVE (EXPANDED) CARD */
.industry-card.active {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
  position: relative;
}

/* DARK OVERLAY FOR READABILITY */
.industry-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* ACTIVE CONTENT VISIBILITY */
.industry-card.active .card-content {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  height: 100%;
  padding: 32px;
}

.industry-card.active .card-preview {
  display: none !important;
}

/* COLLAPSED CARD PREVIEW */
.card-preview {
  position: relative;
  z-index: 2;
  text-align: left;
}

.card-preview .card-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* CARD CONTENT */
.card-content {
  position: relative;
  display: none;
  height: 100%;
  padding: 30px 24px;
  z-index: 2;
}

/* CARD NUMBER */
.card-number {
  font-size: 30px;
  font-weight: 600;
}

.industry-card:not(.active) .card-number {
  color: var(--color-text-dark);
}

.industry-card:nth-child(4) .card-number {
  color: var(--color-white);
}

/* CARD INFO */
.card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ICON WRAPPER */
.card-icon-wrapper {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background-color: rgba(232, 232, 232, 0.18);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* TEXT STYLES */
.card-text h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px 0;
}

.card-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.36;
  margin: 0;
}

.industry-card:not(.active) h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* RESPONSIVE FIXES */
@media (max-width: 1200px) {
  .industries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .industry-card.active {
    flex: 0 0 60%;
  }
}

@media (max-width: 992px) {
  .industries-slider {
    flex-direction: column;
  }

  .industry-card,
  .industry-card.active {
    flex: 0 0 100%;
    height: auto;
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .industries-section {
    padding: 40px 0;
  }

  .industry-card,
  .industry-card.active {
    flex: 0 0 100%;
    min-height: 350px;
  }
}


/* CSS for section section:solutions */
.solutions-section {
    padding: 80px 0;
    background-color: var(--color-white);
}
.solutions-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px 48px;
    align-items: center;
    margin-bottom: 48px;
}
.solutions-header .section-title-container, .solutions-header .section-description {
    grid-column: 1 / 2;
}
.solutions-header .arrow-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.solution-card {
    border-radius: 16px;
    background-color: var(--color-bg-card-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.solution-card .card-image {
    background-size: cover;
    background-position: center;
}
.solution-card.large .card-image {
    height: 430px;
}
.solution-card.small .card-image {
    height: 180px;
}
.solution-card .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.solution-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-dark);
}
.solution-card p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.36;
    margin: 0;
}
.solution-card-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solutions-header {
        grid-template-columns: 1fr;
    }
    .solutions-header .arrow-nav {
        grid-row: auto;
        grid-column: auto;
        justify-self: end;
    }
}

/* CSS for section section:partners */
.partners-section {
    padding: 72px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}
.partners-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.partners-section .section-title-container {
    text-align: center;
}
.partners-section .section-title-bg {
    left: 50%;
    transform: translateX(-50%);
}
.logo-marquee {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden; /* For a real marquee effect, this would be key */
}
.logo-track {
    display: flex;
    gap: 32px;
    justify-content: center; /* For static layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.logo-item {
    background-color: var(--color-white);
    border-radius: 16px;
    width: 270px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    box-sizing: border-box;
}
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* 🌍 Universities Section */
.universities-section {
    padding: 72px 0;
    background-color: var(--color-white);
}

.universities-header {
    margin-bottom: 32px;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    align-items: stretch;
}

/* 🎓 Card Base */
.university-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* 🖼️ Image Cards */
.university-card .card-image {
    width: 100%;
    height: 300px; /* long horizontal look */
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #f1f1f1;
}

/* 🧾 Content Cards */
.university-card .card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    text-align: left;
}

/* 🧩 Logo */
.uni-logo {
    width: 130px;
    height: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

/* 🏷️ Text Styling */
.university-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #222;
}

.university-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* 🎨 Color Variations */
.blue-card {
    background-color: var(--color-primary, #083d9c);
    color: #fff;
}

.blue-card h5,
.blue-card p {
    color: #fff;
}

.light-card {
    background-color: #f4f4f4;
}

.light-yellow {
    background-color: #f9f6e5;
}

/* 🔁 Responsive */
@media (max-width: 992px) {
    .universities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    .university-card .card-image {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .universities-section {
        padding: 48px 0;
    }
    .university-card .card-content {
        padding: 20px;
    }
    .university-card .card-image {
        height: 200px;
    }
}
/* CLIENTS SECTION */
.clients-section {
    background-color: var(--color-bg-light);
    padding: 72px 0;
}

/* HEADER */
.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    width: 100%;
}

.clients-title-wrapper {
    max-width: 1011px;
}

/* SLIDER */
.clients-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;            /* scroll works */
    overflow-y: hidden;
    padding-bottom: 16px;
    scroll-behavior: smooth;     /* smooth scrolling */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;       /* Firefox hide bar */
}

.clients-slider::-webkit-scrollbar {
    display: none;               /* Chrome hide bar */
}

/* CARD */
.client-card {
    flex: 0 0 326px;
    height: 240px;
    background-color: var(--color-white);
    border: 1px solid #fdfdfd;
    border-radius: 16px;
    padding: 16px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-snap-align: start;
}

/* LOGO */
.client-logo {
    width: 180px;
    height: 90px;
    object-fit: contain;
    align-self: flex-start;
}

@media (max-width: 600px) {
    .client-logo {
        width: 120px;
        height: 50px;
    }
}

/* TAG */
.client-tag {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    align-self: flex-start;
}

/* TEXT */
.client-card p {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.62;
    margin: 0;
    color: var(--color-text-dark);
}

.client-card p strong {
    color: #26A758;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .clients-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 24px; 
    }
}

@media (max-width: 600px) {
    .client-card {
        flex: 0 0 260px;
        height: 220px;
        padding: 14px 18px;
    }

    .client-card p {
        font-size: 16px;
    }
}

/* CSS for section section:process */
.process-section {
    background-image: url('images/31a77680fcf4d0b6bbe1150023b20cd0d9242c33.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}
.process-content {
    display: flex;
    align-items: center;
    gap: 100px;
}
.process-text {
    max-width: 630px;
}
.process-flow-diagram {
    position: relative;
    width: 1000px;
    height: 581px;
}
.process-step {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    width: 413px;
    box-sizing: border-box;
}
.step-icon {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.step-text h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 10px 0;
}
.step-text p {
    font-size: 18px;
    color: #686a6d;
    margin: 0;
    line-height: 1.36;
}
.step-1 { top: 80px; right: 0; }
.step-2 { top: 321px; left: 105px; }
.step-3 { top: 313px; right: 0; }
.step-4 { top: 554px; left: 105px; }
.step-5 { top: 546px; right: 0; }

.connector-line { position: absolute; }
.line-1 { top: 123px; right: 209px; }
.line-2 { top: 379px; left: 523px; }
.line-3 { top: 365px; left: 0; }
.line-4 { top: 604px; left: 505px; }

@media (max-width: 1200px) {
    .process-content { flex-direction: column; gap: 40px; }
    .process-flow-diagram { display: none; } /* Hiding complex diagram on smaller screens */
    .process-text { max-width: 100%; text-align: center; }
    .process-text .section-title-bg { left: 50%; transform: translateX(-50%); }
}

/* CSS for section section:contact */
.contact-section {
    background: linear-gradient(135deg, #004aad 0%, #fdfdfd 230.91%);
    padding: 80px 0;
}
.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    background: rgba(232, 232, 232, 0.15);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form {
    flex: 1;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-field {
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 18px 16px;
    min-height: 22px;
}
.form-field label {
    color: var(--color-text-dark);
    opacity: 0.6;
    font-size: 16px;
}
.select-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.select-field img {
    transform: rotate(90deg);
}
.textarea-field {
    height: 122px;
}
.submit-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 16px;
    padding: 17px 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-top: 14px;
}
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
}

/* CSS for section section:footer */
.site-footer {
    background-image: url('images/c730ea4334059bc5aad6579b45c70871627104d4.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--color-white);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}
.footer-contact { display: flex; flex-direction: column; gap: 33px; }
.footer-logo { width: 84px; height: 82px; }
.footer-contact-details { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-details .contact-item { color: var(--color-white); text-decoration: none; }
.footer-links, .footer-subscribe { display: flex; flex-direction: column; gap: 25px; }
.footer-links h6, .footer-subscribe h6 { font-size: 18px; font-weight: 500; margin: 0; line-height: 28px; }
.links-columns { display: flex; gap: 25px; }
.links-columns ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.links-columns a { color: var(--color-white); text-decoration: none; opacity: 0.8; font-size: 16px; }
.subscribe-form { position: relative; background-color: var(--color-white); border-radius: 16px; overflow: hidden; width: 248px; }
.subscribe-form input { border: none; background: transparent; padding: 15px; width: 100%; box-sizing: border-box; color: var(--color-text-muted); font-size: 14px; }
.subscribe-form button { position: absolute; right: 0; top: 0; bottom: 0; width: 50px; border: none; background-color: var(--color-primary); cursor: pointer; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-icons { display: flex; gap: 18px; }
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(232, 232, 232, 0.1);
    background: rgba(232, 232, 232, 0.15);
    backdrop-filter: blur(3px);
}
.terms-link { margin-left: auto; color: var(--color-white); text-decoration: none; font-size: 16px; }
.copyright { font-size: 16px; font-weight: 500; margin: 0; }
@media (max-width: 1024px) {
    .footer-main { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .terms-link { margin-left: 0; }
}  



 






  
 












