:root {
    --primary-color: #00C4B4;
    --dark-primary: #009d8e;
    --font-family: 'Inter', sans-serif !important;
    --bs-body-font-family: 'Inter', sans-serif !important;
    --title-font-family: 'Cinzel', serif;
    --font-size: 14px;
    --title-font-size: 48px;
    --description-font-size: 20px;
    --glow-color: rgba(0, 196, 180, 0.3);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f8fa, #e0f7fa);
    overflow-x: hidden;
}

.geeks-alligators {
    font-weight: bold;
    font-size: 24px !important;
    color: #000 !important;
    font-family: var(--title-font-family);
}

.navbar {
    padding: 15px 20px;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px !important;
    color: #000;
    font-family: var(--title-font-family);
}

.navbar .btn-primary {
    background-color: var(--primary-color);
    border: none;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.navbar .btn-primary:hover {
    background-color: var(--dark-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--glow-color);
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: linear-gradient(-45deg, #B2EBF2, #E0F7FA, #B3E5FC, #D1C4E9);
    background-size: 400% 400%;
    animation: movingGradient 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

h1 {
    font-size: var(--title-font-size);
    font-family: var(--title-font-family);
    background: linear-gradient(to right, black, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    position: relative;
    display: inline-block;
}

.highlight {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
}

.hero p {
    font-size: var(--description-font-size);
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

@keyframes movingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.expertise {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.expertise-text {
    margin-bottom: 40px;
}

h2 {
    font-size: 36px;
    font-family: var(--title-font-family);
    background: linear-gradient(to right, #000, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.expertise-description {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

.expertise-card {
    perspective: 1000px;
    height: 200px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.expertise-card:nth-child(1) { animation-delay: 0.4s; }
.expertise-card:nth-child(2) { animation-delay: 0.5s; }
.expertise-card:nth-child(3) { animation-delay: 0.6s; }
.expertise-card:nth-child(4) { animation-delay: 0.7s; }
.expertise-card:nth-child(5) { animation-delay: 0.8s; }
.expertise-card:nth-child(6) { animation-delay: 0.9s; }
.expertise-card:nth-child(7) { animation-delay: 1.0s; }
.expertise-card:nth-child(8) { animation-delay: 1.1s; }

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.expertise-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
}

.card-back {
    background: linear-gradient(135deg, #76aba6, #4a8a85);
    color: white;
    transform: rotateY(180deg);
    font-weight: 500;
}

.card-front span.material-icons {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.expertise-card:hover .card-front span.material-icons {
    transform: scale(1.2);
    color: var(--dark-primary);
}

.card-front h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 0;
    font-weight: 600;
}

.card-back p {
    font-size: 16px;
    margin: 0;
    padding: 10px;
}

.writing-opportunities {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.writing-opportunities h2 {
    font-size: 36px;
    font-family: var(--title-font-family);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.writing-opportunities .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.opportunity-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 200px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.opportunity-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.opportunity-card span.material-icons {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.opportunity-card:hover span.material-icons {
    transform: scale(1.2);
    color: var(--dark-primary);
}

.opportunity-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.opportunity-card .description {
    font-size: 16px;
    color: #666;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(118, 171, 166, 0.8);
    color: #fff;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.opportunity-card:hover .description {
    opacity: 1;
    transform: translateY(0);
    top: 0;
}

.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #e6f7fa, #d0ecf1);
    position: relative;
    overflow: hidden;
}

.benefits h2 {
    font-size: 40px;
    font-family: var(--title-font-family);
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.benefits .subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

.benefits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefits-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(0, 196, 180, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 6s infinite;
}

.benefit-item {
    flex: 1;
    max-width: 180px;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    height: 200px;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 196, 180, 0.1));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:nth-child(1) { animation-delay: 0.4s; }
.benefit-card:nth-child(2) { animation-delay: 0.6s; }
.benefit-card:nth-child(3) { animation-delay: 0.8s; }
.benefit-card:nth-child(4) { animation-delay: 1.0s; }
.benefit-card:nth-child(5) { animation-delay: 1.2s; }
.benefit-card:nth-child(6) { animation-delay: 1.4s; }

.benefit-card:hover {
    transform: translateY(-15px) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e6f7fa);
}

.benefit-card span.material-icons {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.benefit-card:hover span.material-icons {
    transform: scale(1.3);
    color: var(--dark-primary);
}

.benefit-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff, #e0f0f7);
    position: relative;
    overflow: hidden;
}

.journey h2 {
    font-size: 40px;
    font-family: var(--title-font-family);
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.journey .subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

.journey-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.journey-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(0, 196, 180, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 6s infinite;
}

.journey-step {
    flex: 1;
    max-width: 220px;
    position: relative;
}

.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.journey-card {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 250px;
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 196, 180, 0.1));
    z-index: -1;
    transition: opacity 0.6s ease;
    opacity: 0;
}

.journey-card:hover::before {
    opacity: 1;
}

.journey-card:nth-child(1) { animation-delay: 0.4s; }
.journey-card:nth-child(2) { animation-delay: 0.6s; }
.journey-card:nth-child(3) { animation-delay: 0.8s; }
.journey-card:nth-child(4) { animation-delay: 1.0s; }

.journey-card:hover {
    transform: translateY(-20px) rotate(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f0f7);
}

.journey-card span.material-icons {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.6s ease, color 0.6s ease;
}

.journey-card:hover span.material-icons {
    transform: scale(1.4);
    color: var(--dark-primary);
}

.journey-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.geeks-testimonial-section {
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.geeks-testimonials {
    padding: 50px 0;
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    transform: none;
}

.section-title {
    font-size: 40px;
    font-family: var(--title-font-family);
    color: var(--primary-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

.geeks-testimonial-container {
    position: relative;
    overflow: hidden;
    min-height: 225px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.geeks-testimonial-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.geeks-testimonial-card {
    background-color: rgba(178, 235, 242, 0.3);
    border: 1px solid rgba(0, 196, 180, 0.2);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    width: 300px;
    height: 75px;
    flex-shrink: 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    box-sizing: border-box;
}

.geeks-testimonial-card:nth-child(1) { animation-delay: 0.4s; }
.geeks-testimonial-card:nth-child(2) { animation-delay: 0.6s; }
.geeks-testimonial-card:nth-child(3) { animation-delay: 0.8s; }
.geeks-testimonial-card:nth-child(4) { animation-delay: 1.0s; }
.geeks-testimonial-card:nth-child(5) { animation-delay: 1.2s; }
.geeks-testimonial-card:nth-child(6) { animation-delay: 1.4s; }
.geeks-testimonial-card:nth-child(7) { animation-delay: 1.6s; }
.geeks-testimonial-card:nth-child(8) { animation-delay: 1.8s; }
.geeks-testimonial-card:nth-child(9) { animation-delay: 2.0s; }
.geeks-testimonial-card:nth-child(10) { animation-delay: 2.2s; }
.geeks-testimonial-card:nth-child(11) { animation-delay: 2.4s; }
.geeks-testimonial-card:nth-child(12) { animation-delay: 2.6s; }

.geeks-testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.geeks-testimonial-card .quote {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-style: italic;
    white-space: normal;
    line-height: 1.2;
    overflow: hidden;
}

.geeks-testimonial-card .author {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}

.quote {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--dark-primary);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
    cursor: pointer;
}

.btn-primary i,
.btn-primary .material-icons {
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}

.btn-primary:hover i,
.btn-primary:hover .material-icons {
    transform: rotate(360deg);
}

.join-btn {
    font-family: var(--title-font-family) !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 900 !important;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
}

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--dark-primary);
    cursor: pointer;
}

.links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.link-column {
    display: flex;
    flex-direction: column;
}

.link-column a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #008080;
}

.footer {
    background-color: rgb(230, 247, 250);
}

.footer h5 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #04897e;
}

.footer p,
.footer a {
    color: rgb(51, 51, 51) !important;
}

.footer .social-icons .social-link {
    text-decoration: none;
}

.footer .social-icons i {
    font-size: 24px;
    margin-top: 20px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer .social-icons .social-link:hover span.material-icons {
    color: var(--primary-color);
    cursor: pointer;
}

.footer .list-unstyled .footer-link {
    text-decoration: none;
    color: rgb(51, 51, 51);
    transition: color 0.3s ease;
}

.footer .list-unstyled .footer-link:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.footer form.email-form {
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.footer .email-form .form-control-sm {
    font-size: 12px;
    padding: 5px;
}

.footer .email-form textarea.form-control-sm {
    height: 50px;
}

.footer button.btn-sm {
    font-size: 12px;
    padding: 5px 10px;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer button.btn-sm:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
}

.footer .learn-btn {
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer .learn-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
}

.footer .learn-btn i {
    transition: transform 0.6s ease-in-out;
}

.footer .learn-btn:hover i {
    transform: rotate(360deg);
}

.footer button {
    background-color: var(--primary-color);
    border: none;
}

.footer button:hover {
    background-color: var(--dark-primary);
    cursor: pointer;
}

.footer hr {
    border-color: rgba(0, 0, 0, 0.3);
}

.learning-center-section {
    padding: 120px 0 30px;
    background-color: #f8f9fa;
    color: #333;
    min-height: calc(100vh - 100px);
    position: relative;
}

.learning-title {
    font-size: 3rem;
    font-family: var(--title-font-family);
    background: linear-gradient(to right, #000, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.card-background {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 196, 180, 0.05));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.card-background:hover::before {
    opacity: 1;
}

.card-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tab-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 10px;
}

.tab-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    font-size: 14px;
    box-shadow: none;
    cursor: pointer;
    outline: none;
}

.tab-btn:hover:not(.active) {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    transform: scale(1.01);
}

.tab-btn:hover::after {
    left: 100%;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: 1px solid #ddd;
    height: 50px;
}

.search-input {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    background-color: transparent;
    color: #333;
    outline: none;
    transition: background-color 0.3s ease;
    height: 100%;
}

.search-input:focus {
    background-color: #f0f8ff;
}

.btn-search {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 20px;
    color: #fff;
    border-radius: 0 25px 25px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.btn-search:hover {
    background-color: var(--dark-primary);
    transform: scale(1.1);
}

.btn-search i {
    font-size: 16px;
}

.main-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    animation: fadeIn 0.5s ease-in;
    position: relative;
}

.tab-content {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

.accordion-item {
    border: 1px solid rgba(0, 196, 180, 0.2) !important;
    border-radius: 12px !important;
    margin-bottom: 1.2rem;
    background: #fff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    background: #fff !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    -webkit-text-fill-color: unset;
}

.accordion-button {
    background: #fff !important;
    color: #2a3f5f !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    padding: 1.2rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: relative;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a3f5f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.3s ease !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-primary)) !important;
    color: #fff !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.accordion-body {
    padding: 1.5rem !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    background: #f9f9f9 !important;
    line-height: 1.7 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: left !important;
    min-height: 20px !important;
    border-radius: 0 0 12px 12px !important;
}

.accordion-collapse {
    transition: height 0.3s ease, opacity 0.3s ease !important;
}

.accordion-collapse.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accordion-collapse.collapsing {
    display: block !important;
    visibility: visible !important;
    opacity: 0.7 !important;
}

.ask-question-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ask-question-card {
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

.ask-question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ask-question-title {
    font-size: 28px;
    font-family: var(--title-font-family);
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ask-question-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    font-size: 14px;
    color: #2a3f5f;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff; /* Ensure input background is white */
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 196, 180, 0.3);
    outline: none;
}

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

.submit-btn {
    background-color: var(--primary-color)!important;
    border: none!important;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: transform 0.6s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--dark-primary);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
    cursor: pointer;
}

.blog-section {
    padding: 120px 0 30px;
    background-color: #f8f9fa;
    color: #333;
    min-height: calc(100vh - 100px);
}

.blog-title {
    font-size: 48px;
    font-family: var(--title-font-family);
    background: linear-gradient(to right, #000, #00C4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.category-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.blog-cards {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 15px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    width: 100%;
    max-width: 300px;
}

.blog-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: brightness(90%);
    transition: filter 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card:hover .blog-image {
    filter: brightness(100%);
}

.blog-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.blog-card h3 {
    font-size: 18px;
    color: #2a3f5f;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
    text-align: right;
}

.back-to-home-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-home-btn:hover {
    background-color: var(--dark-primary);
    transform: scale(1.1);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.pagination button:disabled {
    background-color: transparent;
    cursor: not-allowed;
}

.pagination button:hover:not(:disabled) {
    background-color: rgb(230, 247, 250);
    transform: scale(1.05);
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 5px;
    border-radius: 5px;
}

.pagination-container button {
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    margin: 0 2px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-container button:hover {
    color: var(--primary-color);
}

.pagination-container button:disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-container button:disabled i {
    color: #ccc;
}

.pagination-container button i {
    font-size: 16px;
}

.pagination-container button:first-child,
.pagination-container button:last-child {
    width: 42px;
    height: 42px;
    border-radius: 20px;
    padding: 6px 12px;
}

.pagination-container button.active {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1abc9c;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(26, 188, 156, 0.3);
    background: linear-gradient(to right, #1abc9c, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 100px;
}

.faq-column {
    flex: 1;
    text-align: left;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 196, 180, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 196, 180, 0.05));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    color: #2c3e50;
    font-size: 18px;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 16px;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-answer {
    display: block;
    opacity: 1;
}

.about-section {
    padding: 120px 0 30px;
    background-color: #f8f9fa;
    color: #333;
    min-height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}

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

.about-image {
    flex: 0 0 40%;
    opacity: 0;
    animation: fadeInLeft 1s forwards;
    transform: translateX(-50px);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-content {
    flex: 0 0 55%;
    padding: 40px 0;
    opacity: 0;
    animation: fadeInRight 1s 0.3s forwards;
    transform: translateX(50px);
}

.global-presence {
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-container {
    margin: 30px auto;
    position: relative;
    fill: var(--primary-color);
}

.map-container svg {
    zoom: 0.8;
}

.global-presence-section {
    background-color: rgb(230, 247, 250);
}

.contact-section {
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card {
    max-width: 500px;
    text-align: left;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    transition: transform 0.5s ease;
    animation: bounceIn 1s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
}

@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 float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounceIn {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.policy-section {
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
}
.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e0e7ff" fill-opacity="0.3" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,85.3C672,75,768,85,864,90.7C960,96,1056,96,1152,85.3C1248,75,1344,53,1392,42.7L1440,32V320H1392H1344H1248H1152H1056H960H864H768H672H576H480H384H288H192H96H48H0V64Z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}
.policy-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.policy-content h2 {
    font-family: var(--font-family);
    font-size: 1.5rem;
    margin-top: 30px;
    position: relative;
}
.policy-content h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: #04897e;
    border-radius: 3px;
}
.policy-content ul {
    padding-left: 20px;
}
.policy-content ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.policy-content ul li:hover {
    transform: translateX(10px);
}

.loc-contact{
  display: flex;
  align-items: center;
  gap:0px;
  font-size: 14px;
}
.fa-location-dot{margin-top: 10px!important;font-size: 16px!important;}
.fa-envelope{margin-top: 4px!important;font-size: 16px!important;}

@media (max-width: 1200px) {
    .blog-card {
        max-width: 250px;
    }
    .blog-image {
        height: 130px;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        flex: 0 0 60%;
        margin-bottom: 20px;
    }
    .about-content {
        flex: 0 0 100%;
    }
}

@media (max-width: 992px) {
    .learning-title {
        font-size: 2.5rem;
    }
    .tab-container {
        flex-direction: column;
        align-items: stretch;
    }
    .tab-btn {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    .blog-title {
        font-size: 40px;
    }
    .search-container {
        max-width: 400px;
    }
    .blog-card {
        max-width: 220px;
    }
    .blog-image {
        height: 120px;
    }
    .blog-cards {
        gap: 10px;
    }
    .pagination-container button {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .faq-columns {
        flex-direction: column;
    }
    .faq-column {
        width: 100%;
    }
    .section-title {
        font-size: 32px;
    }
    .section-description {
        font-size: 16px;
    }
    .about-content, .global-presence, .contact-section {
        padding: 30px 0;
    }
    .map-image {
        max-width: 90%;
    }
    .contact-card {
        max-width: 400px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    h2 {
        font-size: 28px;
    }
    .expertise-description {
        font-size: 16px;
    }
    .expertise-card {
        height: 180px;
    }
    .card-front span.material-icons {
        font-size: 36px;
    }
    .card-front h3 {
        font-size: 18px;
    }
    .card-back p {
        font-size: 13px;
    }
    .writing-opportunities h2 {
        font-size: 28px;
    }
    .writing-opportunities .subtitle {
        font-size: 16px;
    }
    .opportunity-card {
        height: 180px;
    }
    .opportunity-card span.material-icons {
        font-size: 40px;
    }
    .opportunity-card h3 {
        font-size: 20px;
    }
    .benefits-container {
        flex-direction: column;
        gap: 20px;
    }
    .benefit-card {
        height: 180px;
        max-width: 100%;
    }
    .benefit-card span.material-icons {
        font-size: 40px;
    }
    .benefit-card h3 {
        font-size: 16px;
    }
    .journey-container {
        flex-direction: column;
        gap: 30px;
    }
    .journey-step:not(:last-child)::after {
        display: none;
    }
    .journey-card {
        height: 220px;
        max-width: 100%;
    }
    .journey-card span.material-icons {
        font-size: 50px;
    }
    .journey-card h3 {
        font-size: 18px;
    }
    .journey-card p {
        font-size: 13px;
    }
    .geeks-testimonial-card {
        width: 250px;
        height: 65px;
        padding: 8px;
    }
    .geeks-testimonial-card .quote {
        font-size: 12px;
    }
    .geeks-testimonial-card .author {
        font-size: 10px;
    }
    .learning-center-section {
        padding: 80px 0 20px;
    }
    .learning-title {
        font-size: 2rem;
    }
    .tab-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .main-card {
        padding: 1.5rem;
    }
    .accordion-button {
        font-size: 1rem !important;
        padding: 1rem !important;
    }
    .accordion-body {
        font-size: 0.85rem !important;
        padding: 1rem !important;
    }
    .blog-title {
        font-size: 36px;
    }
    .search-container {
        max-width: 350px;
    }
    .category-tabs {
        gap: 5px;
        justify-content: center;
    }
    .blog-cards {
        gap: 15px;
        justify-content: center;
    }
    .blog-card {
        max-width: 100%;
        height: 280px;
    }
    .blog-image {
        height: 140px;
    }
    .blog-card h3 {
        font-size: 16px;
    }
    .blog-card p {
        font-size: 13px;
    }
    .pagination {
        gap: 5px;
    }
    .pagination button {
        padding: 8px 15px;
        font-size: 14px;
    }
    .about-section {
        padding: 80px 0 20px;
    }
    .about-container {
        flex-direction: column;
    }
    .about-image {
        flex: 0 0 70%;
        margin-bottom: 20px;
    }
    .about-content {
        flex: 0 0 100%;
    }
    .section-title {
        font-size: 28px;
    }
    .section-description {
        font-size: 14px;
    }
    .map-image {
        max-width: 85%;
    }
    .contact-card {
        max-width: 350px;
        padding: 15px;
    }
    .form-label {
        font-size: 12px;
    }
    .form-control {
        padding: 10px 15px;
        font-size: 12px;
    }
    .submit-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .links-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .learning-center-section {
        padding: 60px 0 15px;
    }
    .learning-title {
        font-size: 1.75rem;
    }
    .tab-container {
        gap: 0.75rem;
    }
    .tab-btn {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    .main-card {
        padding: 1rem;
    }
    .accordion-button {
        font-size: 0.95rem !important;
        padding: 0.8rem !important;
    }
    .accordion-body {
        font-size: 0.8rem !important;
        padding: 0.8rem !important;
    }
    .blog-section {
        padding: 40px 0 20px;
    }
    .blog-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .search-container {
        max-width: 300px;
        height: 40px;
    }
    .search-input {
        padding: 10px 15px;
        font-size: 14px;
    }
    .btn-search {
        padding: 10px 15px;
        font-size: 14px;
    }
    .category-tabs {
        gap: 3px;
        flex-direction: column;
        align-items: center;
    }
    .blog-cards {
        gap: 10px;
        padding: 0 10px;
    }
    .blog-card {
        height: 240px;
        max-width: 100%;
    }
    .blog-image {
        height: 120px;
    }
    .blog-card h3 {
        font-size: 14px;
    }
    .blog-card p {
        font-size: 12px;
    }
    .pagination-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 3px;
    }
    .pagination-container button {
        width: 30px;
        height: 30px;
        font-size: 10px;
        margin: 0 2px;
        padding: 5px;
    }
    .pagination {
        gap: 2px;
    }
    .pagination button {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 30px;
    }
    .faq-container {
        padding: 20px;
    }
    .faq-title {
        font-size: 36px;
    }
    .about-section {
        padding: 40px 0 20px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-description {
        font-size: 13px;
    }
    .map-image {
        max-width: 80%;
    }
    .contact-card {
        max-width: 300px;
        padding: 10px;
    }
    .form-label {
        font-size: 11px;
    }
    .form-control {
        padding: 8px 12px;
        font-size: 11px;
    }
    .submit-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    h2 {
        font-size: 24px;
    }
    .expertise-description {
        font-size: 14px;
    }
    .expertise-card {
        height: 160px;
    }
    .card-front span.material-icons {
        font-size: 32px;
    }
    .card-front h3 {
        font-size: 16px;
    }
    .card-back p {
        font-size: 12px;
    }
    .writing-opportunities h2 {
        font-size: 24px;
    }
    .writing-opportunities .subtitle {
        font-size: 14px;
    }
    .opportunity-card {
        height: 160px;
    }
    .opportunity-card span.material-icons {
        font-size: 36px;
    }
    .opportunity-card h3 {
        font-size: 18px;
    }
    .benefit-card {
        height: 160px;
    }
    .benefit-card span.material-icons {
        font-size: 36px;
    }
    .benefit-card h3 {
        font-size: 14px;
    }
    .journey-card {
        height: 200px;
    }
    .journey-card span.material-icons {
        font-size: 45px;
    }
    .journey-card h3 {
        font-size: 16px;
    }
    .journey-card p {
        font-size: 12px;
    }
    .geeks-testimonial-card {
        height: 160px;
    }
    .quote {
        font-size: 13px;
    }
    .author {
        font-size: 11px;
    }
    .footer .col-md-3 {
        text-align: center;
    }
    .footer .email-form {
        width: 100%;
    }
    .section-title {
        font-size: 20px;
    }
    .section-description {
        font-size: 12px;
    }
    .about-image {
        flex: 0 0 80%;
    }
    .map-image {
        max-width: 75%;
    }
    .contact-card {
        max-width: 250px;
    }
    .form-label {
        font-size: 10px;
    }
    .form-control {
        padding: 6px 10px;
        font-size: 10px;
    }
    .submit-btn {
        padding: 6px 15px;
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .search-container {
        max-width: 250px;
        height: 36px;
    }
    .search-input {
        padding: 8px 12px;
        font-size: 13px;
    }
    .btn-search {
        padding: 8px 12px;
    }
    .blog-card {
        height: 220px;
    }
    .blog-image {
        height: 100px;
    }
    .blog-card h3 {
        font-size: 12px;
    }
    .blog-card p {
        font-size: 10px;
    }
    .pagination-container button {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }
    .pagination button {
        padding: 4px 8px;
        min-width: 28px;
    }
    .faq-item {
        padding: 15px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
    }
    .map-image {
        max-width: 70%;
    }
    .contact-card {
        max-width: 220px;
    }
}

@media (max-width: 360px) {
    .learning-title {
        font-size: 1.5rem;
    }
    .tab-btn {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    .accordion-button {
        font-size: 0.9rem !important;
        padding: 0.7rem !important;
    }
    .accordion-body {
        font-size: 0.75rem !important;
        padding: 0.7rem !important;
    }
    .faq-title {
        font-size: 30px;
    }
    .section-title {
        font-size: 18px;
    }
    .section-description {
        font-size: 11px;
    }
    .map-image {
        max-width: 65%;
    }
    .contact-card {
        max-width: 200px;
    }
}