:root {
    --primary: #2A5C82;
    --secondary: #F5B335;
    --dark: #1A2930;
    --light: #F5F7FA;
}

body {
    font-family: 'Inter', sans-serif;
}

.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    /* background: linear-gradient(135deg, #1e293b, #0f172a); */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar-brand {
    position: relative;
    overflow: hidden;
}

.logo-img {
    /* background-color: #fff; */
    height: 45px;
    /* filter: brightness(0) invert(1); */
    /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1);
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.nav-link:hover .nav-glow,
.nav-link.active .nav-glow {
    width: 180px;
    height: 180px;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link.active {
    color: #60a5fa;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 50px;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #1e293b;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .navbar-nav {
        gap: 1rem;
    }

    .cta-button {
        margin-top: 1rem;
        justify-content: center;
    }
}



/* Hero Section Styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.hero-section h1 {
    background: linear-gradient(90deg, #007bff, #28a745);
    /* Gradient color for title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 91, 187, 0.4);
}

.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-section .text-gradient {
    background: linear-gradient(90deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .shadow-lg {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.3);
}

/* Spacing and Alignment */
.hero-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
}

.hero-section .h5 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .btn-primary {
        width: 100%;
    }

    .hero-section img {
        margin-top: 2rem;
    }
}



@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-toggler {
        z-index: 1001;
    }
}

.navbar-toggler {
    background-color: #fff !important;

}

.navbar-brand img {
    height: 90px;
}




/* contact section  */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-section .row {
    align-items: stretch;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control option {
    padding: 0.5rem;
    background: white;
    color: #333;
}

.form-floating label {
    padding: 1rem;
    color: #64748b;
    font-weight: 500;
    pointer-events: none;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: #3b82f6;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.submit-button:active {
    transform: translateY(0px);
}

.submit-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
    line-height: 1.2;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.info-content p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.info-content p a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content p a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-section .row {
        align-items: flex-start;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .info-title {
        text-align: center;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


.site-footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e2e8f0;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-services li:hover {
    transform: translateX(5px);
    color: #60a5fa;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info i {
    color: #3b82f6;
    width: 20px;
    margin-right: 10px;
}

.testimonials-slider {
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial .author {
    color: #60a5fa;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
    color: #fff;
}

.copyright,
.credits {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.credits {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .credits {
        text-align: center;
    }
}

/* Modern Color Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --card-bg: #ffffff;
}

/* Services Section Styles */
.services-section {
    background-color: var(--background-color);
    padding: 6rem 0;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Box */
.service-box {
    background: var(--card-bg);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

/* Image */
.image-fluid {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

/* Service Title */
.service-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
    color: var(--text-color);
}

/* Service Text */
.service-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Hover Effects */
.animation-hover {
    transition: transform 0.3s ease;
}

.animation-hover:hover {
    transform: translateY(-10px);
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-box:hover .service-icon {
    transform: rotate(360deg);
}

/* Hover Overlay Effect */
.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .service-hover-effect {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Header Styles */
.section-header {
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(90deg, #ff6f61, #ffd700, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Grid Layout */
.row.g-4 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tabs Navigation */
.nav-pills .nav-link {
    color: #555;
    background: #e9ecef;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-pills .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, #ff6f61, #ffd700);
}

.nav-pills .nav-link:hover {
    background: linear-gradient(90deg, #ff9e85, #ffee85);
}




#banner-section {
    background-color: #f8f9fa;
    padding-top: 10px;
    padding-bottom: 10px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff6f61, #ffd700, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-box i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    #banner-section {
        text-align: center;
    }

    #banner-section .row {
        flex-direction: column-reverse;
    }

    #banner-section img {
        margin-bottom: 1.5rem;
    }
}


#google_translate_element {
    text-align: right;
    /* Aligns to the right of the page */
    margin: 10px;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
    /* Hides the top Google Translate banner */
}


/* Root Variables for Consistent Colors */
:root {
    --primary-color: #1d4ed8;
    --secondary-color: #2563eb;
    --text-color: #374151;
    --background-color: #f9f9f9;
    --card-background: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

/* Container and Grid System */
.container-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--background-color);
}

.responsive-row {
    flex: 1 1 calc(33.33% - 2rem);
    /* 3 columns layout */
    max-width: calc(33.33% - 2rem);
}

@media (max-width: 768px) {
    .responsive-row {
        flex: 1 1 calc(50% - 2rem);
        /* 2 columns layout for tablets */
        max-width: calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .responsive-row {
        flex: 1 1 100%;
        /* 1 column layout for mobile */
        max-width: 100%;
    }
}

/* Service Box Styles */
.box-service {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px var(--shadow-light);
}

.box-service:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.image-service {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Text Styling */
.heading-service {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.text-service {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Hover Effect */
.hover-effect:hover {
    transform: translateY(-10px);
}

/* Additional Utility Classes */
.hidden {
    display: none;
}

.center-text {
    text-align: center;
}


.tab-content .tab-pane {
    margin-top: 20px;
}

.image-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-wrapper:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.95rem;
    color: #6c757d;
}




.contact-info-items .info-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.contact-info-items .info-content p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #555;
}

.contact-info-items .info-content p a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.contact-info-items .info-content p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-info-card .info-icon i {
    margin-right: 5px;
}


.map-section .map-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
    z-index: 99999;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


.spoedservice{
    color: red;
    font-weight: 700;
    font-size: 30px;
}

/* WhatsApp Service Button */
.btn-whatsapp-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.btn-whatsapp-service:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-whatsapp-service i {
    font-size: 1.2rem;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-text {
    flex: 1;
    margin-bottom: 15px;
}