@font-face {
    font-family: 'CustomGeoFont';
    src: url('../fonts/font-5.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

body, button, input, textarea, select, .logo, .logo-text, .nav-item, .service-title, .section-title, .section-subtitle, .footer, .footer * {
    font-family: 'CustomGeoFont', sans-serif !important;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for html element as well */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for specific elements that might have scrollbars */
.container, .hero, .search-section, .question-section, .services-section, .testimonials-section, .additional-videos, .footer {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.container::-webkit-scrollbar, .hero::-webkit-scrollbar, .search-section::-webkit-scrollbar, .question-section::-webkit-scrollbar, .services-section::-webkit-scrollbar, .testimonials-section::-webkit-scrollbar, .additional-videos::-webkit-scrollbar, .footer::-webkit-scrollbar {
    display: none;
}

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

/* Sticky Footer - Make main content grow to fill space */
.page-wrapper {
    width: 100%;
}

/* Make all direct children that are not header or footer grow to fill space */
.page-wrapper > *:not(header):not(.footer):not(footer) {
    flex-grow: 1;
    width: 100%;
    flex-basis: auto;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #f2f3f5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    height: 63px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    color: #171717;
}

.logo-icon {
    font-size: 2.2rem;
}

.navigation {
    display: flex;
    gap: 1rem;
}

.nav-item {
    text-decoration: none;
    color: #1c3146;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-bottom: none;
    font-size: 13px;
}

.nav-item:hover,
.nav-item.active {
    background: #f2f3f5;
    color: #1c3146;
    border-bottom: none;
}

.nav-item.active {
    background: #02bc7d;
    color: white;
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: #fcfcfc;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f2f3f5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.1;
    color: #1c3146;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.hero-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.btn {
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    align-content: center;
}

.btn-primary {
    background: #02bc7d;
    color: white;
}

.btn-primary:hover {
    background: #03a971;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #02bc7d;
    border: 2px solid #02bc7d;
}

.btn-secondary:hover {
    background: #03a971;
    border: 2px solid #03a971;
    color: white;
    transform: translateY(-1px);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.5s ease-out 0.45s both;
}

.hero-logo-number {
    font-size: 12rem;
    font-weight: bold;
    color: #059669;
    position: relative;
    z-index: 2;
}

.hero-logo-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: #059669;
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2);
}

.hero-icon-math,
.hero-icon-history,
.hero-icon-chemistry,
.hero-icon-lab {
    pointer-events: none;
    filter: blur(0.2px);
    z-index: 2;
}

/* Search Section */
.search-section {
    background: #f8f9fa;
    /* border-bottom: 1px solid #f2f3f5; */
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at center, rgba(0,0,0,0.08) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    background-position: 30px 30px;
    pointer-events: none;
    z-index: 1;
    animation: moveDots 24s linear infinite;
}





.search-pills {
    position: relative;
    z-index: 2;
}

.search-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.search-pill {
    background: white;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-pill:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

.search-section .container {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}



/* Question Section */
.question-section {
    background: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.question-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at center, rgba(0,0,0,0.07) 1.5px, transparent 1.5px);
    background-size: 70px 70px;
    background-position: 35px 35px;
    pointer-events: none;
    z-index: 1;
    animation: moveDots 22s linear infinite;
}

.question-content {
    position: relative;
    z-index: 2;
}

.question-card {
    background: #059669;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    max-height: 170px;
}

.question-layout {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.question-left {
    flex: 1.2;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.question-right {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
}

.question-header {
    margin-bottom: 0;
    flex: 1;
}

.question-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.question-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.question-subtitle {
    color: #d9d9d9;
    font-size: 0.75rem;
    margin-bottom: 0;
}

.question-voting {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
    max-width: 90px;
    position: relative;
    overflow: hidden;
}

.vote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.vote-btn:hover::before {
    left: 100%;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vote-yes:hover {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
}

.vote-no:hover {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
}

.vote-icon {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
}

.vote-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.vote-count {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 500;
}

.question-stats {
    padding: 0;
    border: none;
    max-height: none;
    max-width: none;
    margin: 0;
}

.stats-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    max-width: 350px;
}

.stat-compact {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    background: #f8fafc;
    border-radius: 0.4rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 45px;
}

.stat-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-compact.yes-compact {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.stat-compact.no-compact {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.stat-icon-small {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
    flex: 1;
}

.stat-number-small {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label-small {
    font-size: 0.55rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.progress-mini {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 0.1rem;
}

.progress-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 1px;
    transition: width 0.8s ease;
}

.no-compact .progress-mini-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.question-note {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f2f3f5;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(0,0,0,0.09) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(0,0,0,0.07) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 75%, rgba(0,0,0,0.11) 2.5px, transparent 2.5px),
        radial-gradient(circle at 75% 85%, rgba(0,0,0,0.09) 1px, transparent 1px),
        radial-gradient(circle at 45% 35%, rgba(0,0,0,0.07) 2px, transparent 2px),
        radial-gradient(circle at 65% 55%, rgba(0,0,0,0.09) 1.5px, transparent 1.5px);
    background-size: 120px 120px, 90px 90px, 140px 140px, 100px 100px, 80px 80px, 110px 110px;
    pointer-events: none;
    z-index: 1;
    animation: moveDots 26s linear infinite;
}

.services-grid {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
  opacity: 0;
  animation: fadeInScale 0.3s ease-out forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.05s;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.15s;
}

.service-card:nth-child(4) {
  animation-delay: 0.2s;
}

.service-card:nth-child(5) {
  animation-delay: 0.25s;
}

.service-card:nth-child(6) {
  animation-delay: 0.3s;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    animation: fadeInScale 0.3s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.05s;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.15s;
}

.service-card:nth-child(4) {
    animation-delay: 0.2s;
}

.service-card:nth-child(5) {
    animation-delay: 0.25s;
}

.service-card:nth-child(6) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: #059669;
}

.service-icon i {
  font-size: 2rem;
  color: #02bc7d;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: #03a971;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  font-weight: 500;
}

.service-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.service-btn {
    background: #f3f4f6;
    color: #059669;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
}

.service-btn:hover {
    background: #02bc7d;
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
    border-bottom: 1px solid #f2f3f5;
    position: relative;
    overflow: hidden;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-left {
    opacity: 0;
    animation: fadeInLeft 0.4s ease-out 0.1s forwards;
}

.testimonials-right {
    opacity: 0;
    animation: fadeInRight 0.4s ease-out 0.2s forwards;
}

.testimonials-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.testimonials-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.video-card {
    position: relative;
    background: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #059669, #065f46);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    color: #059669;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.video-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
}

.video-episode {
    font-size: 0.8rem;
    opacity: 0.8;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* border-bottom: 1px solid #efefef; */
}

.additional-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(0,0,0,0.07) 2px, transparent 2px),
        radial-gradient(circle at 70% 40%, rgba(0,0,0,0.09) 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 70%, rgba(0,0,0,0.05) 2.5px, transparent 2.5px),
        radial-gradient(circle at 90% 80%, rgba(0,0,0,0.07) 1px, transparent 1px),
        radial-gradient(circle at 50% 90%, rgba(0,0,0,0.09) 2px, transparent 2px);
    background-size: 100px 100px, 130px 130px, 90px 90px, 70px 70px, 110px 110px;
    pointer-events: none;
    z-index: 1;
    animation: moveDots 28s linear infinite;
}

.section-title,
.section-subtitle,
.videos-grid,
.add-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.faq-card {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: fadeInUp 0.3s ease-out forwards;
}

.faq-card:nth-child(1) {
  animation-delay: 0.05s;
}

.faq-card:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-card:nth-child(3) {
  animation-delay: 0.15s;
}

.faq-card:nth-child(4) {
  animation-delay: 0.2s;
}

.faq-card:nth-child(5) {
  animation-delay: 0.25s;
}

.faq-card:nth-child(6) {
  animation-delay: 0.3s;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #059669, #3c7e93);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.faq-content {
  flex: 1;
}

.faq-question {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.video-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.video-thumbnail-small {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #065f46);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-button-small {
    color: white;
    font-size: 1rem;
}

.video-details {
    flex: 1;
}

.video-category {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.25rem;
}

.video-title-small {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
}

.add-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.add-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.add-btn:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

.add-text h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.add-text p {
    color: #6b7280;
    /* margin-bottom: 1rem; */
    font-size: 13px;
}

/* Footer */
/* Modern Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #3c7e93, #f59e0b);
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 25px;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.social-link i {
    font-size: 18px !important;
    color: #ffffff !important;
    display: block !important;
    font-weight: 400 !important;
}

.social-link i.fa-brands {
    font-family: "Font Awesome 7 Brands" !important;
}

.social-link i.fa-solid {
    font-family: "Font Awesome 7 Pro" !important;
}

.social-link:hover {
    background: linear-gradient(135deg, #059669, #3c7e93);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Footer Sections */
.footer-section {
    margin-bottom: 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #059669, #3c7e93);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(60, 126, 147, 0.1));
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    outline: none;
    border-color: #059669;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #059669, #3c7e93);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #047857, #2c5a6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #059669;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 35px;
    }

    .hero-logo {
        width: 250px;
        height: 250px;
    }

    .hero-logo-number {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .hero-title {
        font-size: 35px;;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-logo-number {
        font-size: 8rem;
    }



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

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .add-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero {
        padding: 2rem 0;
    }

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .search-pills {
        justify-content: flex-start;
    }

    .question-voting {
        flex-direction: column;
        align-items: center;
    }

    .vote-btn {
        width: 200px;
        justify-content: center;
    }
    
    .question-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    /* Footer Mobile Styles */
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .question-voting {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vote-btn {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }
    
    .question-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 2rem;
        height: 1px;
    }
    
    .question-layout {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .question-left {
        order: 1;
    }
    
    .question-right {
        order: 2;
    }
    
    .question-card {
        max-height: none;
        padding: 1rem;
    }
    
    .question-title {
        font-size: 1.1rem;
    }
    
    .question-subtitle {
        font-size: 0.8rem;
    }
    
    .vote-btn {
        min-width: 80px;
        padding: 0.5rem 0.75rem;
    }
    
    .vote-icon {
        font-size: 1.25rem;
    }
    
    .vote-text {
        font-size: 0.8rem;
    }
    
    .vote-count {
        font-size: 0.7rem;
    }
    
    .stats-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: none;
    }
    
    .stat-compact {
        height: 45px;
        padding: 0.4rem 0.6rem;
    }
    
    .stat-icon-small {
        width: 1rem;
        height: 1rem;
        font-size: 0.9rem;
    }
    
    .stat-number-small {
        font-size: 0.8rem;
    }
    
    .stat-label-small {
        font-size: 0.55rem;
    }
}

/* Dot background animation */
@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Remove dotted background from all sections except hero */
.search-section::before,
.question-section::before,
.services-section::before,
.additional-videos::before {
    display: none !important;
    content: none !important;
}

/* Add the smooth scrolling pills styles */
@keyframes scrollLeft {
    0% { transform: translateX(-33.333%); }
    100% { transform: translateX(0); }
}
@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.search-pills-row {
    display: flex;
    gap: 0.75rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 20px;
}

.pills-container {
    display: flex;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.search-pills-row.top .pills-container {
    animation: scrollLeft 300s linear infinite;
    padding: 5px;
}

.search-pills-row.bottom .pills-container {
    animation: scrollRight 350s linear infinite;
    padding: 5px;
}

.search-pills-row:hover .pills-container {
    animation-play-state: paused;
}

.search-pills-row .search-pill {
    background: white;
    color: #6b7280;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 0.75rem;
    text-decoration: none;
    display: inline-block;
}

.search-pills-row .search-pill:hover {
    background: #02bc7d;
    color: white;
    border-color: #02bc7d;
    text-decoration: none;
}

@media (max-width: 768px) {
    .search-pills-row .search-pill {
        font-size: 12px;
        /* padding: 10px 20px; */
        margin-right: 12px;
    }
}

/* Hamburger and Mobile Menu Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block !important;
    position: absolute;
    right: 18px;
    top: 17px;
    z-index: 120;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28,49,70,0.18);
    z-index: 110;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 270px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px 0 rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    padding: 48px 24px 24px 24px;
    overflow-y: auto;
  }
  .mobile-menu-content.slide-in {
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  }
  .mobile-menu-content.slide-out {
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  }
  .mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 32px;
  }
  .mobile-navigation .nav-item {
    font-size: 0.9rem;
    padding: 0.7rem 0.5rem;
    border-radius: 6px;
    color: #1c3146;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-navigation .nav-item.active,
  .mobile-navigation .nav-item:hover {
    background: #f2f3f5;
    color: #1c3146;
    font-weight: 600;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Login Modal Styles */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-modal.show {
  display: flex;
  opacity: 1;
}

.login-modal.closing {
  opacity: 0;
}

.login-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

.login-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: modalSlideIn 0.4s ease forwards;
}

@keyframes modalSlideIn {
  0% {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOut {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
}

.login-modal.show .login-modal-content {
  transform: scale(1) translateY(0);
}

.login-modal.closing .login-modal-content {
  animation: modalSlideOut 0.3s ease forwards;
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.login-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #1c3146;
}

.login-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.login-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.login-modal-body {
  padding: 24px;
}

.login-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1c3146;
  margin-bottom: 8px;
  text-align: center;
}

.login-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.form-label i {
  color: #666;
  font-size: 0.85rem;
}

.form-input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #059669;
  background: white;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-input-wrapper .form-input {
  padding-right: 44px;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  z-index: 2;
}

.password-toggle:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  background: white;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: #059669;
  border-color: #059669;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #666;
}

.forgot-password {
  color: #059669;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  color: #047857;
  text-decoration: underline;
}

.login-submit-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.login-submit-btn:active {
  transform: translateY(0);
}

.login-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
  z-index: 1;
}

.login-divider span {
  background: white;
  padding: 0 16px;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-decoration: none; /* Added for links */
}

.social-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
}

.google-btn:hover {
  border-color: #ea4335;
  color: #ea4335;
}

.facebook-btn:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.social-btn i {
  font-size: 1.1rem;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.login-footer p {
  color: #666;
  font-size: 0.9rem;
}

.register-link {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.register-link:hover {
  color: #047857;
  text-decoration: underline;
}

/* Responsive adjustments for login modal */
@media (max-width: 480px) {
  .login-modal-content {
    width: 95%;
    margin: 20px;
  }

  .login-modal-body {
    padding: 20px;
  }

  .login-title {
    font-size: 1.6rem;
  }

  .social-login {
    gap: 10px;
  }

  .social-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Email Modal Styles */
.email-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.email-modal.show {
  display: flex;
  opacity: 1;
}

.email-modal.closing {
  opacity: 0;
}

.email-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

.email-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: modalSlideIn 0.4s ease forwards;
}

.email-modal.show .email-modal-content {
  transform: scale(1) translateY(0);
}

.email-modal.closing .email-modal-content {
  animation: modalSlideOut 0.3s ease forwards;
}

.email-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.email-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #1c3146;
}

.email-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.email-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.email-modal-body {
  padding: 24px;
}

.email-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1c3146;
  margin-bottom: 8px;
  text-align: center;
}

.email-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.email-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.email-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.email-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-item i {
  font-size: 1.5rem;
  color: #059669;
  width: 24px;
  text-align: center;
}

.email-link, .phone-link {
  color: #1c3146;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.email-item:hover .email-link, 
.email-item:hover .phone-link {
  color: #059669;
}

/* Responsive adjustments for email modal */
@media (max-width: 480px) {
  .email-modal-content {
    width: 95%;
    margin: 20px;
  }

  .email-modal-body {
    padding: 20px;
  }

  .email-title {
    font-size: 1.6rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 27px 0;
  margin: 0;
  border-top: 1px solid #f2f3f5;
  border-bottom: 1px solid #f2f3f5;
  position: relative;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.05s;
}

.step-card:nth-child(3) {
  animation-delay: 0.1s;
}

.step-card:nth-child(5) {
  animation-delay: 0.15s;
}

.step-card:nth-child(7) {
  animation-delay: 0.2s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #059669, #3c7e93);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.step-icon-wrapper {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-card:hover .step-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.step-icon {
  font-size: 24px;
  color: #059669;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  color: #047857;
}

.step-title {
    font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.step-card:hover .step-title {
  color: #059669;
}

.step-description {
    font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInLeft 0.3s ease-out forwards;
}

.step-connector:nth-of-type(2) {
  animation-delay: 0.075s;
}

.step-connector:nth-of-type(4) {
  animation-delay: 0.125s;
}

.step-connector:nth-of-type(6) {
  animation-delay: 0.175s;
}

.step-connector i {
  transition: transform 0.3s ease;
}

.step-card:hover + .step-connector i,
.step-connector:hover i {
  color: #059669;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-connector {
    display: flex;
    transform: rotate(90deg);
    margin: 8px 0;
  }
  
  .step-connector i {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 27px 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem !important;
  }
  
  .section-header p {
    font-size: 0.95rem !important;
  }
  
  .step-card {
    padding: 24px 20px;
  }
  
  .step-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .step-icon {
    font-size: 24px;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
}

/* Site Stats Section - Simple Version (kept for backward compatibility) */
.site-stats-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  margin: 0;
  border-top: 1px solid #f2f3f5;
  border-bottom: 1px solid #f2f3f5;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #3c7e93);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card-1:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}

.stat-card-1::before {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.stat-card-2:hover {
  border-color: #10b981;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
}

.stat-card-2::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.stat-card-3:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
}

.stat-card-3::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.stat-card-4:hover {
  border-color: #8b5cf6;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

.stat-card-4::before {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.stat-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  transition: all 0.3s ease;
}

.stat-card-1 .stat-icon-wrapper {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.stat-card-2 .stat-icon-wrapper {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.stat-card-3 .stat-icon-wrapper {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.stat-card-4 .stat-icon-wrapper {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon {
  font-size: 28px;
  color: #475569;
  transition: all 0.3s ease;
}

.stat-card-1 .stat-icon {
  color: #3b82f6;
}

.stat-card-2 .stat-icon {
  color: #10b981;
}

.stat-card-3 .stat-icon {
  color: #f59e0b;
}

.stat-card-4 .stat-icon {
  color: #8b5cf6;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  color: #1e293b;
}

.stat-number.animate {
  animation: countUp 0.3s ease-out;
}

@keyframes countUp {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .stat-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .stat-icon {
    font-size: 24px;
  }

  .stat-number {
    font-size: 1.875rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .stat-icon {
    font-size: 20px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}



/* contact page styles */



        /* Contact specific styles */
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'CustomGeoFont', sans-serif;
        }
        
        .contact-header {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: dashed 1px #c5c8cb;
        }
        
        .contact-header h1 {
            font-size: 1.5em;
            margin-bottom: 0.5em;
        }
        
        .contact-header p {
            font-size: 0.9em;
            margin: 0;
        }
        
        .contact-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            border: dashed 1px #c5c8cb;
        }
        
        .contact-section {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #059669;
            background: #f8f9fa;
        }
        
        .contact-section h3 {
            color: #059669;
            margin-bottom: 15px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-section p {
            line-height: 1.6;
            margin-bottom: 10px;
            color: #333;
        }
        
        .contact-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .contact-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #f3f8ff);
            border: 1px solid #bbdefb;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .highlight-box h4 {
            color: #1565c0;
            margin-bottom: 10px;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #dee2e6;
        }
        
        .contact-info h4 {
            color: #495057;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            margin-bottom: 8px;
            color: #6c757d;
        }
        
        .contact-form {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin: 20px 0;
            border: 1px solid #e9ecef;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #059669;
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .contact-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            border: 1px solid #e9ecef;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .contact-card i {
            font-size: 2em;
            color: #059669;
            margin-bottom: 15px;
        }
        
        .contact-card h4 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 5px;
        }
        
        .social-links {
            display: flex;
            justify-content: flex-start;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #059669, #3c7e93);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s ease;
            font-size: 16px;
        }
        
        .social-link i {
            font-size: 24px !important;
            color: white !important;
            display: block !important;
            font-weight: 400 !important;
        }
        
        .social-link i.fa-brands {
            font-family: "Font Awesome 7 Brands" !important;
        }
        
        .social-link i.fa-solid {
            font-family: "Font Awesome 7 Pro" !important;
        }
        
        .social-link:hover {
            transform: scale(1.1);
            color: white;
        }
        
        .faq-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 15px;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        
        .faq-answer {
            color: #666;
            line-height: 1.5;
        }
        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .contact-container {
                padding: 10px;
            }
            
            .contact-content {
                padding: 20px;
            }
            
            .contact-section {
                padding: 15px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Hide desktop user profile on mobile devices */
        @media (max-width: 768px) {
            .user-profile-container {
                display: none !important;
            }
        }

        /* Fix email underline on mobile devices */
        .dropdown-header div:last-child {
            text-decoration: none !important;
            -webkit-text-decoration: none !important;
            -moz-text-decoration: none !important;
        }

        /* Additional iOS Safari fixes */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            .dropdown-header div:last-child {
                text-decoration: none !important;
                -webkit-text-decoration: none !important;
            }
        }

        /* Chrome mobile specific fixes */
        @media screen and (max-width: 768px) {
            .dropdown-header div:last-child {
                text-decoration: none !important;
                -webkit-text-decoration: none !important;
                -moz-text-decoration: none !important;
                -ms-text-decoration: none !important;
            }
        }

        /* Main content layout styles */
        .main-content {
            display: flex;
            gap: 5px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 20px;
        }

        .right-content {
            flex: 1;
            background: white;
            border: 1px solid #e1e5e9;
            border-radius: 8px;
            padding: 24px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 20px 15px;
            }
        }
    


        /* policy  page styles */



           /* Policy specific styles */
           .policy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'CustomGeoFont', sans-serif;
        }
        
        .policy-header {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: dashed 1px #c5c8cb;
        }
        
        .policy-header h1 {
            font-size: 1.5em;
            margin-bottom: 0.5em;
        }
        
        .policy-header p {
            font-size: 13px;
            margin: 0;
        }
        
        .policy-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            border: dashed 1px #c5c8cb;
        }
        
        .policy-section {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #059669;
            background: #f8f9fa;
        }
        
        .policy-section h3 {
            color: #059669;
            margin-bottom: 15px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .policy-section p {
            line-height: 1.6;
            margin-bottom: 10px;
            color: #333;
        }
        
        .policy-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .policy-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #f3f8ff);
            border: 1px solid #bbdefb;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .highlight-box h4 {
            color: #1565c0;
            margin-bottom: 10px;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #dee2e6;
        }
        
        .contact-info h4 {
            color: #495057;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            margin-bottom: 8px;
            color: #6c757d;
        }
        
        .last-updated {
            text-align: center;
            color: #6c757d;
            font-size: 0.9em;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .policy-container {
                padding: 10px;
            }
            
            .policy-content {
                padding: 20px;
            }
            
            .policy-section {
                padding: 15px;
            }
        }
        
        /* Hide desktop user profile on mobile devices */
        @media (max-width: 768px) {
            .user-profile-container {
                display: none !important;
            }
        }

        /* Fix email underline on mobile devices */
        .dropdown-header div:last-child {
            text-decoration: none !important;
            -webkit-text-decoration: none !important;
            -moz-text-decoration: none !important;
        }

        /* Additional iOS Safari fixes */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            .dropdown-header div:last-child {
                text-decoration: none !important;
                -webkit-text-decoration: none !important;
            }
        }

        /* Chrome mobile specific fixes */
        @media screen and (max-width: 768px) {
            .dropdown-header div:last-child {
                text-decoration: none !important;
                -webkit-text-decoration: none !important;
                -moz-text-decoration: none !important;
                -ms-text-decoration: none !important;
            }
        }

        /* Main content layout styles */
        .main-content {
            display: flex;
            gap: 5px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 20px;
        }

        .right-content {
            flex: 1;
            background: white;
            border: 1px solid #e1e5e9;
            border-radius: 8px;
            padding: 24px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 20px 15px;
            }
        }
    