/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(0, 0, 38, 1);
}

p,
li {
  color: rgba(85, 85, 85, 1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: rgba(87, 159, 249, 1);
}

.container {
    max-width: 1116px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, #7154F8 0%, #579FF9 100%);
    color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #7154F8 0%, #579FF9 100%);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(87, 159, 249, 1);
    color: rgba(87, 159, 249, 1);
}

.btn-outline:hover {
    background: linear-gradient(90deg, #7154F8 0%, #579FF9 100%);
    color: #fff;
}

.btn-text {
       background: transparent;
    border: 2px solid rgba(87, 159, 249, 1);
    color: rgba(87, 159, 249, 1);
}

.btn-text:hover {
    background: linear-gradient(90deg, #7154F8 0%, #579FF9 100%);
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.cookie-content {
    max-width: 1116px;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgba(97, 32, 245, 1);
}

.logo-link:hover {
  color: rgba(97, 32, 245, 1) !important;
}

.logo-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: #333;
    font-weight: 500;
}

.nav-list a:hover {
    color: #5E35B1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
}

.hero-section .container {
   display: flex;
   flex-direction: column;
}

.hero-content {
   display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.hero-section h1 {
    font-family: 'Roboto Condensed';
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;

}

.hero-section h2 {
    font-family: 'Roboto Condensed';
    font-weight: 700;
    font-size: 32px;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
    align-self: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.consultation-form {
    
    padding: 20px;
    background: linear-gradient(161.92deg, #ECE6FF 0%, #E9F3FF 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
}



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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.consultation-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: rgba(246, 246, 246, 1);
}

.partner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.partner-image {
    flex: 1;
    aspect-ratio: 1/1;
    height: auto;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.partner-text {
    flex: 1;
}

.partner-text .btn {
  margin-top: 48px;
}

.partner-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  text-align: left;
}

.section-subtitle {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(161.92deg, #ECE6FF 0%, #E9F3FF 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.member-photo {
    height: auto;
    aspect-ratio: 1/1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-member h4 {
    margin-top: 20px;
    font-size: 22px;
}

.member-title {
  font-family: 'Roboto Condensed';
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
  color: rgba(0, 0, 38, 1);
}

.team-member p {
    margin-bottom: 20px;
}

/* Projects Section */
.projects-section {
    background: linear-gradient(97.25deg, #081543 0%, #2F3569 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.projects-section h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(118, 185, 255, 1);
    font-family: 'Roboto Condensed', sans-serif;
}

.stat-text {
    font-size: 16px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    aspect-ratio: 1/1;
    height: auto;
}
.about-image img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-text .btn {
  margin-top: 48px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    text-align: center;
}

.blog-section h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
}

.blog-section h3 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 32px;
  margin-top: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: linear-gradient(161.92deg, #ECE6FF 0%, #E9F3FF 100%);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    gap: 12px;
}

.blog-image {
    height: auto;
    aspect-ratio: 1/1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog-card h4 {
  font-family: 'Roboto Condensed';
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: left;
}

.blog-card p {
    text-align: left;
    flex-grow: 1;
}

.blog-card .btn {
    margin: 0 15px 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(246, 246, 246, 1);
}

.faq-section .btn {
  margin-top: 48px;
}

.faq h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 12px;
}

.faq-item {
    margin-top: 24px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(239, 239, 239, 1);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(97.25deg, #081543 0%, #2F3569 100%);
    padding: 60px 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.contact-info p {
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}

.contact-section h2 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
}

/* Footer */
.footer {
    background-color: #0f0d1e;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    font-weight: 600;
    font-size: 16px;
    margin: 0 15px;
}



.copyright {
    font-size: 14px;
    color: #999;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.thank-you-logo {
    text-align: center;
    margin-bottom: 40px;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 24px;
    margin: 30px 0 20px;
}

.thank-you-content .contact-info {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
    
}

.thank-you-content .contact-info p {
color: #333;
}

.thank-you-content .btn {
    margin-top: 30px;
}

.thank-you-footer {
    margin-top: auto;
}

/* Media Queries */
@media (max-width: 992px) {
    .partner-content,
    .about-content {
        flex-direction: column;
    }

    .hero-content {
flex-direction: column-reverse;
    }
    .hero-image {
        order: -1;
        margin-bottom: 30px;
        max-height: 500px;
    }
    .partner-image,
    .about-image {
      max-height: 500px;
    }

    .team-grid, 
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

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

    .nav-list li {
        margin: 15px 0;
        text-align: center;
    }


    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 20px;
    }

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

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    section {
        padding: 40px 0;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links a {
        margin: 5px 0;
    }
    
    .team-grid, 
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.privacy--page {
  padding-top: 60px;
  padding-bottom: 60px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.privacy--page h1 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 12px;
}

.privacy--page ul li {
  list-style-type: disc;
}

.privacy--page li {
  list-style-position: inside;
}

.privacy--page h2 {
  margin-top: 12px;
}

.privacy--page h3 {
  margin-top: 10px;
}

.privacy--page ol li {
  list-style-type: decimal;
}