/* ARAA Precious Stones - Custom Styles */

:root {
    --primary-color: #2c577a;
    --primary-dark: #1e3d54;
    --primary-light: #3d6b8f;
    --gold-accent: #c9a961;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px;
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar {
        padding: 0.5rem 0;
        top:  0 !important;
    }
    
    .top-header {
        display: none;
        font-size: 0.75rem;
    }
    
    .top-header .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Top Header Bar */
.top-header {
    background: #e8e8e8;
    color: var(--text-dark);
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header i {
    color: var(--primary-color);
}

.top-header span {
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    top: 38px;
}

.navbar.sticky-top {
    position: fixed;
    width: 100%;
    z-index: 1030;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--gold-accent);
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Carousel Section */
.hero-carousel-section {
    margin-top: -140px;
    padding-top: 132px;
}

.hero-carousel-section .carousel {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-carousel-section .carousel-indicators {
    bottom: 30px;
}

.hero-carousel-section .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid var(--white);
    margin: 0 8px;
}

.hero-carousel-section .carousel-indicators button.active {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: scale(1.2);
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.hero-carousel-section .carousel-control-prev-icon,
.hero-carousel-section .carousel-control-next-icon {
    background-color: rgba(44, 87, 122, 0.8);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-carousel-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel-section .carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: scale(1.1);
}

.animate-slide-up {
    animation: slideUpFade 1.2s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero carousel buttons glow effect */
.hero-carousel-section .btn-primary {
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    }
}

.hero-carousel-section .btn:hover {
    transform: translateY(-3px);
}

/* Carousel slide transition effects */
.carousel-item {
    transition: transform 1s ease-in-out;
}

/* Text shadow for better readability */
.hero-content h1,
.hero-content p,
.hero-content .lead {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--gold-accent);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b8964f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 169, 97, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 1rem auto;
}

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

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
}

/* Feature Boxes */
.feature-box {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 87, 122, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-box h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 87, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 87, 122, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--gold-accent);
    min-width: 30px;
}

.contact-info-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer p,
footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-accent);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

/* About Section */
.founder-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.founder-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.company-info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-accent);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.company-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company-info-box p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Services Cards */
.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
}

.service-card:hover {
    border-top-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-accent);
}

.vision-mission-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-mission-card .icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.vision-mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision-mission-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.mission-list li i {
    color: var(--gold-accent);
    margin-top: 3px;
}

/* Expertise Cards */
.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-top-color: var(--gold-accent);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.expertise-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-card p {
    color: var(--text-light);
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 87, 122, 0.2);
}

.highlight-box p {
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.highlight-box .lead {
    color: var(--white);
    font-weight: 500;
}


.trust-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInScale 0.6s ease;
}

.trust-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(44, 87, 122, 0.3);
    animation: float 3s ease-in-out infinite;
}

.trust-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-card .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    animation: fadeInScale 0.6s ease;
    border-top: 5px solid var(--gold-accent);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(44, 87, 122, 0.3);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.testimonial-info {
    text-align: center;
    flex-grow: 1;
}

.testimonial-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.testimonial-stars i {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    color: var(--gold-accent);
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 1rem 0;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-top-color: var(--primary-color);
}

/* Owl Carousel Testimonials */
.testimonials-carousel {
    padding: 2rem 0;
}

.testimonials-carousel .item {
    padding: 0 15px;
}

.testimonials-carousel .owl-nav {
    margin-top: 2rem;
}

.testimonials-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 1.5rem !important;
    line-height: 50px !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--gold-accent) !important;
    transform: scale(1.1);
}

.testimonials-carousel .owl-dots {
    margin-top: 2rem;
    text-align: center;
}

.testimonials-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-carousel .owl-dot.active {
    background: var(--gold-accent) !important;
    transform: scale(1.3);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.carousel-indicators button.active {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Shareholder Section */
.shareholder-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shareholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-accent), var(--primary-color));
}

.shareholder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.shareholder-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(44, 87, 122, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.shareholder-avatar::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--gold-accent);
    border-radius: 50%;
    opacity: 0.3;
}

.shareholder-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.shareholder-role {
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.shareholder-role i {
    color: var(--gold-accent);
}

.shareholder-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(44, 87, 122, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(44, 87, 122, 0.4);
    }
}

.animate-card {
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Add shimmer effect to cards on hover */
.feature-box:hover::before,
.expertise-card:hover::before,
.vision-mission-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 97, 0.1),
        transparent
    );
    animation: shimmer 2s;
}

.feature-box,
.expertise-card,
.vision-mission-card {
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.shareholder-avatar:hover {
    box-shadow: 0 20px 60px rgba(44, 87, 122, 0.5),
                0 0 40px rgba(201, 169, 97, 0.4);
}

.trust-icon:hover {
    transform: rotate(360deg) scale(1.1);
    transition: transform 0.8s ease;
}

/* Staggered animation for multiple elements */
.animated {
    animation-fill-mode: both;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .top-header {
        font-size: 0.75rem;
    }
    
    .top-header .col-lg-8,
    .top-header .col-lg-4 {
        text-align: center;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .hero-carousel-section {
       margin-top: -120px;
        padding-top: 80px;
    }
    
    .hero-slide .row {
        min-height: 500px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content .lead {
        font-size: 1.2rem !important;
    }

    .navbar-toggler {
        background-color: var(--white);
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .hero-carousel-section .carousel-control-prev-icon,
    .hero-carousel-section .carousel-control-next-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        width: 12%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .vision-mission-card,
    .expertise-card {
        padding: 2rem;
    }
    
    .trust-card {
        padding: 2.5rem 2rem;
        min-height: 300px;
    }
    
    .trust-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-card h3 {
        font-size: 1.5rem;
    }
    
    .trust-card .lead {
        font-size: 1rem;
    }
    
    .shareholder-card {
        padding: 2rem;
    }
    
    .shareholder-avatar {
        width: 120px;
        height: 120px;
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .shareholder-card h3 {
        font-size: 1.5rem;
    }
    
    .shareholder-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-role {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .quote-icon {
        font-size: 1.2rem;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.page-header h1,
.page-header h3 {
    color: var(--text-dark);
}

.page-header p {
    color: var(--text-dark);
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.page-header .breadcrumb-item {
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold-accent);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-box h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-box i {
    font-size: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
}

.value-card:hover {
    border-top-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--gold-accent), #d4af6a);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

/* Founder Section Styles */
.founder-image-wrapper {
    position: relative;
    display: inline-block;
}

.founder-avatar {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.founder-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.founder-avatar i {
    font-size: 6rem;
    color: var(--white);
    z-index: 1;
}

.founder-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.founder-title {
    color: var(--gold-accent);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.founder-highlights {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-accent);
}

.highlight-item {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 25px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .about-badge i {
        font-size: 1.5rem;
    }
    
    .about-badge span {
        font-size: 0.8rem;
    }
    
    .value-card,
    .stat-box {
        margin-bottom: 1rem;
    }
    
    .founder-avatar {
        width: 200px;
        height: 200px;
    }
    
    .founder-avatar i {
        font-size: 4.5rem;
    }
    
    .founder-info h3 {
        font-size: 1.75rem;
    }
    
    .founder-highlights {
        padding: 1.5rem;
    }
}

/* Gallery Page Styles */
.gallery-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 87, 122, 0.3);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 87, 122, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: var(--gold-accent);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.lb-data .lb-number {
    color: var(--gold-accent);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0.3rem;
    }
    
    .gallery-info h5 {
        font-size: 1rem;
    }
    
    .gallery-info {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.contact-info-card:hover {
    border-top-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
}

.contact-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 87, 122, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
}

/* Map Container */
.map-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-wrapper h3 {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Business Details Card */
.business-details-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-details-card h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
}

/* Business Hours Card */
.business-hours-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-hours-card h3 {
    color: var(--primary-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .map-wrapper,
    .business-details-card,
    .business-hours-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Services Page Styles */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
}

.service-card:hover {
    border-top-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--gold-accent), #d4af6a);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

/* Quality Cards */
.quality-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quality-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.quality-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

/* Service Benefits */
.service-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.benefit-item i {
    color: var(--gold-accent);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.benefit-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.services-image-wrapper {
    position: relative;
}

.services-image-wrapper img {
    width: 100%;
    height: auto;
}

/* Responsive Services Page */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .quality-card {
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
    }
}
