/* General Styles */
:root {
    --primary-color: #3f51b5;
    --secondary-color: #ff9800;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --gray-color: #757575;
    --white-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #303f9f;
    border-color: #303f9f;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-apply {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-apply:hover {
    background-color: #f57c00;
    color: var(--white-color);
}

.section-title {
    margin-bottom: 2.5rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

/* Header Styles */
.site-header {
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    
}

.contact-info li {
    margin-right: 20px;
    font-size: 14px;
}

.contact-info li i {
    margin-right: 5px;
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.social-links li {
    margin-left: 15px;
}

.social-links li a {
    color: var(--white-color);
    font-size: 14px;
}

.social-links li a:hover {
    color: var(--secondary-color);
}

/* Transparent Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
    margin-right: 10px;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white-color);
}

.navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

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

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

.dropdown-menu {
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(63, 81, 181, 0.1);
    color: var(--primary-color);
}




/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white-color);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p.lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-box {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    margin-bottom: 20px;
}

.feature-box .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    transition: all 0.5s ease;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin-bottom: 25px;
}

.about-features .feature {
    display: flex;
    align-items: center;
}

.about-features .feature i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Counter Section with Parallax */
.counter-section {
    padding: 80px 0;
    position: relative;
    background: url('../images/counter-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white-color);
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.counter-section .container {
    position: relative;
    z-index: 1;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-box .icon {
    margin-bottom: 15px;
}

.counter-box .icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--white-color);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding-top: 70px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    margin-bottom: 0;
}

.copyright p i {
    color: #e91e63;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    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(--secondary-color);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
    }

    .nav-buttons {
        margin-top: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p.lead {
        font-size: 1.2rem;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .counter-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        padding: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand span {
        font-size: 1.2rem;
    }

    .navbar-brand .logo {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p.lead {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 20px;
    }

    .feature-box {
        padding: 20px;
    }

    .counter-box h3 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info p {
        justify-content: center;
    }
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 1s ease forwards;
}

/* Slick Carousel Custom Styles */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 20px;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--secondary-color);
}

/* AOS Animation Custom Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Additional Page-Specific Styles */

/* About Page */
.page-header {
    position: relative;
    height: 300px;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Page */
.contact-form {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    height: 100%;
}

.contact-info-box h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    margin-right: 15px;
    min-width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    height: 50px;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

textarea.form-control {
    height: 150px;
    border-radius: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 50px;
}
/* -----------------Contact CSS Start-------------------------*/
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}
.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.contact-card:hover {
    transform: translateY(-10px);
}
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.map-container:hover {
    transform: scale(1.05);
}
.icon {
    color: #ff7b00;
    margin-right: 10px;
    font-size: 1.2rem;
}
.btn-warning {
    background-color: #ff7b00;
    border: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}
.btn-warning:hover {
    background-color: #ff9c3f;
    transform: translateY(-2px);
}

textarea.form-control {
    min-height: 174px !important; /* Force a minimum height */
     /* Allow dynamic resizing */
    resize: vertical; /* Enable user resizing vertically */
    font-size: 14px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid #ced4da;
    transition: box-shadow 0.3s ease;
  }

  .form-control{
    height: 52px;
    background-color: #fff;
    font-size: 14px;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid;
    transition: box-shadow 0.3s ease;
  }

/*--------Contact CSS End-------*/

