/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.hero-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.expertise-card:hover::before {
    left: 100%;
}

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

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expertise-card:hover .card-image img {
    transform: scale(1.05);
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 1.5rem 0 1rem 0;
    padding: 0 1.5rem;
}

.expertise-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    padding: 0 1.5rem 2rem 1.5rem;
    margin: 0;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.expertise-card:nth-child(1) { transition-delay: 0.1s; }
.expertise-card:nth-child(2) { transition-delay: 0.2s; }
.expertise-card:nth-child(3) { transition-delay: 0.3s; }
.expertise-card:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .expertise-card h3 {
        font-size: 1.3rem;
        padding: 0 1.2rem;
    }
    
    .expertise-card p {
        padding: 0 1.2rem 1.5rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .expertise-card h3 {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .expertise-card p {
        padding: 0 1rem 1.2rem 1rem;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #061c2c;
    position: relative;
}

.services .section-title {
    color: white;
}

.services .section-title::after {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.section-subtitle {
    text-align: center;
    color: #bdc3c7;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.service-card {
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    
    height: 200px;
}

.card-content {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover .card-content {
    justify-content: flex-start;
    padding-top: 1.5rem;
}

.service-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover h3 {
    color: #ff6b35;
    transform: translateY(-2px);
    margin-bottom: 1rem;
}

.card-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.service-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.card-description p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.service-card:hover .card-description p {
    color: #ecf0f1;
    transform: translateY(-2px);
}

/* Staggered animation delays for services */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }
.service-card:nth-child(7) { transition-delay: 0.7s; }
.service-card:nth-child(8) { transition-delay: 0.8s; }
.service-card:nth-child(9) { transition-delay: 0.9s; }
.service-card:nth-child(10) { transition-delay: 1.0s; }
.service-card:nth-child(11) { transition-delay: 1.1s; }
.service-card:nth-child(12) { transition-delay: 1.2s; }

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .service-card {
        height: 110px;
    }
    
    .service-card:hover {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .card-description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .service-card {
        height: 100px;
    }
    
    .service-card:hover {
        height: 160px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .card-description p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        height: 90px;
    }
    
    .service-card:hover {
        height: 140px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .card-description p {
        font-size: 0.8rem;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
    opacity: 0;
    animation: slideIn 1s ease 0.5s forwards;
}

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

@keyframes slideIn {
    to {
        opacity: 1;
    }
}

.cta-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.8s forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive Design for CTA Section */
@media (max-width: 1024px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* AI Section */
.ai-section {
    padding: 100px 0;
    background: #061c2c;
    position: relative;
}

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

.ai-text {
    color: white;
}

.ai-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
}

.ai-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.ai-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin: 0;
}

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

.image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Responsive Design for AI Section */
@media (max-width: 1024px) {
    .ai-section {
        padding: 80px 0;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .ai-title {
        font-size: 2.2rem;
    }
    
    .ai-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding: 60px 0;
    }
    
    .ai-content {
        gap: 2.5rem;
    }
    
    .ai-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-description {
        font-size: 1rem;
    }
    
    .image-grid {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ai-section {
        padding: 50px 0;
    }
    
    .ai-title {
        font-size: 1.5rem;
    }
    
    .ai-description {
        font-size: 0.95rem;
    }
    
    .image-grid {
        gap: 0.5rem;
    }
    
    .image-overlay h4 {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials .section-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #ff6b35;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.8rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b35;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.author-title {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Staggered animation delays for testimonials */
.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 900px;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #061c2c;
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-title {
    color: white;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c3e50;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

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

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

a{
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.logo-svg {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.footer-logo-svg {
    height: 35px;
    margin-bottom: 10px;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-cta {
    background: #ff6b35;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e55a2b;
    color: white !important;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #061c2c;
    padding: 3rem 0 1rem 0;
    color: white;
}

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

.footer-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-address {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
}

.footer-phone {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Terms Page Styles */
.terms-hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
    color: white;
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: black;
}

.terms-subtitle {
    font-size: 1.2rem;
    color: black;
    margin: 0;
}

.terms-content {
    padding: 4rem 0;
    background: white;
}

.terms-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text ul {
    margin: 0 0 2rem 0;
    padding-left: 1.5rem;
}

.terms-text li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.terms-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.terms-text a {
    color: #0066cc;
    text-decoration: underline;
}

.terms-text a:hover {
    color: #004499;
}

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

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Navigation and Footer */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-address {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h3 {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .terms-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}
