/* 
   SOFYBOX Website Stylesheet
   Modern and attractive design for a logistics solutions company in Oriental Morocco
*/

/* Base Styles and Variables */
:root {
    --primary-color: #4A2C92; /* Deep Purple from the logo */
    --secondary-color: #FF7F27; /* Orange from the logo */
    --accent-color: #6A3EB2; /* Lighter purple for accents */
    --text-color: #333;
    --light-text: #777;
    --white: #fff;
    --light-bg: #f9f9f9;
    --border-color: #eee;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.nav .btn {
    padding: 10px 20px;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav .btn i {
    font-size: 0.9em;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 127, 39, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary: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: 0.5s;
    z-index: -1;
}

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

.btn-primary:hover {
    background-color: #E06B1F;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid var(--white);
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(74, 44, 146, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
}

.logo {
    max-width: 180px;
}

.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav ul li {
    margin-left: 0;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
    color: var(--white);
}

.nav ul li a:not(.btn):hover {
    color: var(--secondary-color);
}

.nav ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/about.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content {
    flex: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    animation: expandWidth 1.5s ease-in-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background-color: rgba(255, 127, 39, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
    margin-left: 30px;
}

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

/* About Section */
.about {
    background-color: var(--light-bg);
}

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

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
	display:block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    margin: 0 10px;
}

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

.stat-text {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 127, 39, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 44, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* CTA Band */
.cta-band {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.cta-content h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Cities Section */
.cities {
    background-color: var(--light-bg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.section-intro p {
    margin-bottom: 0;
    line-height: 1.7;
}

.section-intro strong {
    color: var(--primary-color);
}

/* Cities & Fees Tabs */
.departure-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 15px 25px;
    background-color: var(--light-bg);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    flex: 1;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.tab-btn:hover:not(.active) {
    background-color: rgba(74, 44, 146, 0.1);
    transform: translateY(-2px);
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active::before {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.cities-search {
    margin-bottom: 20px;
    position: relative;
}

.cities-search::after {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0.7;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    padding-right: 45px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 44, 146, 0.1);
}

.cities-table {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.cities-table table {
    width: 100%;
    border-collapse: collapse;
}

.cities-table th,
.cities-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cities-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.cities-table tr:nth-child(even) {
    background-color: rgba(74, 44, 146, 0.05);
}

.cities-table tr:first-child td {
    border-top: none;
}

.cities-table tr:last-child td {
    border-bottom: none;
}

.cities-table tr:hover {
    background-color: rgba(255, 127, 39, 0.05);
}

.cities-table td:nth-child(3) {
    font-weight: 600;
    color: var(--primary-color);
}

.cities-table td:nth-child(2) {
    color: var(--secondary-color);
}

.feature h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* Cities & Fees Section */
.cities-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

table tr:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
}

.pagination button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination button:hover:not(:disabled) {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination button:disabled {
    background-color: rgba(74, 44, 146, 0.3);
    cursor: not-allowed;
}

.pagination #pageInfo,
.pagination #agadirPageInfo,
.pagination #alhoceimaPageInfo {
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Removed duplicate rule */

/* Removed duplicate rule */

/* Removed duplicate rule */

.cities-note {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.location-content {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.map-container {
    flex: 1.5;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

#map {
    width: 100%;
    height: 500px;
    border: none;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: rgba(74, 44, 146, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--light-text);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    
    #map {
        height: 400px;
    }
    
    .location-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.partners::before {
    content: '';
    position: absolute;
    left: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(74, 44, 146, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Partners Carousel */
.partners-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto 0;
    overflow: hidden;
}

.partners-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    cursor: grab;
}

.partner-slide {
    min-width: calc(25% - 15px); /* Show 4 partners at once with gap */
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.partner-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
    /* Removed grayscale filter */
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-control:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive carousel */
@media (max-width: 1200px) {
    .partner-slide {
        min-width: calc(33.333% - 14px); /* Show 3 partners at once */
    }
}

@media (max-width: 992px) {
    .partner-slide {
        min-width: calc(50% - 10px); /* Show 2 partners at once */
    }
}

@media (max-width: 576px) {
    .partner-slide {
        min-width: calc(100% - 0px); /* Show 1 partner at once */
    }
}

.partner-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.partner-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.partners-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(74, 44, 146, 0.05);
    border-radius: var(--border-radius);
}

.partners-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Signup Section */
.signup {
    background-color: var(--light-bg);
}

.signup-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.signup-image {
    flex: 1;
}

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

.signup-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

/* Footer */
.footer {
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top {
    background-color: #221c36;
    padding: 60px 0;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #6a3eb2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 25px;
    border-radius: 0;
}

.footer-logo p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff7f27;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 15px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #ff7f27;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    margin-right: 15px;
    color: #ff7f27;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact ul li span {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff7f27;
    border-color: #ff7f27;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #171129;
    padding: 20px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

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

/* Thank You Page Styles */
.thankyou {
    padding-top: 150px;
    padding-bottom: 80px;
}

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

.thankyou-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thankyou h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.next-steps {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 20px;
}

.next-steps ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.next-steps ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.thankyou-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.thankyou-image {
    margin-top: 50px;
    max-width: 400px;
    margin: 50px auto 0;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-content,
    .signup-content {
        flex-direction: column;
    }
    
    .about-image,
    .signup-image {
        margin-bottom: 30px;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: rgba(74, 44, 146, 0.95);
        transition: var(--transition);
        box-shadow: var(--box-shadow);
        z-index: 999;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        max-width: 100%;
    }
    
    .cities-table th,
    .cities-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 30px;
        align-items: flex-start;
    }
    
    .nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav ul li .btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    
    .nav ul li .btn-secondary {
        background-color: var(--white);
        color: var(--primary-color);
        border: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin: 120px 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-label {
        margin-bottom: 10px;
    }
    
    .services-grid,
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .partner-card {
        margin-bottom: 20px;
    }
    
    .feature {
        margin-bottom: 30px;
    }
    
    .thankyou-buttons {
        flex-direction: column;
    }
    
    .thankyou-buttons .btn {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
}
