/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Base Font Style */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Existing styles with font updates */
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.client-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.service-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Very top header text */
.very-top-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
/* Very top header styles */
.very-top-header {
    background-color: #e9ecef;
    transition: all 0.3s ease;
}

.very-top-header span {
    color: #333;
    transition: all 0.3s ease;
}

.very-top-header span:hover {
    color: #1a237e;
}

.very-top-header a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.very-top-header a:hover {
    color: #1a237e;
}
.navbar {
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.sticky-top {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.sticky-top .logo {
    height: 40px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: #007bff;
}

.hero {
    margin-top: -1px;
    position: relative;
}

.hero img {
    max-height: 600px;
    object-fit: cover;
}

.hero-content {
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add this to your existing hero-title class */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Social Media Icons */
.very-top-header a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.very-top-header a:hover {
    color: #007bff;
}


/* Section Title Styling */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-title {
    color: #1a237e;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.title-line {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    flex-grow: 1;
    max-width: 100px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Animation Classes */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .title-line {
        max-width: 50px;
    }
}


/* Testimonial Section */
.testimonial-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-content {
    padding: 30px 20px;
}

.client-name {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-indicators {
    bottom: -40px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.testimonial-indicators button.active {
    background-color: #fff;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Disable parallax effect on mobile */
@media (max-width: 768px) {
    .testimonial-section {
        background-attachment: scroll;
    }
}


/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #e8f0fe;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-title {
    color: #1a73e8;
}

.service-card:hover .service-text {
    color: #2c3e50;
}

.service-title {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
}

.service-icon {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #1a73e8;
}


/* Contact Section */
.contact-section {
    background-color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #1a237e;
    margin-top: 5px;
}

.info-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-form .form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

.contact-form textarea {
    resize: none;
}

.contact-btn {
    background-color: #1a237e;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #1a73e8;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-item {
        margin-bottom: 20px;
    }
    .contact-form {
        margin-top: 20px;
    }
}


/* Footer Section */
.footer {
    background-color: #1a237e;
    color: #fff;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-list i {
    margin-top: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #90caf9;
    padding-left: 5px;
}

.footer-map {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-info, .footer-links {
        margin-bottom: 30px;
    }
}


/* Floating Buttons */
.float-btn {
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-btn {
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.whatsapp-btn i {
    font-size: 2rem;
    margin: 0 16px;
}

.float-btn-text {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    width: 160px;
    border-radius: 30px;
    color: white;
}

.whatsapp-btn:hover .float-btn-text {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top-btn {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.light {
    background-color: #1a73e8;
    color: white;
}

.scroll-top-btn.dark {
    background-color: #1a237e;
    color: white;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}