/* CSS Custom Properties (CSS Variables) */
:root {
    /* Color Palette */
    --saffron: #F4A261;
    --teal: #2A9D8F;
    --deep-blue: #264653;
    --gold: #E9C46A;
    --white: #FFFFFF;
    --light-gray: #F1F1F1;
    --dark-gray: #333333;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lora', serif;
    --font-accent: 'Caveat', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--saffron);
}

.breadcrumb-item[aria-current="page"] {
    color: var(--saffron);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--teal));
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--saffron);
    color: var(--white);
}

.btn-secondary {
    background: var(--teal);
    color: var(--white);
}

.btn-cta {
    background: var(--saffron);
    color: var(--white);
}

.btn-student {
    background: var(--teal);
    color: var(--white);
}

.btn-business {
    background: var(--deep-blue);
    color: var(--white);
}

.btn-connect,
.btn-read,
.btn-download {
    background: var(--gold);
    color: var(--deep-blue);
}

.btn-submit {
    background: var(--saffron);
    color: var(--white);
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    color: var(--saffron);
    transform: scale(1.05);
}

.nav-logo i {
    color: var(--saffron);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--saffron);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.dropdown-link:hover {
    background: var(--light-gray);
    color: var(--saffron);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--deep-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--teal), var(--deep-blue));
    padding: 140px 0 120px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-quote {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.stat {
    text-align: center;
}

.counter {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Choose Your Path Section */
.path-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
}

.path-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.path-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--teal));
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.student-card .card-icon {
    color: var(--teal);
}

.path-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.path-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.path-features i {
    color: var(--teal);
    font-size: 1.2rem;
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--saffron), var(--teal));
    color: var(--white);
}

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

.mission-text {
    animation: fadeInLeft 1s ease-out;
}

.mission-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mission-quote {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: var(--border-radius);
}

.mission-stats {
    display: flex;
    gap: 2rem;
}

.mission-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

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

.mission-image {
    animation: fadeInRight 1s ease-out;
}

.mission-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
}

/* Offerings Section */
.offerings-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.offering-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--light-gray);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--saffron);
}

.offering-icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.offering-card:nth-child(even) .offering-icon {
    color: var(--teal);
}

.offering-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.offering-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Interns Section */
.interns-section {
    padding: var(--section-padding);
    background: var(--deep-blue);
    color: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.intern-card {
    display: none;
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    animation: fadeIn 0.5s ease-in-out;
}

.intern-card.active {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.intern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intern-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-blue) 100%);
    color: var(--white);
    font-size: 4rem;
    min-height: 300px;
}

.intern-icon svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
}

.intern-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intern-role {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intern-testimonial {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--saffron);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--gold);
}

/* Founders Section */
.founders-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.founder {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.founder-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

.founder-role {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-light);
}

.founders-quote {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    text-align: center;
    color: var(--deep-blue);
    font-style: italic;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.faq-toggle:hover {
    background: var(--light-gray);
}

.faq-toggle.active {
    background: var(--saffron);
    color: var(--white);
}

.faq-arrow {
    transition: var(--transition-smooth);
}

.faq-toggle.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    margin: 0;
}

/* Articles Section */
.articles-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

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

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Download Section */
.download-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.download-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-features {
    list-style: none;
    margin: 2rem 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.app-features li:hover {
    transform: translateX(5px);
    color: var(--white);
}

.app-features i {
    color: var(--gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.app-features li:hover i {
    transform: scale(1.2);
    color: var(--white);
}

.download-buttons {
    margin-top: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-download:hover {
    background: var(--white);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4);
}

.btn-download i {
    width: 20px;
    height: 20px;
}

.download-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

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

.download-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

.download-image:hover img {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

/* Community Section */
.community-section {
    padding: var(--section-padding);
    background: var(--deep-blue);
    color: var(--white);
    text-align: center;
}

.community-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--saffron);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px) scale(1.1);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.community-stat {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--saffron);
    margin-top: 0.25rem;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--saffron);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--teal);
}

.certifications {
    margin-top: 1.5rem;
    text-align: center;
}

.certifications h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-badge {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--deep-blue);
    font-weight: 600;
    border: 2px solid var(--saffron);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cert-badge:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper iframe {
    height: 500px;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.contact-form-wrapper {
    padding: 0;
}

.contact-form-wrapper iframe {
    border: none;
    width: 100%;
    height: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--saffron);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--saffron);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-certifications span {
    background: var(--saffron);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--white);
}

/* Footer App Download Section */
.footer-app-download {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--saffron);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-align: center;
    justify-content: center;
}

.footer-download-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-download-btn i {
    font-size: 1rem;
}

.footer-download-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--saffron);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-certifications {
        align-items: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes fadeInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Utility Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .mission-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .offerings-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 2rem;
        transition: var(--transition-smooth);
        box-shadow: var(--box-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .btn-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
    
    .path-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offerings-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .intern-card.active {
        grid-template-columns: 1fr;
    }
    
    .intern-image {
        height: 200px;
    }
    
    .intern-icon {
        min-height: 200px;
        font-size: 3rem;
    }
    
    .intern-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .cert-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cert-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-form-wrapper iframe {
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .path-card,
    .offering-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .intern-icon {
        min-height: 150px;
        font-size: 2.5rem;
    }
    
    .intern-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .cert-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .contact-form-wrapper iframe {
        height: 450px;
    }
} 

/* Ad Container Styles */
.ad-container {
    margin: 2rem 0;
    padding: 1rem 0;
    text-align: center;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.ad-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.ad-horizontal {
    min-height: 90px;
}

.ad-square {
    min-height: 250px;
}

.ad-vertical {
    min-height: 600px;
}

/* Responsive ad containers */
@media (max-width: 768px) {
    .ad-container {
        margin: 1rem 0;
        padding: 0.5rem 0;
    }
    
    .ad-wrapper {
        padding: 0 0.5rem;
    }
    
    .ad-horizontal {
        min-height: 50px;
    }
    
    .ad-square {
        min-height: 250px;
    }
}

/* Ensure ads don't break layout */
.adsbygoogle {
    display: block !important;
    margin: 0 auto;
}

/* Ad loading states */
.ad-container:empty::before {
    content: "Advertisement";
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 1rem;
    background: var(--white);
    border: 1px dashed var(--text-light);
    border-radius: 4px;
    margin: 0 1rem;
}

/* Ad container focus states for accessibility */
.ad-container:focus-within {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* ===== LEGAL PAGES STYLES ===== */

/* Disclaimer Page Styles */
.disclaimer-section {
    padding: var(--section-padding);
    background: var(--white);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-intro {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.disclaimer-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--teal);
}

.disclaimer-block h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-block h3 {
    color: var(--teal);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.disclaimer-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.disclaimer-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.disclaimer-block ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.disclaimer-block ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.disclaimer-note {
    background: var(--saffron);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.disclaimer-note p {
    margin: 0;
    font-weight: 600;
}

/* About Us Page Styles */
.about-hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--teal) 100%);
    color: var(--white);
}

.about-hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero-content .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-hero-content .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-hero-image {
    text-align: center;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.values-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--saffron), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.value-icon i {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.story-text h2 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

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

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.member-social a:hover {
    background: var(--teal);
    color: var(--white);
}

.achievements-section {
    padding: var(--section-padding);
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.achievement-icon i {
    width: 30px;
    height: 30px;
}

.achievement-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.impact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.impact-text h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.impact-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.impact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Privacy Policy Page Styles */
.privacy-section {
    padding: var(--section-padding);
    background: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--teal);
}

.privacy-block h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-block h3 {
    color: var(--teal);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.privacy-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-block ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-block ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-note {
    background: var(--saffron);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.privacy-note p {
    margin: 0;
    font-weight: 600;
}

/* Careers Page Styles */
.careers-hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.careers-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.careers-hero-content {
    text-align: left;
}

.careers-hero-content .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.careers-hero-content .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.careers-hero-content .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.careers-hero-image {
    text-align: center;
    position: relative;
}

.careers-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.careers-hero-image:hover img {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.culture-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.culture-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

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

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--saffron), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.culture-icon i {
    width: 40px;
    height: 40px;
}

.culture-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.benefits-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.benefit-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-icon i {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.positions-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: var(--deep-blue);
    margin: 0;
}

.position-type {
    background: var(--saffron);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.position-details {
    margin-bottom: 1.5rem;
}

.position-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.position-details strong {
    color: var(--deep-blue);
}

.position-description {
    margin-bottom: 1.5rem;
}

.position-description p {
    color: var(--text-dark);
    line-height: 1.6;
}

.position-requirements h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.position-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.position-requirements li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.position-card .btn {
    margin-top: 1rem;
    width: 100%;
}

.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.6;
}

.careers-contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
}

.careers-contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.careers-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-item i {
    width: 40px;
    height: 40px;
    color: var(--saffron);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Terms & Conditions Page Styles */
.terms-section {
    padding: var(--section-padding);
    background: var(--white);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--teal);
}

.terms-block h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-block h3 {
    color: var(--teal);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.terms-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-block ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-block ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-note {
    background: var(--saffron);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.terms-note p {
    margin: 0;
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES FOR NEW PAGES ===== */

@media (max-width: 1024px) {
    .story-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .culture-grid,
    .benefits-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-block,
    .privacy-block,
    .terms-block {
        padding: 1rem;
    }
    
    .disclaimer-block h2,
    .privacy-block h2,
    .terms-block h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-block h3,
    .privacy-block h3,
    .terms-block h3 {
        font-size: 1.1rem;
    }
    
    .value-card,
    .culture-card,
    .benefit-card,
    .achievement-card,
    .position-card,
    .process-step {
        padding: 1.5rem;
    }
    
    .about-hero-content .hero-ctas,
    .careers-hero-content .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .disclaimer-content,
    .privacy-content,
    .terms-content {
        padding: 0 1rem;
    }
    
    .value-icon,
    .culture-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i,
    .culture-icon i {
        width: 30px;
        height: 30px;
    }
    
    .benefit-icon,
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i,
    .achievement-icon i {
        width: 25px;
        height: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
} 

/* Responsive Design for Careers Page */
@media (max-width: 1024px) {
    .careers-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .careers-hero-content {
        text-align: center;
    }
    
    .careers-hero-content .section-title {
        font-size: 2.2rem;
    }
    
    .careers-hero-content .hero-ctas {
        justify-content: center;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .download-text h2 {
        font-size: 2.2rem;
    }
    
    .app-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 60px 0;
    }
    
    .careers-hero-content .section-title {
        font-size: 2rem;
    }
    
    .careers-hero-content .hero-description {
        font-size: 1.1rem;
    }
    
    .careers-hero-content .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .careers-hero-image img {
        max-width: 80%;
        transform: rotate(-3deg);
    }
    
    .download-section {
        padding: 60px 0;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .download-text p {
        font-size: 1rem;
    }
    
    .app-features li {
        font-size: 0.95rem;
        justify-content: flex-start;
    }
    
    .btn-download {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .download-image img {
        max-width: 80%;
        transform: rotate(-3deg);
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 40px 0;
    }
    
    .careers-hero-content .section-title {
        font-size: 1.75rem;
    }
    
    .careers-hero .container {
        gap: 2rem;
    }
    
    .careers-hero-content .hero-ctas {
        gap: 0.75rem;
    }
    
    .careers-hero-image img {
        max-width: 90%;
        transform: rotate(-2deg);
    }
    
    .download-section {
        padding: 40px 0;
    }
    
    .download-content {
        gap: 2rem;
    }
    
    .download-text h2 {
        font-size: 1.75rem;
    }
    
    .app-features {
        margin: 1.5rem 0;
    }
    
    .app-features li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .app-features i {
        width: 18px;
        height: 18px;
    }
    
    .btn-download {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-download i {
        width: 18px;
        height: 18px;
    }
    
    .download-image img {
        max-width: 90%;
        transform: rotate(-2deg);
    }
    
    .download-note {
        font-size: 0.8rem;
    }
} 