/*Main Css */
@import '@fortawesome/fontawesome-free/css/all.min.css';
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #232160;
    --seconday-color: #1a1a1a;
    --theme-color: #3f97cf;
    --purple-color: #c0d0f4;
    --body-font-family: 'Poppins', sans-serif;
    --heading-family: 'Mont';
    --section-pad: 5rem 0;
}

body {
    padding: 0;
    margin: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* Navbar */
/* General Styles */
header {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container-unique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* Top Header */
.top-header-unique {
    background-color: #333;
    padding: 10px 0;
}

.top-header-cta-unique {
    list-style: none;
    display: flex;
    margin: 0 auto;
    align-items: center;
    gap: 2rem;
}

.top-header-cta-unique li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none !important;
}

/* Main Header */
.main-header-unique {
    padding: 0.5rem 0;
}

.logo-unique img {
    max-height: 5rem;
    border-radius: 100%;
}

.desktop-nav-unique {
    display: flex;
    align-items: center;
}

.menu-unique {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-unique li a {
    text-transform: uppercase;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;

}

.menu-unique li a:hover,
.menu-unique li.active a {
    color: #3f97cf;
}

.theme-btn-unique {
    background: linear-gradient(90deg, #009dff, #000);
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s;
    text-decoration: none;
}

.theme-btn-unique:hover {
    color: #277aad;
    background: #fff;
    border: 1px solid black;
}

/* Dropdown Menu */
.dropdown-unique {
    position: relative;
}

.sub-menu-unique {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    width: 20rem;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-unique:hover .sub-menu-unique {
    display: block;
}

.sub-menu-unique li a {
    padding: 1rem 3rem;
    color: #333;
    display: block;
    border-bottom: 1px solid black;
    text-decoration: none !important;
}
.sub-menu-unique li:last-child a{
    border-bottom: none;
}

.sub-menu-unique li a:hover {
    background-color: #3f97cf;
    color: #fff;
}

/* Dropdown Menu */
.dropdown-unique {
    position: relative;
}

.haed-menu-unique {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    width: 20rem;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-unique:hover .haed-menu-unique {
    display: block;
}

.haed-menu-unique li a {
    /* padding: 0.5rem 3rem; */
    padding-bottom: 0.3rem;
    text-align: center;
    color: #333;
    display: block;
    /* border-bottom: 1px solid black; */
    text-decoration: none !important;
}
.haed-menu-unique li:last-child a{
    border-bottom: none;
}

.haed-menu-unique li a:hover {
    background-color: #3f97cf;
    color: #fff;
}


/* Mobile Styles */
.mobile-header-unique {
    display: none;
}

.menu-toggle-unique {
    width: 30px;
    cursor: pointer;
}

.menu-toggle-unique span {
    display: block;
    height: 4px;
    background-color: #3f97cf;
    margin-bottom: 5px;
}

/* Desktop Navbar */
.desktop-nav-unique {
    display: flex;
    justify-content: space-around;
    /* Center the entire nav horizontally */
    align-items: center;
    width: 100%;
    /* Ensure it takes up the full width of the container */
}

.menu-unique {
    list-style: none;
    display: flex;
    justify-content: center;
    /* Center the items within the nav */
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    /* Ensure it stays centered */
}

#mobile-nav-unique {
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: absolute;
    top: 21%;
    /* Align just below the header */
    width: 50%;
    right: 0;
    z-index: 999;
}

.mobile-menu-unique li {
    padding: 0.5rem 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .desktop-nav-unique {
        display: none;
    }

    .mobile-header-unique .menu-toggle-unique.open+#mobile-nav-unique {
        display: block;
    }

    .mobile-header-unique {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    #mobile-nav-unique {
        display: none;
    }

    .mobile-menu-unique {
        list-style: none;
        flex-direction: column;
        /* gap: 20px; */
    }

    .mobile-menu-unique li a {
        color: #333;
        padding: 0.5rem 0;
        text-decoration: none !important;
    }

    .mobile-menu-unique li a:hover {
        color: #fff;
    }
}

@media (max-width:574px) {
    #mobile-nav-unique {
        display: none;
        width: 100%;
    }

}

@media (max-width:426px) {
    .top-header-cta-unique {
        flex-wrap: wrap;
        gap: 0;
    }

    #mobile-nav-unique {
        display: none;
        width: 100%;
        top: 25%;
    }
}
body {
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}
/* Additional media query for responsiveness (optional) */
@media (max-width: 768px) {
    .menu-unique {
        flex-direction: column; /* Stack menu items on small screens */
        align-items: center; /* Center items */
    }
    .theme-btn-unique {
        margin-left: 0; /* Reset margin for mobile */
    }
}



/* Additional media query for responsiveness (optional) */
@media (max-width: 768px) {
    .menu-unique {
        flex-direction: column; /* Stack menu items on small screens */
        align-items: center; /* Center items */
    }
    .theme-btn-unique {
        margin-left: 0; /* Reset margin for mobile */
    }
}


/* JavaScript scroll effect */


/* Dropdown Menu */
.dropdown-unique {
    position: relative;
}

.sub-menu-unique {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    width: 20rem;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-unique:hover .sub-menu-unique {
    display: block;
}

.sub-menu-unique li a {
    padding: 1rem 3rem;
    color: #333;
    display: block;
    border-bottom: 1px solid black;
    text-decoration: none !important;
}
.sub-menu-unique li:last-child a{
    border-bottom: none;
}

.sub-menu-unique li a:hover {
    background-color: #3f97cf;
    color: #fff;
}

/* Dropdown Menu */
.dropdown-unique {
    position: relative;
}

.haed-menu-unique {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    width: 20rem;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-unique:hover .haed-menu-unique {
    display: block;
}

.haed-menu-unique li a {
    /* padding: 0.5rem 3rem; */
    padding-bottom: 0.3rem;
    text-align: center;
    color: #333;
    display: block;
    /* border-bottom: 1px solid black; */
    text-decoration: none !important;
}
.haed-menu-unique li:last-child a{
    border-bottom: none;
}

.haed-menu-unique li a:hover {
    background-color: #3f97cf;
    color: #fff;
}


/* Mobile Styles */
.mobile-header-unique {
    display: none;
}

.menu-toggle-unique {
    width: 30px;
    cursor: pointer;
}

.menu-toggle-unique span {
    display: block;
    height: 4px;
    background-color: #3f97cf;
    margin-bottom: 5px;
}

/* Desktop Navbar */
.desktop-nav-unique {
    display: flex;
    justify-content: space-around;
    /* Center the entire nav horizontally */
    align-items: center;
    width: 100%;
    /* Ensure it takes up the full width of the container */
}

.menu-unique {
    list-style: none;
    display: flex;
    justify-content: center;
    /* Center the items within the nav */
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    /* Ensure it stays centered */
}

#mobile-nav-unique {
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: absolute;
    top: 21%;
    /* Align just below the header */
    width: 50%;
    right: 0;
    z-index: 999;
}

.mobile-menu-unique li {
    padding: 0.5rem 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .desktop-nav-unique {
        display: none;
    }

    .mobile-header-unique .menu-toggle-unique.open+#mobile-nav-unique {
        display: block;
    }

    .mobile-header-unique {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    #mobile-nav-unique {
        display: none;
    }

    .mobile-menu-unique {
        list-style: none;
        flex-direction: column;
        /* gap: 20px; */
    }

    .mobile-menu-unique li a {
        color: #333;
        padding: 0.5rem 0;
        text-decoration: none !important;
    }

    .mobile-menu-unique li a:hover {
        color: #fff;
    }
}

@media (max-width:574px) {
    #mobile-nav-unique {
        display: none;
        width: 100%;
    }

}

@media (max-width:426px) {
    .top-header-cta-unique {
        flex-wrap: wrap;
        gap: 0;
    }

    #mobile-nav-unique {
        display: none;
        width: 100%;
        top: 25%;
    }
}
body {
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}
/* Banner */
.mainBanner {
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Fallback in case the image doesn't load */
}

/* Blurred background image using a pseudo-element */
.mainBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner/bg-about.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(1px); /* Blur effect applied to the background image */
    opacity: 0.8; /* Adjusts the visibility of the image */
    z-index: 0; /* Places the background behind the content */
    animation: backgroundAnimation 15s ease infinite;
}

/* Overlay for better readability */
.mainBanner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    z-index: 1; /* Ensures the overlay sits above the background but below the content */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Keeps the content above the background and overlay */
}

.content p {
    color: #fdf9f9;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.25rem;
}

.theme-btn {
    background: #009dff;
    padding: 15px 30px;
    border-radius: 25px;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


/* About */
.about-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.main-heading {
    font-size: 2.5rem;
    color: #1D3557;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-content p {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 20px;
}

.about-list {
    list-style-type: none;
    padding: 0;
}

.about-list li {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: #FFC107;
    margin-right: 10px;
}

.btn-outline-theme {
    border: 2px solid #3f97cf;
    color: #3f97cf;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-theme:hover {
    background-color: #3f97cf;
    color: white;
}

.about-images {
    position: relative;
}

.image-main {
    margin-bottom: 20px;
}

.image-thumbnails {
    display: flex;
    justify-content: space-between;
}

.image-thumbnails figure {
    width: 48%;
}

.about-images img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Our Services Section */
.our-services-section {
    padding: 60px 0;
    background-color: #f4f3f3;
}

.sub-head {
    font-size: 1.5rem;
    color: #3f97cf;
    text-transform: uppercase;
}

.main-head {
    font-size: 2.5rem;
    color: #5e5a5a !important;
    font-weight: bold;
    margin-bottom: 40px;
}

.service-card-custom {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card-custom:hover {
    transform: translateY(-10px);
}

.icon img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.service-card-custom h4 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
}

.service-card-custom p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.btn-custom {
    padding: 10px 20px;
    background-color: #3f97cf;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-custom:hover {
    background-color: #277aad;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-head {
        font-size: 2rem;
    }

    .service-card-custom {
        padding: 20px;
    }
    .our-services-section{
        overflow: hidden;
    }
}


/* Expertise Section */
.expertise-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    color: #fff;
}

.expertise-section p {
    color: #000000;
}

.sub-head {
    font-size: 1.5rem;
    color: #3f97cf;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-head {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #8b8b8c;
}

.exp-card-custom {
    background-color: #3f97cf;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    color: rgb(255, 255, 255);
}

.exp-card-custom:hover {
    transform: translateY(-10px);
}

.exp-card-custom h4 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.exp-card-custom h6 {
    font-size: 1rem;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-head {
        font-size: 2rem;
    }

    .exp-card-custom {
        padding: 20px;
    }
}

.elem-exp {
    position: absolute;
    bottom: -50px;
    right: 20%;
    z-index: -1;
}

.elem-exp img {
    width: 300px;
    height: auto;
}


    /* Pricing Section */
   /* Pricing Plan Section */
.pricing-plan-section {
    padding: 50px 0;
    background-color: #f4f3f3;
    color: black;
}

.row.g-4 {
    display: flex; /* Make the row a flex container */
    justify-content: space-between; /* Space out the columns evenly */
}

/* Set equal height for the price cards */
.price-wrap-custom {
    flex: 1; /* Allow each card to grow equally */
    display: flex; /* Make each card a flex container */
    flex-direction: column; /* Align children vertically */
    justify-content: space-between; /* Space out children evenly */
    height: 100%; /* Ensure the card takes the full height of its container */
    margin: 0 10px; /* Optional: Add margin for spacing between cards */
    background-color: #f8f8f8; /* Card background */
    border-radius: 10px; /* Rounded corners */
    padding: 30px; /* Padding inside the card */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
    border: 2px solid #3f97cf; /* Border color */
}

.price-wrap-custom:hover {
    transform: translateY(-10px); /* Raise card on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.sub-head {
    font-size: 1.5rem;
    color: #3f97cf;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-head {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.price-title h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: black;
}

.price-title p {
    margin-bottom: 20px;
    color: gray;
}

.price-rate {
    margin-bottom: 20px;
    background-color: #3f97cf; /* Background color for price */
    border-radius: 1.2rem; /* Rounded corners */
    text-align: center;
    color: #fff; /* Text color */
    padding: 1rem 0; /* Padding inside the rate box */
}

.price-rate h6 {
    font-size: 2.5rem; /* Font size for price */
    color: rgb(255, 255, 255); /* White color for text */
}

.price-features {
    margin-bottom: 20px;
}

.price-features ul {
    list-style-type: none; /* No bullet points */
    padding: 0; /* Remove padding */
}

.price-features li {
    margin: 10px 0; /* Spacing between features */
    color: gray; /* Color for feature text */
}

.theme-btn {
    background-color: white; /* Button background */
    color: #0088ff; /* Button text color */
    padding: 12px 20px; /* Button padding */
    border: 2px solid #0088ff; /* Button border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.theme-btn:hover {
    background-color: #3f97cf; /* Change background on hover */
    color: white; /* Change text color on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .main-head {
        font-size: 2rem;
    }

    .price-wrap-custom {
        padding: 20px;
    }
}


/* Testimonial */
.testimonial-sec {
    margin-top: 2rem;
}

.testimonials-wrap {
    padding: 2.5rem 0;
}

.heading-section {
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    display: block;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.heading-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.testimonial-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
    width: calc(100% - 2rem);
}

/* User image styling */
.user-img {
    margin-right: 1rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-size: cover;
    flex-shrink: 0;
}

.text {
    flex-grow: 1;
}

.carousel-testimonial .item {
    padding: 0;
}

.quote {
    color: #2e9da1;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.name {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.position {
    color: #adadad;
    font-size: 1rem;
}

.carousel-testimonial .owl-nav {
    text-align: center;
    margin-top: 1rem;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
    padding: 0 0.75rem !important;
}

.carousel-testimonial .owl-nav button {
    outline: none;
    padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-box {
        flex-direction: column; /* Stack items vertically on medium screens */
        align-items: flex-start; /* Align items to the start */
        text-align: left;
    }

    .user-img {
        margin-bottom: 1rem; /* Add margin below image on smaller screens */
        width: 4rem; /* Decrease image size */
        height: 4rem;
    }

    .quote {
        font-size: 1.25rem; /* Adjust font size for quote */
    }
}

@media (max-width: 768px) {
    .heading-section h2 {
        font-size: 1.75rem; /* Smaller heading on smaller screens */
    }

    .sub-heading {
        font-size: 1.2rem; /* Smaller sub-heading */
    }

    .testimonial-box {
        padding: 1.5rem; /* Reduce padding */
        width: 100%; /* Ensure full width */
    }

    .quote {
        font-size: 1.1rem; /* Smaller quote */
    }

    .name {
        font-size: 1rem; /* Smaller name font */
    }

    .position {
        font-size: 0.9rem; /* Smaller position font */
    }

    .user-img {
        width: 4rem; /* Further reduce user image size */
        height: 4rem; /* Further reduce user image size */
        margin-right: 0; /* Reset right margin */
        margin-bottom: 1rem; /* Margin below image */
    }

    .testimonial-box {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align for better appearance */
        text-align: center; /* Center text */
    }
}

@media (max-width: 576px) {
    .heading-section h2 {
        font-size: 1.5rem; /* Further reduce heading size */
    }

    .sub-heading {
        font-size: 1rem; /* Further reduce sub-heading size */
    }

    .testimonial-box {
        padding: 1rem; /* Further reduce padding */
    }

    .quote {
        font-size: 1rem; /* Further reduce quote size */
    }

    .user-img {
        width: 3rem; /* Further reduce user image size */
        height: 3rem; /* Further reduce user image size */
    }
}


/* Contact */
/* Contact Section Styles */
.contact-section-modern {
    padding: 5rem 0;
    /* Maintain your original padding for larger screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #f4f3f3;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-wrapper-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    /* No need for relative positioning here */
}

.contact-content-modern h2.main-head-modern {
    font-size: 2.8rem;
    line-height: 1.2;
    padding-right: 0.625rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s;
}

.contact-content-modern h6.sub-head-modern {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInUp 0.5s;
}

.theme-btn-modern {
    background: linear-gradient(90deg, #3f97cf, #000);
    padding: 15px 30px;
    color: #ffffff;
    border-radius: 30px;
    font-size: 1.1rem;
    text-align: center;
    display: inline-block;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.theme-btn-modern:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.contact-image-modern {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section-modern {
        padding: 4rem 0;
    }

    .contact-content-modern h2.main-head-modern {
        font-size: 2.2rem;
    }

    .theme-btn-modern {
        padding: 10px 20px;
        /* Adjust button padding for smaller screens */
        font-size: 1rem;
        /* Smaller font size for the button */
    }

    .contact-wrapper-modern {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
        align-items: center;
        /* Center items in the column layout */
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #dadada;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 15px;
}

.footer-left {
    flex: 1;
}

.footer-logo span{
   color: #3f97cf;
}

.footer-contact-info p {
    margin: 10px 0;
}

.footer-contact-info a {
    text-decoration: none;
    color: #fff;
}

.footer-contact-info i {
    color: #3f97cf;
    margin-right: 10px;
}

.footer-right {
    display: flex;
    justify-content: space-between;
    flex: 2;
    gap: 2rem;
}

.footer-links,
.footer-services {
    flex: 1;
}

.footer-links h5,
.footer-services h5 {
    color: #3f97cf;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a,
.footer-services ul li a {
    color: #dadada;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #3f97cf;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 15px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.footer-bottom ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-bottom ul li a {
    color: #3f97cf;
    text-decoration: none;
}

.footer-bottom ul li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 0 3rem;
    }

    .footer-right {
        flex-direction: column;
    }
}

/* Pricing Form */

.checkbox-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Adjust space between each checkbox */
}

.checkbox-wrap input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and label */
    transform: scale(1.2); /* Optional: To make the checkbox larger */
}

.popupform {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    scroll-behavior: smooth; /* Ensures smooth scrolling */
}

.modal-body {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 1rem auto;
}

.closePop {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #3f97cf;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.closePop:hover {
    color: #000;
}

.popup-content {
    margin-top: 10px;
}

.popup-content h2 {
    font-size: 26px;
    color: #3f97cf;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.popup-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.popupform_cr input[type="text"],
.popupform_cr input[type="email"],
.popupform_cr input[type="tel"],
.popupform_cr input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.popupform_cr input[type="text"]:focus,
.popupform_cr input[type="email"]:focus,
.popupform_cr input[type="tel"]:focus {
    border-color: #3f97cf;
    box-shadow: 0 0 5px rgba(255, 111, 0, 0.5);
}

.checkbox-wrap {
    text-align: left;
    margin-bottom: 15px;
}

.checkbox-wrap input {
    margin-right: 10px;
}

.popupform_cr input[type="submit"] {
    background-color: #3f97cf;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.popupform_cr input[type="submit"]:hover {
    background-color: #000;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .modal-body {
        padding: 20px;
    }
    .popup-content h2 {
        font-size: 22px;
    }
    .popup-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .modal-body {
        padding: 15px;
    }
    .popup-content h2 {
        font-size: 20px;
    }
    .popup-content p {
        font-size: 13px;
    }
}

