:root {
    --primary-color: #2c3e50;
    --accent-color: #FC7013;
    --secondary-color: #890F91;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Top Contact Bar */
.top-bar {
    background-color: #1f2933;
    color: #f1f5f9;
    font-size: 0.85rem;
}

.top-bar a {
    color: #e2e8f0;
}

.top-bar a:hover {
    text-decoration: underline;
}

.top-bar .dropdown-menu {
    font-size: 0.85rem;
}

.top-bar .dropdown-menu {
    background-color: #1f2933;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.top-bar .dropdown-item {
    color: #f1f5f9;
}

.top-bar .dropdown-item:hover,
.top-bar .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.top-bar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.top-bar .dropdown-item.text-danger {
    color: #f87171 !important;
}

.top-bar .dropdown-item.text-danger:hover {
    background-color: rgba(248, 113, 113, 0.15);
}

/* Navbar */
.navbar-custom {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom.fixed-top {
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.btn-custom {
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(252, 112, 19, 0.3);
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(252, 112, 19, 0.4);
    color: white;
}

/* Carousel */
.hero-carousel {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6));
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.carousel-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s ease-out 0.7s forwards;
}

.carousel-btn {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.9s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Carousel Controls  */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background: var(--accent-color);
    transform: scale(1.3);
}




/* Smooth scrolling offset for fixed navbar */
.scroll-offset {
    padding-top: 80px;
    margin-top: -80px;
}

/* Logo styling */
.logo img {
    height: 50px;
    width: auto;
}

.first-section.process {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);


}

.container {
    /* width: 100vw; */
    max-width: 1200px;
    margin: 0 auto;

}

/* .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        } */




.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: white;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transition: rotate 0.3s ease;
    transform: rotate(360deg)
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.feature-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #5a4bcf;
    transform: translateX(5px);
}



.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: height 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.process-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(252, 112, 19, 0.3);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 30px rgba(252, 112, 19, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.process-card:hover .card-image {
    transform: translateY(-5px);
}

.process-card:hover .card-image img {
    transform: scale(1.05);
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-button,
.cta-button.quote-trigger {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(252, 112, 19, 0.3);
}

.cta-button.quote-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(252, 112, 19, 0.4);
}


/* .cta-button.quote-trigger {
            background: var(--accent-color);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(252, 112, 19, 0.3);
        }

        .cta-button.quote-trigger:hover {
            background: #e5620f;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(252, 112, 19, 0.4);
        } */

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* position: relative; */
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 5px;
}

.modal-body input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-body input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(252, 112, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    border-color: var(--accent-color);
    background: rgba(252, 112, 19, 0.05);
}

.service-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.service-checkbox.selected {
    border-color: var(--accent-color);
    background: rgba(252, 112, 19, 0.1);
}

.priority-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.priority-option {
    padding: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.priority-option:hover {
    border-color: var(--accent-color);
}

.priority-option.selected {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.priority-option.low.selected {
    background: #28a745;
    border-color: #28a745;
}

.priority-option.medium.selected {
    background: #ffc107;
    border-color: #ffc107;
    color: var(--primary-color);
}

.priority-option.high.selected {
    background: #dc3545;
    border-color: #dc3545;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btnn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btnn.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 8px 25px rgba(252, 112, 19, 0.3);
}

.btnn.btn-primary:hover {
    background: #e5620f;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(252, 112, 19, 0.4);
}

.btnn.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btnn.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.success-message {
    text-align: center;
    padding: 40px;
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-text {
    color: var(--text-light);
    line-height: 1.6;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-badge {
    opacity: 1;
}



.star-rating {
    color: #ffc107;
    font-size: 1rem;
}

.star-rating .fa-star {
    margin-right: 5px;
}

.stats-row {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: white;
}


/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); */
    pointer-events: none;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-subtitle {
    color: #bdc3c7;
}

.contact-info {
    padding: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s infinite;
}

.contact-details h5 {
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 5px;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.contact-details small {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.expertise-badges {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.expertise-badges h6 {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 112, 19, 0.15);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 112, 19, 0.3);
}

.floating-contact-icon {
    animation: contactFloat 3s ease-in-out infinite;
}

@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}





/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}








/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Subtle background texture */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 25%, rgba(252, 112, 19, 0.03) 25%, rgba(252, 112, 19, 0.03) 50%, transparent 50%, transparent 75%, rgba(137, 15, 145, 0.03) 75%);
    background-size: 40px 40px;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.company-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.logo-image {
    width: 80px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.company-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.6s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section ul li:hover::before {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a i {
    font-size: 14px;
    width: 16px;
    color: var(--accent-color);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-grid .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-grid .social-link {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-grid .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-grid .social-link:hover::before {
    left: 100%;
}

.footer-grid .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(252, 112, 19, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
    animation: fadeIn 1s ease 1.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.footer-bottom .highlight {
    color: var(--accent-color);
    font-weight: 600;
}









/* Responsive Design */
@media (max-width: 768px) {


    .carousel-title {
        font-size: 2.5rem;
    }

    .carousel-subtitle {
        font-size: 1.1rem;
    }

    .top-bar {
        font-size: 12px;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
    }

    .navbar-nav .nav-link {

        width: fit-content;
        margin: 10px 0;
    }

    .navbar-nav .nav-link::before {
        left: 0;

        transform: none;
    }

    .btn-custom {
        border-radius: 40px;
        font-weight: 400;
        box-shadow: 0 2px 13px rgba(252, 112, 19, 0.3);

    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        padding: 2rem 1rem 1rem;
    }

    .footer-grid .social-links {
        justify-content: center;
    }

    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 25px 20px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-selection {
        grid-template-columns: 1fr;
    }

    .priority-selector {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}













/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}