/* 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(../../assets/images/banner/trademark.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: #ffffff;
    border: 2px solid #1E90FF;
    color: #1E90FF;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
  }
  
  @keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
  
    100% {
        background-position: 100% 50%;
    }
  }
  


/* Contact Us Section */
.contact-section-modern {
    padding: 5rem 0;
    background-color: #f4f4f4;
    position: relative;
}

.main-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #3f97cf;
}

/* Full-Screen Container */
.container-fluid.full-screen {
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form-modern {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3f97cf;
    outline: none;
}

/* Button Styles */
.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);
    border: none;
}

.theme-btn-modern:hover {
    background: linear-gradient(90deg, #000, #3f97cf);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

    .theme-btn-modern {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Pricing Plan Section */
.pricing-plan-section {
    padding: 50px 0;
    background-color: #f4f3f3;
    color: black;
}

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

/* Ensure equal height for price cards */
.price-wrap-custom {
    flex: 1; /* Make sure all cards grow equally */
    display: flex; /* Flexbox for inner card layout */
    flex-direction: column; /* Align children vertically */
    justify-content: space-between; /* Space out children evenly */
    height: 100%; /* Full height of container */
    margin: 0 10px; /* Optional: add horizontal spacing */
    background-color: #f8f8f8; /* Background for card */
    border-radius: 10px; /* Rounded corners */
    padding: 30px; /* Padding inside card */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
    border: 2px solid #3f97cf; /* Border color */
}

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

/* Additional styles */
.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;
}

/* More styles for pricing section as provided in previous responses */
/* 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;
    }
}

