html, body {
    margin: 0;
    padding: 0;
}

:root {
    --navbar-height: 102px;
}

body {
    min-height: 100%;
    padding-top: var(--navbar-height, 102px);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
}

.nav-logo img {
    width: auto;
    height: 70px;
    flex-shrink: 0;
}

.nav-brand-text {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: none;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1432px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: 522px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* .testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: white;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
} */

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: violet;
    font-size: 0.9rem;
}

/* Testimonial Navigation */
.testimonial-nav {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: scale(1.1);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-nav.prev {
    left: -60px;
}

.testimonial-nav.next {
    right: -60px;
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-nav i {
    font-size: 16px;
}

.testimonial-nav:hover i {
    transform: scale(1.1);
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
}

/* Achievements Section */
    .achievements {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        overflow: hidden;
    }

.achievements-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-header .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.achievements-showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-nav-container {
    position: relative;
    z-index: 10;
}

/* Navigation Arrows */
.achievements-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: linear-gradient(135deg, violet 0%, #8a2be2 100%); */
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: black;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.achievements-nav:hover {
    background: linear-gradient(135deg, #8a2be2 0%, violet 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(138, 43, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.achievements-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.achievements-nav.prev {
    left: -30px;
}

.achievements-nav.next {
    right: -30px;
}

.achievements-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #ccc;
    box-shadow: none;
}

.achievements-nav i {
    transition: transform 0.3s ease;
}

.achievements-nav:hover i {
    transform: scale(1.2);
}

.achievements-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: auto;
    min-height: 600px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
    overflow: visible;
}

.achievement-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 300px;
    transform: scale(0.7);
    opacity: 0.5;
    cursor: pointer;
    border: 3px solid transparent;
}

.achievement-item.center {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border-color: violet;
    width: 500px;
    height: auto;
    max-width: 90%;
    aspect-ratio: auto;
}

/* Larger screens - make images even bigger */
@media (min-width: 1400px) {
    .achievement-item.center {
        width: 600px;
        height: auto;
    }
    
    .achievements-carousel {
        height: auto;
        min-height: 700px;
        max-width: 1600px;
    }
}

.achievement-item.side {
    transform: scale(0.75);
    opacity: 0.8;
    z-index: 2;
    width: 280px;
    height: 300px;
}

.achievement-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.achievement-item.center:hover {
    transform: scale(1.25);
}

.achievement-item.side:hover {
    transform: scale(0.85);
}

.achievement-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.achievement-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease;
    display: block;
    padding: 0;
    background: white;
    line-height: 0;
}

.achievement-caption {
    padding: 12px 15px;
    text-align: center;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

.achievement-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: move;
    background: transparent;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

/* Zoom controls for achievement images */
.achievement-zoom-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.achievement-zoom-controls .zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 14px;
}

.achievement-zoom-controls .zoom-btn:hover {
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.achievement-zoom-controls .zoom-btn:active {
    transform: scale(0.95);
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(138, 43, 226, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.achievement-overlay i {
    color: white;
    font-size: 2.5rem;
}

.achievement-item:hover .achievement-overlay {
    opacity: 1;
}

.achievement-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.achievement-content p {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    align-self: flex-start;
}

.achievement-badge i {
    font-size: 12px;
}

/* Achievements Dots */
.achievements-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.achievement-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-dot.active {
    background: violet;
    transform: scale(1.3);
    border-color: #764ba2;
}

.achievement-dot:hover {
    background: #764ba2;
    transform: scale(1.2);
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 95vh;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupFadeIn 0.3s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-image-container {
    position: relative;
    width: 100%;
    overflow: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-height: 75vh;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 10px 0;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-close:hover {
    color: #333;
    background: rgba(255, 255, 255, 1);
}

.popup-zoom-controls {
    position: absolute;
    top: 15px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 10000;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.popup-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease;
    cursor: move;
    user-select: none;
}

.popup-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    color: white;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* LinkedIn - Blue */
.footer-social-icon[title="LinkedIn"] {
    background: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

/* X (Twitter) - Black */
.footer-social-icon[title="X (Twitter)"] {
    background: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Instagram - Gradient */
.footer-social-icon[title="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

/* YouTube - Red */
.footer-social-icon[title="YouTube"] {
    background: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Facebook - Blue */
.footer-social-icon[title="Facebook"] {
    background: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive design for footer social icons */
@media (max-width: 768px) {
    .footer-social-links {
        gap: 0.8rem;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 0.6rem;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* WhatsApp Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-chat a:hover {
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

/* Profile Card */
.profile-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}



.profile-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.profile-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* About Content Single Column */
.about-content-single {
    padding: 80px 0;
}

.about-single-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.about-card-single {
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    text-align: center;
}

.about-card-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-card-single h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-card-single h3 i {
    color: violet;
}

.about-card-single p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

/* Expertise List */
.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Expertise Grid - 4 Column Layout */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Responsive adjustments for expertise grid */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.expertise-item-single {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.expertise-item-single:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expertise-item-single i {
    font-size: 1.5rem;
    color: violet;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.expertise-item-single span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    line-height: 1.3;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.about-card h3 i {
    color: violet;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

/* Expertise Section */
.expertise-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.expertise-card {
    width: 100%;
}

.expertise-card h3 {
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
    width: 100%;
}

.expertise-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.expertise-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
}

.expertise-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.expertise-item i {
    font-size: 1.8rem;
    color: violet;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.expertise-item span {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .expertise-section {
        padding: 0 20px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-column {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Qualifications */
.qualifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.qualification-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-5px);
}

.qualification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.qualification-icon i {
    font-size: 2rem;
    color: white;
}

.qualification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.qualification-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-card h3 i {
    color: violet;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.mission-card ul {
    list-style: none;
}

.mission-card ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.mission-card ul li:last-child {
    border-bottom: none;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.choose-icon i {
    font-size: 2rem;
    color: white;
}

.choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.choose-card p {
    color: #666;
    line-height: 1.6;
}

.core-values-intro {
    max-width: 900px;
    margin: 0 auto 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.65;
}

.core-values-subheading {
    color: #fff;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Service videos row (home page, above My Services) */
.service-videos-section {
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-videos-showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.service-videos-showcase .achievements-nav-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 20;
}

.service-videos-showcase .achievements-nav {
    pointer-events: auto;
}

.service-videos-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 70px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.service-videos-row::-webkit-scrollbar {
    height: 8px;
}

.service-videos-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

.service-video-card {
    flex: 0 0 min(300px, 85vw);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.service-video-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
}

.service-video-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.service-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.88);
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.service-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #cc0000;
}

.service-video-play:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 3px;
}

.service-video-embed {
    display: none;
    position: absolute;
    inset: 0;
}

.service-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.service-video-card.is-playing .service-video-embed {
    display: block;
}

.service-video-caption {
    padding: 12px 14px;
    text-align: center;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .service-videos-row {
        padding: 10px 50px 20px;
    }

    .service-video-card {
        flex: 0 0 min(260px, 78vw);
    }
}

/* Services Detailed */
.services-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 0;
    background: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-card-grid {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content h3 i {
    color: violet;
    font-size: 1.3rem;
}

.service-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.service-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features ul li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: violet;
    font-weight: bold;
}

.service-duration {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-duration span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: violet;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid violet;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: violet;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: violet;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-section p,
.contact-form-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-text p {
    margin-bottom: 0.5rem;
}

.contact-text p a {
    color: violet;
    text-decoration: none;
}

.contact-text span {
    font-size: 0.9rem;
    color: #666;
}

.social-links-contact {
    margin-top: 2rem;
}

.social-links-contact h4 {
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: violet;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: violet;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: violet;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.map-info p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: violet;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        flex: 1 1 auto;
        max-width: 70%;
    }

    .nav-logo img {
        height: 56px;
    }

    :root {
        --navbar-height: 88px;
    }

    .nav-brand-text {
        font-size: 0.72rem;
        line-height: 1.1;
        white-space: normal;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height, 88px);
        flex-direction: column;
        background-color: violet;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .about-grid,
    .about-content,
    .contact-grid,
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
        .achievements-showcase {
            padding: 0 50px;
        }

        .achievements-carousel {
            gap: 20px;
            height: 600px;
            max-width: 800px;
            padding: 0 60px;
        }

        .achievement-item {
            width: 180px;
            height: 280px;
        }

        .achievement-item.center {
            width: 380px;
            height: auto;
            transform: scale(1);
        }
        
        .achievement-caption {
            padding: 10px 12px;
            font-size: 13px;
        }
        
        .achievement-image {
            height: auto;
            overflow: hidden;
            line-height: 0;
        }
        
        .achievement-item img {
            height: auto;
            width: 100%;
            display: block;
            vertical-align: top;
            margin: 0;
            padding: 0;
        }

        .achievement-item.side {
            transform: scale(0.75);
        }

        .achievements-nav {
            width: 50px;
            height: 50px;
            font-size: 16px;
        }

        .achievement-content h4 {
            font-size: 14px;
        }

        .achievement-content p {
            font-size: 12px;
        }

        .achievement-badge {
            font-size: 10px;
            padding: 5px 10px;
        }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-duration {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Testimonials Carousel Responsive */
    .testimonials-carousel-container {
        max-width: 600px;
        gap: 15px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-nav.prev {
        left: -50px;
    }
    
    .testimonial-nav.next {
        right: -50px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial-card,
    .qualification-card,
    .choose-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
        .achievements-showcase {
            padding: 0 10px;
        }
        
        .achievements-carousel {
            gap: 15px;
            height: auto;
            min-height: 450px;
            max-width: 95%;
            padding: 0 20px;
        }

        .achievement-item {
            width: 140px;
            height: 200px;
        }

        .achievement-item.center {
            width: 280px;
            height: auto;
            transform: scale(1);
        }
        
        .achievement-caption {
            padding: 10px 12px;
            font-size: 12px;
        }
        
        .achievement-image {
            height: auto;
            overflow: hidden;
            line-height: 0;
        }
        
        .achievement-item img {
            height: auto;
            width: 100%;
            display: block;
            vertical-align: top;
            margin: 0;
            padding: 0;
        }

        .achievement-item.side {
            transform: scale(0.7);
        }

        .achievements-nav {
            width: 45px;
            height: 45px;
            font-size: 14px;
        }

        .achievement-content h4 {
            font-size: 11px;
        }

        .achievement-content p {
            font-size: 9px;
        }

        .achievement-badge {
            font-size: 8px;
            padding: 3px 6px;
        }
    
    .achievements-nav.prev {
        left: 10px;
    }
    
    .achievements-nav.next {
        right: 10px;
    }
    
    .achievement-item img {
        height: 100%;
        object-fit: contain;
    }
    
    .popup-content {
        margin: 5% auto;
        width: 95%;
        padding: 15px;
        max-height: 90vh;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }
    
    .popup-zoom-controls {
        top: 10px;
        left: 15px;
        gap: 8px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .popup-image-container {
        max-height: 60vh;
        min-height: 200px;
    }
    
    .popup-caption {
        font-size: 1rem;
        padding: 8px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat a {
        width: 47px;
        height: 47px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
} 

/* --- My Journey Timeline Styles --- */
.journey-hero {
    background: linear-gradient(135deg, violet 0%, #764ba2 100%);
    color: #333;
    padding: 120px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.journey-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #764ba2;
}

.journey-hero .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
    opacity: 0.85;
}

.journey-hero .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
}

.journey-timeline {
    background: #f7f7fa;
    padding: 60px 0 40px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, violet 0%, #764ba2 100%);
    z-index: 0;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #764ba2;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(118,75,162,0.08);
    z-index: 2;
    border: 3px solid #fff;
}

.timeline-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(118,75,162,0.08);
    padding: 32px 28px 24px 28px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 16px 40px rgba(118,75,162,0.18);
}

.timeline-content h3 {
    color: #764ba2;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.timeline-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .timeline {
        max-width: 100%;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 30px 0 30px 60px;
    }
    .timeline-icon {
        left: 24px;
        transform: translateY(-50%);
    }
}

@media (max-width: 600px) {
    .journey-hero .hero-content h1 {
        font-size: 2.1rem;
    }
    .journey-hero .hero-content h2 {
        font-size: 1.1rem;
    }
    .timeline-content {
        padding: 20px 12px 16px 12px;
    }
    .timeline-item {
        padding: 24px 0 24px 50px;
    }
    .timeline-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
} 

/* Floating Astrology Star Icons */
.floating-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}
.star-icon {
    position: absolute;
    color: #ddc01b;
    opacity: 0.8;
    font-size: 2rem;
    animation: floatStar 20s linear infinite, twinkle 2s ease-in-out infinite;
}
.star1 {
    top: 10%;
    left: 15%;
    font-size: 2.5rem;
    animation-delay: 0s, 0.5s;
}
.star2 {
    top: 30%;
    left: 70%;
    font-size: 1.8rem;
    animation-delay: 2s, 1s;
}
.star3 {
    top: 60%;
    left: 25%;
    font-size: 2.2rem;
    animation-delay: 4s, 1.5s;
}
.star4 {
    top: 80%;
    left: 60%;
    font-size: 1.5rem;
    animation-delay: 1s, 0.2s;
}
.star5 {
    top: 50%;
    left: 85%;
    font-size: 2rem;
    animation-delay: 3s, 1.2s;
}
@keyframes floatStar {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
} 

/* Astrology Animated Video Background */
.astrology-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
} 

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.1) 0%, rgba(233, 236, 239, 0.1) 100%);
}

/* --- Redesigned About Us, Brand Story, Mission & Vision Sections --- */
.about-us-section {
    background: linear-gradient(135deg, #f8f9fa 60%, #f3e9ff 100%);
    padding: 80px 0;
}
.about-us-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-us-text {
    text-align: left;
}
.about-us-text h2.section-title {
    margin-bottom: 1.5rem;
}
.about-us-text h3 {
    color: #764ba2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.about-us-text ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}
.about-us-text ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.about-us-text ul li i {
    color: violet;
    font-size: 1.2rem;
}
.about-us-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(118,75,162,0.10);
}

.brand-story-section {
    background: #fff;
    padding: 80px 0;
}
.brand-story-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(118,75,162,0.08);
    padding: 3rem 2rem;
    text-align: left;
    position: relative;
}
.brand-story-card .brand-quote {
    font-size: 1.3rem;
    color: #764ba2;
    font-style: italic;
    margin: 1.5rem 0;
}

.mission-values {
    background: linear-gradient(135deg, #f8f9fa 60%, #f3e9ff 100%);
    padding: 80px 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.mission-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(118,75,162,0.08);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: box-shadow 0.3s;
}
.mission-card:hover {
    box-shadow: 0 16px 40px rgba(118,75,162,0.18);
}
.mission-card h3 {
    color: #764ba2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.mission-card i {
    color: violet;
    font-size: 1.5rem;
}
.mission-card p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
} 

.background-video {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5; /* Adjust for desired effect */
    pointer-events: none;
} 

 

/* GPay QR Code Section */
.gpay-section {
    padding: 60px 0;
}

.gpay-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gpay-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.gpay-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.gpay-features ul {
    list-style: none;
    padding: 0;
}

.gpay-features ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpay-features ul li i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.gpay-qr {
    position: relative;
    max-width: 300px;
}

.gpay-qr img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gpay-qr:hover .qr-overlay {
    opacity: 1;
}

.download-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.download-btn i {
    font-size: 1.1rem;
}

/* Responsive design for GPay section */
@media (max-width: 768px) {
    .gpay-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .gpay-text h2 {
        font-size: 2rem;
    }
    
    .gpay-qr {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .gpay-text h2 {
        font-size: 1.8rem;
    }
    
    .gpay-qr {
        max-width: 200px;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Testimonials Carousel Mobile Responsive */
    .testimonials-carousel-container {
        max-width: 400px;
        gap: 10px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-nav.prev {
        left: -40px;
    }
    
    .testimonial-nav.next {
        right: -40px;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-dots {
        margin-top: 20px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
} 