:root {
    --primary-color: #3E6AB0;
    --primary-dark: #1B2E4B;
    --primary-light: #5CA8E8;
    --accent-color: #5DC2B6;
    --white-color: #F9FBFC;
    --gray-color: #8A8D91;
    --dark-color: #2D3748;
    --light-color: #E2E8F0;
    --success-color: #48BB78;
    --danger-color: #E53E3E;
    --warning-color: #DD6B20;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Base Responsive Fixes */
html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Responsive Typography */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

/* Mobile Navigation Fix */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .nav-item {
        margin-bottom: 0.5rem;
    }
}

/* Hero Section Responsive Fix */
.hero-section {
    padding: 10rem 0 5rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Services Grid Fix */
.services-section .row {
    row-gap: 1.5rem;
}

.service-card {
    height: 100%;
}

/* Testimonial Slider Fix */
.testimonial-slider .slick-slide {
    padding: 0 15px;
}

.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 10px;
}

/* Contact Form Fix */
.contact-form .form-control, 
.contact-form .form-select {
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact-section .row > div {
        margin-bottom: 2rem;
    }
}

/* Footer Fix */
.footer .row {
    row-gap: 2rem;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Button spacing fix */
.btn {
    margin-bottom: 0.5rem;
}

/* Grid system fixes */
.row {
    --bs-gutter-x: 1.5rem;
}

/* Card height consistency */
.card {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(62, 106, 176, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-description {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.lotus-loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.petal {
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 20px 20px 0 0;
    transform-origin: bottom center;
    animation: bloom 1.
5s infinite ease-in-out;
}

.petal:nth-child(1) {
transform: rotate(0deg);
animation-delay: 0.1s;
}

.petal:nth-child(2) {
transform: rotate(72deg);
animation-delay: 0.2s;
}

.petal:nth-child(3) {
transform: rotate(144deg);
animation-delay: 0.3s;
}

.petal:nth-child(4) {
transform: rotate(216deg);
animation-delay: 0.4s;
}

.petal:nth-child(5) {
transform: rotate(288deg);
animation-delay: 0.5s;
}

@keyframes bloom {
0%, 100% {
transform: rotate(var(--rotation)) scaleY(1);
}
50% {
transform: rotate(var(--rotation)) scaleY(1.5);
}
}

/* Header/Navbar */
.header {
background-color: white;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
z-index: 1000;
transition: all 0.3s ease;
}

.header.scrolled {
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
padding: 15px 0;
}

.navbar-brand img {
transition: all 0.3s ease;
}

.nav-link {
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: var(--dark-color);
padding: 8px 15px !important;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
left: 15px;
bottom: 0;
width: 0;
height: 2px;
background-color: var(--primary-color);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
color: var(--primary-color);
}

.dropdown-menu {
border: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 10px 0;
margin-top: 10px;
}

.dropdown-item {
padding: 8px 20px;
font-family: 'Roboto', sans-serif;
color: var(--dark-color);
transition: all 0.2s ease;
}

.dropdown-item:hover {
background-color: rgba(62, 106, 176, 0.1);
color: var(--primary-color);
}

.btn-cta {
background-color: var(--primary-color);
color: white;
border-radius: 6px;
padding: 8px 20px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-cta:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(62, 106, 176, 0.3);
}

/* Hero Section */
.hero-section {
padding: 180px 0 100px;
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
color: white;
position: relative;
overflow: hidden;
}

.hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
color: white;
}

.hero-title span {
color: var(--accent-color);
position: relative;
}

.hero-title span::after {
content: '';
position: absolute;
left: 0;
bottom: 5px;
width: 100%;
height: 5px;
background-color: rgba(93, 194, 182, 0.3);
z-index: -1;
}

.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
}

.hero-buttons {
display: flex;
gap: 15px;
}

.hero-image {
position: relative;
z-index: 1;
}

.hero-image img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}

.floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
animation: float 15s linear infinite;
}

.shape-1 {
width: 100px;
height: 100px;
top: 10%;
left: 10%;
animation-delay: 0s;
animation-duration: 20s;
}

.shape-2 {
width: 150px;
height: 150px;
bottom: 15%;
right: 10%;
animation-delay: 5s;
animation-duration: 25s;
}

.shape-3 {
width: 70px;
height: 70px;
top: 60%;
left: 30%;
animation-delay: 10s;
animation-duration: 15s;
}

.wave-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}

.wave-divider svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 120px;
}

.wave-divider .shape-fill {
fill: var(--white-color);
}

.trust-badges {
display: flex;
align-items: center;
gap: 20px;
}

.trust-icon {
color: var(--accent-color);
font-size: 1.2rem;
}

/* Clients Section */
.clients-section {
background-color: var(--white-color);
border-bottom: 1px solid var(--light-color);
}

.client-item {
padding: 20px;
text-align: center;
opacity: 1;
transition: all 0.3s ease;
}

.client-item:hover {
opacity: 0.6;
transform: scale(1.05);
}

.client-item img {
filter: grayscale(100%);
transition: all 0.3s ease;
max-height: 60px;
width: 100px;
}

.client-item:hover img {
filter: grayscale(0%);
}

/* Services Section */
.services-section {
background-color: var(--white-color);
padding: 100px 0;
}

.service-card {
background-color: white;
border-radius: 12px;
padding: 30px;
height: 100%;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
z-index: 1;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
opacity: 0;
z-index: -1;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(62, 106, 176, 0.2);
}

.service-card:hover::before {
opacity: 1;
}

.service-card:hover .service-icon i,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
color: white;
}

.service-card:hover .service-link {
border-color: white;
}

.service-icon {
width: 70px;
height: 70px;
background-color: rgba(62, 106, 176, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.service-icon i {
font-size: 1.8rem;
color: var(--primary-color);
transition: all 0.3s ease;
}

.service-card h3 {
margin-bottom: 15px;
font-size: 1.5rem;
transition: all 0.3s ease;
}

.service-card p {
color: var(--gray-color);
margin-bottom: 20px;
transition: all 0.3s ease;
}

.service-link {
display: inline-flex;
align-items: center;
color: var(--primary-color);
font-weight: 500;
border-bottom: 2px solid rgba(62, 106, 176, 0.2);
padding-bottom: 5px;
transition: all 0.3s ease;
}

.service-link i {
margin-left: 5px;
font-size: 0.9rem;
transition: all 0.3s ease;
}

.service-link:hover {
border-color: var(--primary-color);
}

/* About Section */
.about-section {
padding: 100px 0;
background-color: #f9fbfc;
}

.about-image {
position: relative;
padding: 20px;
}

.about-image img {
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
position: absolute;
bottom: -20px;
right: -20px;
width: 120px;
height: 120px;
background-color: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: 0 10px 30px rgba(93, 194, 182, 0.4);
}

.badge-content {
text-align: center;
}

.badge-content .years {
font-size: 2rem;
font-weight: 700;
display: block;
line-height: 1;
}

.badge-content .text {
font-size: 0.9rem;
display: block;
}

.about-text {
color: var(--gray-color);
margin-bottom: 30px;
}

.feature-item {
display: flex;
margin-bottom: 20px;
}

.feature-icon {
width: 40px;
height: 40px;
background-color: rgba(62, 106, 176, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
color: var(--primary-color);
font-size: 1.2rem;
}

.feature-content h4 {
font-size: 1.2rem;
margin-bottom: 5px;
}

.feature-content p {
color: var(--gray-color);
font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
color: white;
}

.stat-item {
padding: 30px 15px;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
color: white;
font-family: 'Poppins', sans-serif;
}

.stat-text {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
padding: 100px 0;
background-color: #f9fbfc;
}

.testimonial-slider {
margin: 0 auto;
max-width: 1200px;
}

.testimonial-item {
padding: 0 15px;
}

.testimonial-content {
background-color: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
position: relative;
margin: 15px;
}

.quote-icon {
font-size: 2.5rem;
color: rgba(62, 106, 176, 0.1);
position: absolute;
top: 20px;
right: 30px;
}

.testimonial-text {
font-size: 1.1rem;
font-style: italic;
color: var(--dark-color);
margin-bottom: 25px;
position: relative;
z-index: 1;
}

.testimonial-author {
display: flex;
align-items: center;
}

.author-image {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
margin-right: 15px;
border: 3px solid var(--primary-light);
}

.author-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info h5 {
font-size: 1.1rem;
margin-bottom: 5px;
color: var(--primary-dark);
}

.author-info span {
font-size: 0.9rem;
color: var(--gray-color);
}

/* CTA Section */
.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('assets/images/pattern.png');
background-size: cover;
opacity: 0.05;
z-index: 0;
}

.cta-content {
position: relative;
z-index: 1;
}

.cta-title {
font-size: 2.5rem;
margin-bottom: 20px;
color: white;
}

.cta-text {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
opacity: 0.9;
}

.cta-buttons {
display: flex;
justify-content: center;
gap: 15px;
}

/* Blog Section */
.blog-section {
padding: 100px 0;
background-color: var(--white-color);
}

.blog-card {
background-color: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
height: 100%;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
position: relative;
overflow: hidden;
}

.blog-image img {
width: 100%;
height: 220px;
object-fit: cover;
transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
transform: scale(1.05);
}

.blog-date {
position: absolute;
top: 15px;
right: 15px;
background-color: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
}

.blog-content {
padding: 25px;
}

.blog-title {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--primary-dark);
}

.blog-excerpt {
color: var(--gray-color);
margin-bottom: 20px;
font-size: 0.95rem;
}

.blog-link {
display: inline-flex;
align-items: center;
color: var(--primary-color);
font-weight: 500;
transition: all 0.3s ease;
}

.blog-link i {
margin-left: 5px;
font-size: 0.9rem;
transition: all 0.3s ease;
}

.blog-link:hover {
color: var(--primary-dark);
}

.blog-link:hover i {
transform: translateX(3px);
}

/* Contact Section */
.contact-section {
padding: 100px 0;
background-color: #f9fbfc;
}

.contact-info {
max-width: 500px;
}

.contact-text {
color: var(--gray-color);
margin-bottom: 30px;
}

.contact-item {
display: flex;
margin-bottom: 25px;
}

.contact-icon {
width: 50px;
height: 50px;
background-color: rgba(62, 106, 176, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
color: var(--primary-color);
font-size: 1.2rem;
}

.contact-content h5 {
font-size: 1.1rem;
margin-bottom: 5px;
color: var(--primary-dark);
}

.contact-content p {
color: var(--gray-color);
font-size: 0.95rem;
}

.contact-form {
background-color: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
font-size: 1.5rem;
margin-bottom: 25px;
color: var(--primary-dark);
position: relative;
padding-bottom: 10px;
}

.form-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background-color: var(--primary-color);
}

.form-control, .form-select {
padding: 12px 15px;
border-radius: 8px;
border: 1px solid var(--light-color);
font-size: 0.95rem;
transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(62, 106, 176, 0.25);
}

textarea.form-control {
min-height: 150px;
resize: none;
}

/* Map Section */
.map-section {
position: relative;
}

.map-container {
width: 100%;
height: 400px;
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
}

/* Footer */
.footer {
background-color: var(--primary-dark);
color: white;
position: relative;
}

.footer-top {
padding: 80px 0 50px;
}

.footer-logo img {
margin-bottom: 20px;
}

.about-text {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
}

.social-links {
display: flex;
gap: 15px;
}

.social-links a {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
transition: all 0.3s ease;
}

.social-links a:hover {
background-color: var(--primary-color);
transform: translateY(-3px);
}

.widget-title {
font-size: 1.3rem;
margin-bottom: 25px;
color: white;
position: relative;
padding-bottom: 10px;
}

.widget-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 2px;
background-color: var(--primary-color);
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: white;
transform: translateX(5px);
}

.newsletter-text {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
}

.newsletter-form .input-group {
border-radius: 8px;
overflow: hidden;
}

.newsletter-form .form-control {
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: white;
padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
padding: 0 20px;
background-color: var(--primary-color);
color: white;
border: none;
}

.newsletter-form .btn:hover {
background-color: var(--accent-color);
}

.footer-bottom {
background-color: rgba(0, 0, 0, 0.1);
padding: 20px 0;
}

.right-text {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
margin: 0;
}

.footer-bottom-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 20px;
}

.footer-bottom-links a {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
color: white;
}

/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background-color: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 999;
}

.back-to-top.active {
opacity: 1;
visibility: visible;
}

.back-to-top:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
.hero-title {
font-size: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
}
}
@media (max-width: 991.98px) {
    .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    }
    
    
    .nav-link::after {
        display: none;
    }
    
    .hero-section {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
    }
    }
    
    @media (max-width: 767.98px) {
    .hero-title {
    font-size: 2.2rem;
    }
    
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .Copyright-text, .footer-bottom-links {
        text-align: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    }
    
    @media (max-width: 575.98px) {
    .hero-title {
    font-size: 1.8rem;
    }
    
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 0;
    }
    
    .badge-content .years {
        font-size: 1.5rem;
    }
    
    .badge-content .text {
        font-size: 0.8rem;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    }
/* Working Hours Styles */
.hours-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    max-width: 250px;
}

.hours-day {
    font-weight: 500;
    color: var(--dark-color);
}

.hours-time {
    color: var(--gray-color);
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .hours-row {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-content {
        width: 100%;
    }
    
    .hours-row {
        justify-content: flex-start;
        gap: 15px;
    }
}
