/* Global Styles */
:root {
    --primary-color: #4b6faa;
    --secondary-color: #ffce00;
    --dark-color: #08306b;
    --light-color: #A1E3F9;
    /* --light-color: #F8F9FA; */
    --white-color: #FFFFFF;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--white-color);
    line-height: 1.6;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

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

.text-center {
    margin-top: 10px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #427be7c0;
    /* background-color: var(--secondary-color); */
    color: var(--white-color);
}

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

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

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

.btn-white {
    background-color: var(--white-color);
    color: var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-nav {
    padding: 8px 20px;
    margin-left: 15px;
}

/* Glassmorphism Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Updated Header and Logo Styles */
/* Enhanced Logo Styles with Depth */
.logo {
    display: flex;
    width: 10em;
    height: 3em;
    align-items: center;
    position: relative;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.logo img {
    /* height: 70px; */
        width: 100%;
    /* object-fit: contain; */
    border-radius: 8px;
    padding: 0;
    background: white;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(89, 6, 86, 0.3) 0%, 
        rgba(7, 3, 97, 0.5) 100%);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.7;
} */

/* Hover Effects */
.logo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 7px 14px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.logo:hover img {
    transform: scale(1.03);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 6px 8px rgba(0, 0, 0, 0.15);
}

.logo:hover .logo-glow {
    opacity: 0.9;
    background: linear-gradient(135deg, 
        rgba(89, 6, 86, 0.4) 0%, 
        rgba(7, 3, 97, 0.6) 100%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .logo{
                    width: 10em;
            height: 3em;

    }
    .logo img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
            width: 10em;
        height: 3em;

    }
    .logo img {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo {
            width: 10em;
     height: 3em;

        border-radius: 8px;
    }
    .logo img {
        width: 100%;
    }
}
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

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

.main-nav ul li a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Menu Glass Effect */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(249, 242, 242, 0.802);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 80px 30px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5px;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('/images/maxim-tolchinskiy-crHhZlES310-unsplash.jpg') no-repeat center center/cover;
    color: #40032f;
    text-align: center;
    margin-top: 80px; /* Adjusted for glass header */
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
        /* transform: translateY(20px); */
        animation: gradientShift 12s ease infinite;

}
#hero-span{
    color: #281a77;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 2s ease 0.4s both;
}

/* Features Section */
.features {
    background: url('../images/moving-storage-designteam.jpg') no-repeat center center/cover;
    /* opacity: 0.8; */
    padding: 60px 0px;
    color: #FFFFFF;
}

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

.feature-card {
    /* background-color: var(--white-color); */
    background-color: rgba(51, 17, 153, 0.366);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 4;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 2rem;
}

/* Services Preview */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    color: #6A1F55;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.testimonials h2 {
    color: var(--white-color);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    scroll-snap-align: start;
}

.rating {
    color: #ffd600;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    font-weight: 600;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    /* background: linear-gradient(135deg, #6a0864, #84065e, #8e44ad); */
    background-color: #130468;
    border-radius: 10%/20% ;
    color: var(--white-color);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo span span {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.8em;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1em;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
}

.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;
}

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

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Services Page Specific Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background: url('../images/moveranimation.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    margin-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(rgba(75, 109, 229, 0.842), rgba(88, 59, 216, 0.8)), 
                url('./images/backgroundpic.jpeg') no-repeat center center;
    background-size: cover;
        animation: gradientShift 12s ease infinite;
    background-size: 200% 200%;

    /* background-color: rgba(42, 92, 130, 0.7); */
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
        z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;

}

.breadcrumbs {
    padding: 15px 0;
    background-color: var(--light-color);
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
}

.breadcrumbs ul li {
    margin-right: 10px;
    font-size: 0.9rem;
}

.breadcrumbs ul li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Service Detail Cards */
.service-detail-card {
    display: flex;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 60px;

}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
        border-radius: 10px;

    
    /* background-size: cover;
    background-position: center; */
}

.service-detail-image img {
    width: 100%;
        border-radius: 10px;

    /* height: 100%; */
    /* object-fit: cover; */
}

.service-detail-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-badge i {
    margin-right: 8px;
    font-size: 0.5rem;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
}

.service-pricing {
    margin: 30px 0;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0;
}

.service-options {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.service-options .option {
    flex: 1;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.service-options .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Additional Services */
.additional-services {
    margin-top: 60px;
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 40px;
}

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

.additional-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.additional-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

/* Alternate CTA */
.cta-alt {
    background-color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-outline-white:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Responsive Styles for Services */
@media (max-width: 992px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }
    
    .service-detail-image {
        min-height: 300px;
    }
    
    .service-options {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-detail-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 250px;
    }
    
    .service-detail-image {
        min-height: 200px;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: url('../images/moveranimation.jpg') no-repeat center center/cover;
}

.contact-main {
    padding: 60px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container {
    flex: 2;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info-container {
    flex: 1;
}

.contact-info-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(245, 67, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.business-hours {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.business-hours h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.emergency-contact {
    background-color: rgba(245, 56, 35, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.emergency-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.emergency-contact p {
    margin: 0;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 92, 130, 0.1);
}

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

/* Map Styles */
.map-container {
    margin-top: 60px;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Responsive Styles for Contact */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 250px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
}
/* About Page Specific Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background: url('../images/about-hero.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    margin-top: 80px;
}

.page-hero-overlay {
        background: linear-gradient(-60deg, #5055e9, #0b159c5c, #5e80b7, #2c12a2);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 3, 97, 0.7);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.page-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
}

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

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    position: relative;
}

.rounded-image {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 6, 89, 0.617) 0%, rgba(7, 3, 97, 0.2) 100%);
    border-radius: 15px;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Our Values */
.our-values {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.value-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(89, 6, 86, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

/* Team Section */
.our-team {
    padding: 80px 0;
}

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

.team-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-details {
    padding: 25px;
    text-align: center;
}

.position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-color);
    padding: 80px 0;
}

.features-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: var(--white-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 700;
}

.accordion-header h3 {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-content p {
    padding-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-intro-content {
        flex-direction: column;
    }
    
    .about-intro-text, 
    .about-intro-image {
        flex: none;
        width: 100%;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 350px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
}