:root {
    --primary-color: #325c83;
    --primary-light: #76bdf7;
    --primary-dark: #406c9e;
    --secondary-color: #8d0132;
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(14, 13, 13, 0.1);
    --hover-transform: translateY(-5px);
    
    /* New Variables */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
    --section-spacing: 6rem;
    --content-width: 1200px;
    --navbar-height: 70px;
}

body {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;  
    padding-top: var(--navbar-height);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

.display-4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Navbar Styles */
.navbar {
    height: var(--navbar-height);
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.9) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

/* Main Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-item {
    display: flex;
    align-items: center;
}

/* Navigation Links */
.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    opacity: 1;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: #3B82F6;
    border: none;
    color: #fff !important;
}

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

/* Connect Now Button */
.btn-connect {
    background: #25D366;
    color: #fff !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-connect:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-connect i {
    font-size: 1.1rem;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: #000000;
        padding: 1rem;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin: 0;
        padding: 1rem 0;
    }

    .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 5px;
        color: #fff !important;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin: 0.5rem 0 0 0;
        gap: 0.5rem;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: #fff !important;
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Fix for navbar toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #1a75ff, #0052cc);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    color: #fff;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.typewriter-text {
    min-height: 60px;  /* Fixed height to prevent content jumping */
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.Typewriter__cursor {
    color: white;
    font-weight: 100;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(
        45deg,
        #eceff1,
        #a2b0be,
        #7fa4ce,
        #4b8beb
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.9;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-logo {
    max-height: 150px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 1.5rem;
}

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-card i {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    transition: transform 0.4s ease;
}

.stats-card:hover i {
    transform: scale(1.2);
}

.stats-card h3 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

/* Timeline */
.timeline-card {
    position: relative;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    animation: slideIn 0.5s ease-out;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.6rem 1rem;
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed) ease;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .stats-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-link {
        height: auto;
        padding: 0.75rem 1.25rem;
    }
    
    .navbar-brand img {
        height: calc(var(--navbar-height) - 40px);
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    :root {
        --navbar-height: 70px;
    }

    .navbar-toggler {
        display: block;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-height: 120px;
    }
    
    .founder-message {
        padding-left: 0;
        text-align: center;
        margin-top: 2rem;
    }
    
    .founder-message::before {
        display: none;
    }
    
    .stats-card {
        padding: 2rem;
    }
    
    .stats-card h3 {
        font-size: 2.25rem;
    }
    
    .timeline-year {
        padding: 1.25rem 2rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    :root {
        --navbar-height: 60px;
    }
    
    .navbar {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stats-card h3 {
        font-size: 2rem;
    }
    
    .timeline-year .year {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Journey Section */
.journey-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: var(--section-spacing) 0;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%231976d2" opacity="0.1"/></svg>');
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
    margin-left: auto;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 2;
}

.timeline-year .year {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    font-family: var(--heading-font);
}

.timeline-year .title {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 45%;
    margin-top: 3rem;
    animation: fadeIn 0.5s ease-out;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
}

.timeline-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-points li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: transform var(--transition-speed) ease;
}

.timeline-points li:hover {
    transform: translateX(10px);
}

.timeline-points li i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Timeline Media Queries */
@media (max-width: 992px) {
    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-year {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        width: auto;
        min-width: 120px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .timeline-year .year {
        font-size: 1.5rem;
    }

    .timeline-year .title {
        font-size: 0.9rem;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-top: 60px;
        padding: 20px;
    }

    .timeline-content::before {
        left: -10px !important;
        top: 20px;
    }

    .timeline-points li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 15px;
        min-width: 100px;
    }

    .timeline-year .year {
        font-size: 1.25rem;
    }

    .timeline-year .title {
        font-size: 0.8rem;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 15px;
    }

    .timeline-points li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .timeline-points li i {
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

/* Founder Section */
.founder-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border: 5px solid #fff;
}

.founder-image:hover {
    transform: var(--hover-transform);
}

.founder-message {
    position: relative;
    padding-left: 3rem;
}

.founder-message h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.founder-message::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 2rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

@media (max-width: 768px) {
    .founder-message {
        padding-left: 0;
        text-align: center;
    }
    
    .founder-message::before {
        display: none;
    }
}

/* Section Spacing */
section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

/* Container Width */
.container {
    max-width: var(--content-width);
    padding: 0 2rem;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Alert styles */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.alert-danger {
    background-color: #fff2f2;
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #f2fff5;
    color: #28a745;
    border-left: 4px solid #28a745;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links .fab {
    font-size: 1.1rem;
}

.social-links a:hover .fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Add styles for services section */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #0d6efd;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #616060, #333232);
    z-index: 1;
}

/* Improved responsive typography */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    h1, .h1 {
        font-size: 1.875rem !important;
    }
    
    h2, .h2 {
        font-size: 1.5rem !important;
    }
    
    h3, .h3 {
        font-size: 1.25rem !important;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .navbar-brand img {
        height: 40px !important;
    }
}

/* Enhanced mobile navigation */
@media (max-width: 992px) {
    .navbar-collapse {
        display: none !important;
        background: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        padding: 1rem;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
        transition: none;
    }

    .navbar-collapse.show {
        display: block !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        color: #ffffff !important;
        font-size: 1.1rem;
        border-radius: 6px;
        opacity: 1 !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Button Styles */
    .navbar .nav-btn {
        color: #ffffff !important;
        width: 100%;
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        font-size: 1rem;
        text-align: center;
        border-radius: 6px;
        opacity: 1 !important;
    }

    .navbar .btn-outline-light {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Dropdown Styles */
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem;
        margin-top: 0.25rem;
        border-radius: 6px;
    }

    .dropdown-item {
        color: #ffffff !important;
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
    }

    .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 0.5rem 0;
    }
}

/* Fix for very small screens */
@media (max-width: 576px) {
    :root {
        --navbar-height: 60px;
    }

    .navbar {
        padding: 0.4rem 0.75rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-toggler {
        width: 25px;
        height: 25px;
    }

    .navbar-collapse {
        padding: 0.75rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 0.75rem !important;
    }

    .navbar .nav-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsive sections and cards */
@media (max-width: 768px) {
    section {
        padding: 3rem 0 !important;
    }

    .card {
        margin-bottom: 1rem;
    }

    .service-card {
        padding: 1.5rem !important;
    }

    .timeline-content {
        padding: 1.5rem !important;
    }

    .stats-card {
        padding: 1.5rem !important;
    }

    .stats-card i {
        font-size: 2rem !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 4rem 0 !important;
    }

    .hero-content {
        padding: 1rem !important;
    }

    .btn-group-lg > .btn, .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .gap-3 {
        gap: 0.5rem !important;
    }
}

/* Improved form responsiveness */
@media (max-width: 576px) {
    .form-control {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    .input-group {
        flex-direction: column;
    }

    .input-group > .form-control {
        width: 100%;
        border-radius: 6px !important;
        margin-bottom: 0.5rem;
    }

    .input-group > .btn {
        width: 100%;
        border-radius: 6px !important;
        margin-top: 0.5rem;
    }
}

/* Enhanced table responsiveness */
@media (max-width: 768px) {
    .table-responsive {
        margin: 0;
        padding: 0;
    }

    .table {
        font-size: 0.875rem;
    }

    .table td, .table th {
        padding: 0.5rem;
    }
}

/* Improved grid system responsiveness */
.row {
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* Enhanced image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Improved footer responsiveness */
@media (max-width: 768px) {
    footer {
        text-align: center;
        padding: 2rem 0;
    }

    footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    footer .col-md-4:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

/* Enhanced accordion responsiveness */
@media (max-width: 576px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* Improved modal responsiveness */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 0.75rem;
    }
}

/* Fix for particles.js on mobile */
@media (max-width: 768px) {
    #particles-js {
        height: 100vh !important;
    }
}

/* Remove any animations that might cause flickering */
.navbar *,
.navbar *::before,
.navbar *::after {
    animation: none !important;
    transition: none !important;
}

/* Ensure dropdown menu stays visible */
.dropdown-menu {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-menu.show {
    display: block !important;
}

/* Typewriter Effect */
.typewriter-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#typewriter {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: #ffffff;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.txt {
    border-right: 0.2rem solid #ffffff;
    animation: blink 0.7s infinite;
}

/* Mobile Typewriter */
@media (max-width: 768px) {
    .typewriter-container {
        min-height: 50px;
        flex-wrap: wrap;
    }

    #typewriter {
        font-size: 1.1rem;
    }
}

/* Counselling Paths */
.counselling-paths {
    padding-top: 4rem;
    position: relative;
    z-index: 2;
    background: #fff;
}

.path-card {
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.bg-soft-pink {
    background-color: #FFE6E6;
}

.bg-soft-blue {
    background-color: #E6F0FF;
}

.bg-soft-green {
    background-color: #E6FFE6;
}

.bg-soft-yellow {
    background-color: #FFFFF0;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.path-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.text-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.text-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Plans Overview */
.plans-overview {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 5rem 0;
}

.plans-list {
    margin-top: 2rem;
}

.plan-item {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plan-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 1rem;
}

.plan-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .counselling-paths,
    .plans-overview {
        padding: 3rem 0;
    }

    .path-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .path-icon {
        width: 30px;
        height: 30px;
    }

    .text-content h3 {
        font-size: 1.1rem;
    }

    .plan-item {
        padding: 0.75rem 1rem;
    }

    .plan-icon {
        width: 30px;
        height: 30px;
    }

    .plan-item span {
        font-size: 1rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background: #f8f9fa;
    padding: 5rem 0;
    transition: all 0.3s ease;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0d6efd, #25D366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header i {
    color: #0d6efd;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: super;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

/* Animation for pricing section */
.pricing-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-section:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-header i {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .btn-whatsapp {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}

/* WhatsApp Button Styles */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-fab:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab i {
    font-size: 28px;
}

@media (max-width: 768px) {
    .whatsapp-fab {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 25px;
    }
    
    .whatsapp-fab i {
        font-size: 24px;
    }
} 
