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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-space {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #FED7AA;
    background: rgba(255, 255, 255, 0.1);
}

.phone-link {
    color: #FED7AA;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.booking-btn {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.5;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 82, 130, 0.4);
    z-index: 5;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #2C5282;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.intro-section,
.about-section,
.services-section,
.contact-section,
.past-work-section,
.blog-section {
    padding: 60px 0;
}

.intro-section h2,
.about-section h2,
.services-section h2,
.contact-section h2,
.past-work-section h2,
.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5282;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text,
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #3182CE;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    color: #2C5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 5px solid #3182CE;
}

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

.service-card .service-icon {
    font-size: 3rem;
    text-align: center;
    padding: 30px 0 20px;
    background: linear-gradient(135deg, #EBF8FF 0%, #BEE3F8 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2C5282;
    margin: 20px 30px 15px;
    font-weight: 600;
}

.service-card p {
    color: #4A5568;
    margin: 0 30px 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 0 30px;
}

.service-card li {
    color: #4A5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: bold;
}

.service-price {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
}

/* Process Steps */
.process-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182CE 0%, #2C5282 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2C5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #4A5568;
    line-height: 1.6;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.about-text h3 {
    color: #2C5282;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #4A5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    color: #4A5568;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3182CE;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #ED8936;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #2C5282;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: #4A5568;
    font-weight: 500;
}

/* Credentials */
.credentials-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    padding: 80px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #48BB78;
}

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

.credential-card h3 {
    font-size: 1.3rem;
    color: #2C5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.credential-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form-container h3,
.contact-info h3 {
    color: #2C5282;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2C5282;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-submit-btn {
    background: linear-gradient(135deg, #3182CE 0%, #2C5282 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

/* Contact Info */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: #2C5282;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #4A5568;
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-item small {
    color: #718096;
    font-style: italic;
}

.contact-item a {
    color: #3182CE;
    text-decoration: none;
    font-weight: 500;
}

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

.urgent-contact {
    background: linear-gradient(135deg, #FED7AA 0%, #FEEBC8 100%);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #ED8936;
}

.urgent-contact h4 {
    color: #C05621;
    margin-bottom: 10px;
    font-weight: 600;
}

.urgent-contact p {
    color: #744210;
    margin-bottom: 8px;
    line-height: 1.5;
}

.urgent-contact a {
    color: #C05621;
    font-weight: 600;
    text-decoration: none;
}

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

/* Past Work */
.work-examples {
    margin-top: 50px;
}

.work-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.work-content {
    padding: 30px;
}

.work-content h3 {
    color: #2C5282;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.work-content p {
    color: #4A5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

.work-content strong {
    color: #2C5282;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #48BB78;
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #4A5568;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: #3182CE;
    line-height: 0;
}

.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: #3182CE;
    line-height: 0;
}

.testimonial-author h4 {
    color: #2C5282;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
    color: white;
    padding: 80px 0;
}

.stats-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FED7AA;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.blog-card.featured .blog-image img {
    height: 100%;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    color: #2C5282;
    font-size: 1.4rem;
    margin: 20px 0 15px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
}

.blog-date,
.blog-read-time {
    color: #718096;
    font-size: 0.9rem;
}

/* Resources Section */
.resources-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #3182CE;
}

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

.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.resource-card h3 {
    color: #2C5282;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-card p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.resource-btn {
    background: linear-gradient(135deg, #3182CE 0%, #2C5282 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
    color: white;
    padding: 80px 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3);
}

.newsletter-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F7FAFC 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #2C5282;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FED7AA;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: #90CDF4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FED7AA;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.qr-section {
    text-align: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
}

.qr-placeholder p {
    color: #FED7AA;
    font-weight: 600;
    margin: 0;
}

.footer-booking-btn {
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
}

.footer-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.powered-by {
    color: #90CDF4;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.powered-by:hover {
    color: #FED7AA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 10px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .work-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .work-image img {
        height: 250px;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .intro-section h2,
    .about-section h2,
    .services-section h2,
    .contact-section h2,
    .past-work-section h2,
    .blog-section h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card,
    .credential-card,
    .testimonial-card,
    .resource-card {
        padding: 25px 20px;
    }
    
    .work-content {
        padding: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
}