
:root {
    --primary-color: rgb(10, 34, 88);
    --secondary-color: rgb(77, 164, 48);
    --light-bg: #f8f9fa;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #6c757d;
    --shadow-sm: 0 2px 8px rgba(10, 34, 88, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 34, 88, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 34, 88, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light-bg);
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* === Header Styles === */
.top-header {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-header a {
    color: var(--light-text);
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.main-header {
    background: var(--light-text);
    box-shadow: var(--shadow-sm);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

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

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(10, 34, 88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 34, 88, 0.95), rgba(10, 34, 88, 0.85)), url('images/509391366360-2e959784a276.jpg') center/cover;
    color: var(--light-text);
    padding: 100px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(77, 164, 48, 0.2), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* === Buttons === */
.btn-primary-custom {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 34, 88, 0.4);
    color: var(--primary-color);
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary-custom {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 164, 48, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--light-text);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--light-text);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* === Statistics Section === */
.stats-section {
    padding: 80px 0;
    background: var(--light-text);
}

.about-stats-content {
    padding-left: 2rem;
}

.about-stats-content h2 {
    line-height: 1.3;
}

.about-stats-content .badge {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image-wrapper img {
    border-radius: 0 !important;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}
.stat-icon img{
    width: 40px;
    height: 40px;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 600;
}

/* === Services Section === */
.services-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.service-card {
    background: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: visible;
}

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

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

.service-icon-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
    box-shadow: var(--shadow-md);
    border: 5px solid var(--light-text);
    transition: var(--transition);
    z-index: 2;
}
.service-icon-overlay img {
    width: 40px;
    height: 40px;
}

.service-card:hover .service-icon-overlay {
    background: var(--primary-color);
    transform: translateX(-50%) rotate(360deg);
}

.service-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
    z-index: 1;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(77, 164, 48, 0.2), transparent);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h5 {
    margin-bottom: 0.2rem;
}

.author-info p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--light-text);
    color: var(--primary-color);
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 0;
    background: var(--light-text);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(10, 34, 88)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(255, 255, 255)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem 1.5rem;
    background: var(--light-text);
    color: var(--gray-text);
    line-height: 1.8;
}

/* === Why Us Section === */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg), var(--light-text));
}

.feature-box {
    background: var(--light-text);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--secondary-color);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
   
}

.feature-icon {
    width: 100px;
    height: 100px;
    
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--gray-text);
    margin: 0;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), rgba(10, 34, 88, 0.9)), url('images/1497435334941-8c899ee9e8e9.jpg') center/cover;
    color: var(--light-text);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(77, 164, 48, 0.3), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* === Footer === */
footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1rem;
}

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

.footer-about p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.9;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--light-text);
    box-shadow: none;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    opacity: 0.8;
}

/* === Contact Page === */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), rgba(10, 34, 88, 0.9));
    color: var(--light-text);
    padding: 100px 0 60px;
    text-align: center;
}

.contact-info-card {
    background: var(--light-text);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.contact-form-section {
    padding: 80px 0;
}

.form-control,
.form-select {
    padding: 14px 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(77, 164, 48, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
}

/* === Services Page === */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), rgba(10, 34, 88, 0.9)), url('images/1508514177221-188b1cf16e9d.jpg') center/cover;
    color: var(--light-text);
    padding: 100px 0 60px;
    text-align: center;
}

.service-detail-card {
    background: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-detail-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 3rem;
}

.service-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* === About Page === */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), rgba(10, 34, 88, 0.9)), url('images/1497440001374-f26997328c1b.jpg') center/cover;
    color: var(--light-text);
    padding: 100px 0 60px;
    text-align: center;
}

.about-content-section {
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.timeline-dot {
    position: absolute;
    left: -12px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--light-text);
}

.timeline-item h4 {
    color: var(--primary-color);
}

/* === Error 404 Page === */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

/* === Cookie Popup === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light-text);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Forms === */
.form-group {
    margin-bottom: 1.5rem;
}

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

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* === Responsive Design === */
@media (max-width: 991px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-form-card {
        margin-top: 3rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .top-header {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-content,
    .service-detail-content {
        padding: 2rem 1.5rem;
    }
    
 
    .testimonial-card {
        padding: 2rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* === Utility Classes === */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

/* === Loading Animation === */
.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border: 0.3rem solid var(--secondary-color);
    border-right-color: transparent;
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}
.div-border{
     border-right: 2px solid rgb(77, 164, 48);
}


@media (max-width: 768px) {
 .div-border {
    border-right: none;
   
  }
}