* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
}

/* nav  */
.navbar {
    /* position: fixed; */
    top: 20px;
    z-index: 9;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.navbar .nav {
    /* background-color: #F7F6F1; */
    width: 95%;
    display: flex;
    justify-content: space-between;
    /* height: 75px; */
    align-items: flex-start;
    border-radius: 100px;
    border: unset;
    padding: 0 40px;
    gap: 50px;
}

.navbar .nav .logo h2 {
    color: #1F4B43;
    font-size: 30px;
    font-weight: bold;
}

.navbar .nav .logo img {
    width: 120px
}

.navbar .nav .nav-linkbutton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;

    width: 100%;
}

.navbar .nav .nav-linkbutton a {
    padding: 10px 20px;
    width: 100%;
    background-color: #F7F6F1;
    text-decoration: none;
    color: #1F4B43;
}

.navbar .nav .navlinks img {
    width: 90px
}

.navbar .nav .navlinks ul {
    display: flex;
    gap: 20px;
}

.navbar .nav ul li {
    list-style: none;
}

.navbar .nav ul li a {
    text-decoration: none;
    color: #1F4B43;
    font-weight: bold;
    font-size: 18px;
}

.hamburger {
    width: 20px;
    height: 2px;
    background: black;
    position: relative;
    cursor: pointer;
    display: none;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: black;
    left: 0;

}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.close-btn {
    position: absolute;
    top: 50px;
    right: 40px;
    height: 2px;
    background: #1F4B43;
    cursor: pointer;
    display: none;
}

.close-btn::before,
.close-btn::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #1F4B43;
    left: 0;
}

/* make ❌ */
.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

/* nav  */
.hero-container {
    background-image: url(../images/herosection.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-container .herosection {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
    align-items: center;
}

.hero-container .herosection .leftcontent {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.hero-container .herosection .leftcontent h2 {
    font-size: 35px;
}

.hero-container .herosection .leftcontent p {
    font-size: 18px;
}

.hero-container .herosection .leftcontent a {

    padding: 6px 20px;
    border: none;
    border-radius: 40px;
    background: #F7F6F1;
    color: #1F4B43;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.hero-container .herosection .rightcontent {
    background-color: #0000003f;
    padding: 20px;
    border-radius: 20px;
}

.hero-container .herosection .form-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: #fff;
}

.hero-container .herosection .form-box h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

.hero-container .herosection .form-box input,
.hero-container .herosection .form-box select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.hero-container .herosection .form-box input::placeholder {
    color: #ddd;
}

.hero-container .herosection .form-box select {
    appearance: none;
}

.hero-container .herosection .form-box select option {
    background-color: #fff;
    color: #000;
}

.hero-container .herosection .form-box button {

    padding: 8px 30px;
    border: none;
    border-radius: 40px;
    background: #F7F6F1;
    color: #1F4B43;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-container .herosection .form-box button:hover {
    background: #d6d2cc;
}

/* whoweare  */
.whoweare {
    text-align: center;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whoweare .who-we-are {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 85%;
}

.whoweare .who-we-are h2 {
    font-size: 18px;
    color: #1F4B43;
}

.whoweare .who-we-are p {
    font-size: 35px;
    color: #1F4B43;
    font-weight: 500;
}

.whoweare .who-we-are a {
    border: 1px solid #1F4B43;
    color: #1F4B43;
    padding: 8px 20px;
    font-size: 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* whoweare  */
/* featureproject */
.featureproject {
    padding: 0 50px 50px 50px;
}

.featureproject .feature-project .project-title h2 {
    font-size: 45px;
    color: #1F4B43
}

.featureproject .feature-project .project-filter {
    display: flex;
    padding: 20px 0;
    gap: 20px;
    align-items: end;
}

.featureproject .feature-project .filter-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.featureproject .feature-project .filter-group label {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 550;
    color: #1F4B43;
    padding-bottom: 5px;
}

.featureproject .feature-project .filter-group select {
    padding: 10px;
    border-radius: 0px;
    border: 1px solid #1F4B43;
    font-size: 14px;
    cursor: pointer;
}

/* Custom Multiselect Styles */
.custom-multiselect {
    position: relative;
    width: 100%;
}

.custom-multiselect .select-box {
    padding: 10px 15px;
    border: 1px solid #1F4B43;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #1F4B43;
    min-height: 40px;
}

.custom-multiselect .select-box .selected-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.custom-multiselect .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px;
}

.custom-multiselect.active .dropdown-content {
    display: block;
}

.custom-multiselect .search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.custom-multiselect .options-list {
    max-height: 200px;
    overflow-y: auto;
}

.custom-multiselect .options-list label {
    display: flex;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin-bottom: 0;
}

.custom-multiselect .options-list label:hover {
    background-color: #f9f9f9;
}

.custom-multiselect .options-list input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #1F4B43;
}

.custom-multiselect.active .arrow svg {
    transform: rotate(180deg);
}

.custom-multiselect .arrow svg {
    transition: transform 0.3s ease;
}

/* Scrollbar styling */
.custom-multiselect .options-list::-webkit-scrollbar {
    width: 6px;
}

.custom-multiselect .options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-multiselect .options-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.custom-multiselect .options-list::-webkit-scrollbar-thumb:hover {
    background: #1F4B43;
}

.reset-filter {
    display: flex;
    width: auto !important;
}

#clear-filters {
    background: #1F4B43;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;

    padding: 0 20px;
    border-radius: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clear-filters:hover {
    border: 1px solid #1F4B43;
    color: #1F4B43;
    background-color: transparent;
}

.featureproject .feature-project .card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.featureproject .feature-project .card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

/* FRONT */
.featureproject .feature-project .card-front {

    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.featureproject .feature-project .card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featureproject .feature-project .overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    opacity: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.featureproject .feature-project .overlay .d-none {
    display: none;
}

.featureproject .feature-project .overlay .d-none a {
    text-decoration: none;
    color: #1F4B43;
    background: #EEEBE0;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 16px;
}

.featureproject .feature-project .overlay .d-none a img {
    width: 40px;
    height: auto;
}

.featureproject .feature-project .tag {
    border: 1px solid #1F4B43;
    padding: 4px 25px;
    border-radius: 20px;
    font-size: 18px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #1F4B43;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}


.featureproject .feature-project .overlay h3 {
    margin: 10px 0 5px;
    font-size: 25px;
    font-weight: normal;
    text-transform: uppercase;
}

/* LEFT IMAGE */
.featureproject .feature-project .card-back .left {
    width: 50%;
}

.featureproject .feature-project .card-back .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.featureproject .feature-project .card-back .right {
    width: 50%;
    padding: 20px;
    position: relative;
}

.featureproject .feature-project .count {
    font-size: 14px;
    color: #555;
}

.featureproject .feature-project .developer {
    font-size: 12px;
    margin: 10px 0;
    color: #777;
}

.featureproject .feature-project button {
    padding: 10px 16px;
    border: none;
    background: #dcd6cc;
    border-radius: 10px;
    cursor: pointer;
}

.featureproject .feature-project .small-img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 90%;
    border-radius: 10px;
}

.featureproject .feature-project .card-front:hover .overlay {
    width: 100%;
    background-color: #F7F6F1;
    right: 0;
    bottom: unset;
    left: 0;
    top: 0;
    color: #1F4B43;
    padding: 20px;
    padding-top: 15%;
    border-radius: 15px;
}

.featureproject .feature-project .card-front:hover .tag {
    border: 1px solid #1F4B43;
    color: #1F4B43;
    margin-bottom: 20px;
}

.featureproject .feature-project .card-front:hover .d-none {
    display: flex;
}

.nexthomecopyright {
    background-color: #F7F6F1;
    color: #1F4B43;
    padding: 15px 0;
    font-weight: 550;
    text-align: center;
}

.nexthomecopyright p {
    font-size: 16px;
}

/* featureproject */


.singleprojectregistration-form.newregisterform {
    background-image: url(../images/singlehero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
}

.singleprojectregistration-form.newregisterform .register-form {
    background: #fff;
    border-radius: 15px;
    position: absolute;
    right: 5%;
    padding: 20px;
    width: 640px;
    border: 2px solid #F7F6F1;
}

.singleprojectregistration-form.newregisterform .register-form .registerformlogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.singleprojectregistration-form.newregisterform .register-form .registerformlogo .img img {
    width: 180px;
}

.singleprojectregistration-form.newregisterform .register-form .registerformlogo .secondimg img {
    width: 100px;
}

.singleprojectregistration-form.newregisterform .register-form .form input {
    border: unset;
    border-bottom: 1px solid #000;
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
}

.singleprojectregistration-form.newregisterform .register-form .form label {
    font-size: 18px;
}

.singleprojectregistration-form.newregisterform .register-form .form .inputflex p {
    display: flex;
}

.singleprojectregistration-form .wpcf7-not-valid-tip {
    font-size: 12px !important;
}

.wpcf7-not-valid-tip {
    padding-bottom: 10px !important;
}

.singleprojectregistration-form.newregisterform .register-form .form input[type="submit"] {
    background-color: #F7F6F1;
    color: #1F4B43;
    font-weight: 550;
    border-radius: 25px;
    padding: 8px 40px;
    border: unset;
    text-transform: uppercase;
    cursor: pointer;
}

.singleprojectregistration-form.newregisterform form input[type="radio"] {
    accent-color: gray;

    /* default color */
}

.singleprojectregistration-form.newregisterform form input[type="radio"]:checked {
    accent-color: #910028;
    /* when selected */
}

.singleprojectregistration-form.newregisterform input::placeholder {
    color: #000;
}

.singleprojectregistration-form.newregisterform .register-form .form input:focus {
    outline: none;
}

.singleprojectregistration-form.newregisterform .register-form .form .inputflex {
    padding: 6px
}

.singleprojectregistration-form.newregisterform .register-form .form .inputflex .wpcf7-radio .wpcf7-list-item label {
    cursor: pointer;
}

.singleprojectregistration-form form input[type="text"],
.singleprojectregistration-form form input[type="email"],
.singleprojectregistration-form form input[type="tel"],
.singleprojectregistration-form form input[type="number"],
.singleprojectregistration-form form select,
.singleprojectregistration-form .wpcf7 input[type="tel"] {
    width: 100%;
    padding: 6px;
    margin-top: 6px;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    box-sizing: border-box;
}

.modelslidermain {
    padding: 0px 50px;
}

.secondmodelslider {
    padding-top: 0;
}

.modelslidermain .title h2 {
    font-size: 35px;
    color: #1F4B43;
    padding-bottom: 20px;
}

.modelhomeslider .swiper-slide {
    display: flex;
    justify-content: center;
}

.modelhomeslider .swiper-slide a {
    color: #1F4B43;
    text-decoration: none;
}

.home-card {
    color: #1F4B43;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    transition: 0.3s;
    padding: 10px;
}

.home-card img {
    width: 100%;
    height: auto;
    display: block;
}

.home-card h3 {
    font-size: 18px;
    margin: 0px 0 10px;
    top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    left: 0;
    background-color: #1f4b43;
    padding: 10px;
    color: #f7f6f1;
    right: 0;
}

.home-card p {
    font-size: 18px;
    font-weight: 550;
    padding: 10px 0 0;
    letter-spacing: 1px;
    background-color: #1f4b43;
    padding: 10px;
    margin-top: 10px;
    color: #f7f6f1;
}

/* Active slide highlight */
.swiper-slide-active .home-card {
    background: #F7F6F1;
    border: none;
    color: #1F4B43;
}

/* Dots */
.modelhomeslider .swiper-pagination-bullet {
    background: #999;
    opacity: 1;
    width: 15px;
    height: 15px;
}

.modelhomeslider .swiper-pagination-bullet-active {
    background: #000;
}

.modelhomeslider .swiper-pagination {
    position: relative !important;
    text-align: center !important;
    padding-top: 25px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modelhomeslider .swiper-button-next,
.modelhomeslider .swiper-button-prev {
    top: unset;
    bottom: 0;
    width: 20px;
    height: 20px;
    color: #000;
    display: none
}

.modelhomeslider .swiper-button-prev {
    right: 30px;
    left: unset;
}

.modelhomeslider .swiper-button-next:after,
.modelhomeslider .swiper-button-prev:after {
    font-size: unset;
}

.book-appointment {
    text-align: center;
    padding-bottom: 50px;
}

.book-appointment a {
    text-decoration: none;
    color: #f7f6f1;
    background-color: #1f4b43;
    padding: 15px 50px;
    font-size: 20px;
    text-transform: uppercase;
}

.singleprojectregistration-form .leftcontent {
    color: #F7F6F1;
    margin-left: 5%;
}

.singleprojectregistration-form .leftcontent h2 {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 15px
}

.singleprojectregistration-form .leftcontent p {
    font-size: 20px;
}

.singleprojectregistration-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}



.registerform-bgnone,
.newregisterform.singleprojectregistration-form {
    background-image: unset !important;
    height: auto !important;
}

.registerform-bgnone .form-box input[type="submit"] {
    background-color: #1F4B43 !important;
    color: #fff !important;
    cursor: pointer;
}

.newregisterform.singleprojectregistration-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.registerform-bgnone .herosection {
    justify-content: center;
    margin-bottom: 50px !important;
}

.registerform-bgnone::before {
    background: unset;
}

.registerform-bgnone .form-box,
.singleprojectregistration-form.newregisterform .register-form {
    width: 900px !important;
    max-width: unset !important;
    color: #000 !important;
    right: 0 !important;
}

.registerform-bgnone .form-box input,
.registerform-bgnone .form-box select {
    /* background-color: #F7F6F1 !important; */
    color: #000 !important;
    border: 1px solid #000 !important;
}

.modelslidermain {
    padding: 0px 50px 50px 50px;
}

.registerform-bgnone .rightcontent {
    background-color: #F7F6F1 !important;
}

.registerform-bgnone .form-box input::placeholder {
    color: #000 !important;
}

.featureproject {
    padding: 0px 50px 50px 50px !important;
}

.singleprojectregistration-form.newregisterform .register-form {
    position: relative;
}

.singleprojectregistration-form::before {
    background: unset;
}

.hide {
    display: none;
}


/* new page css  */
@font-face {
    font-family: 'gothampro_bold';
    src: url('../font/gothampro_bold.ttf') format('woff2'),
        url('../font/gothampro_bold.ttf') format('woff');
}

@font-face {
    font-family: 'gothampro_medium';
    src: url('../font/gothampro_medium.ttf') format('woff2'),
        url('../font/gothampro_medium.ttf') format('woff');
}

@font-face {
    font-family: 'LibreCaslonText-Bold';
    src: url('../font/LibreCaslonText-Bold.ttf') format('woff2'),
        url('../font/LibreCaslonText-Bold.ttf') format('woff');
}

@font-face {
    font-family: 'LibreCaslonText-Regular';
    src: url('../font/LibreCaslonText-Regular.ttf') format('woff2'),
        url('../font/LibreCaslonText-Regular.ttf') format('woff');
}

.new-page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    padding: 5px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-new-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar-new-page .logo img {
    width: 250px;
}

.navbar-new-page .nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.navbar-new-page .nav-links a {
    font-size: 13px;
    color: #222;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-new-page .contact-btn {
    background: #9b1c32;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
}

/* HERO */

.new-page-hero {
    position: relative;
    height: 40vw;
    background: url('../images/new-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.new-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.new-page-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;

}

.new-page-hero .hero-logo {
    font-family: 'gothampro_bold', serif;
    font-size: 70px;
    margin-bottom: 20px;
    color: #d8c28b;
}

.new-page-hero .hero-logo img {
    width: 115px;
}

.new-page-hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Libre Caslon Text', serif;
}

.new-page-hero .hero-text {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.register-btn {
    display: inline-block;
    background: #9b1c32;
    color: #fff;
    padding: 16px 42px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .4s;
    text-decoration: none;
}

.register-btn:hover {
    background: #7f1628;
}

/* QUOTE */

.quote-section {
    background: #585858;
    color: #fff;
    text-align: center;
    padding: 42px 20px;
}

.quote-section h2 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 24px;
    font-weight: 500;
}

/* CONTENT SECTION */

.content-section {
    padding: 0px 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content-section .container,.new-form-section .container {
    max-width: 1440px;
}

.content-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.content-section .content-text h2 {
    text-align: left;
    font-family: 'gothampro_bold', serif;
    font-size: 35px;
    line-height: 40px;
}

.content-section .content-text p {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'gothampro_bold', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.content-section .content-image {
    width: 80%
}

.content-section .content-image img {
    height: 650px;
    object-fit: cover;
    width: 100%;
}

/* PARALLAX */

.new-pageparallax {
    position: relative;
    height: 650px;
    background: url('../images/filxedbanner.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.new-pageparallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 81%);
}

.new-pageparallax .parallax-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #fff;
    padding: 0 20px;
}

.new-pageparallax .parallax-content p {
    font-size: 22px;
    line-height: 2;
    font-weight: 500;
}

/* FORM SECTION */

.new-form-section {
    padding: 120px 0;
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.new-form-section .form-wrapper {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 70px;
}

.new-form-section .form-left h2 {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'gothampro_bold', serif;

}
.new-page-hero p{
    padding-bottom:10px;
    font-size:20px;
        color: #e2cc99;
        font-weight: 550;
}
.new-form-section .form-left p {
       text-align: left;
     font-family: 'gothampro_bold', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.new-form-section form {
   
}

.new-form-section .full {
    grid-column: span 2;
}

.new-form-section input,
.new-form-section select,
.new-form-section textarea {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: none;
    background: #fff;
    font-size: 15px;
    outline: none;
}

.new-form-section textarea {
    height: 160px;
    padding-top: 20px;
    resize: none;
}

.new-form-section .submit-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 220px;
    height: 58px;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    transition: .4s;
}

.new-form-section .submit-btn:hover {
    background: #222;
}


 .new-copyright p {
    padding: 20px 50px; 
    text-align: center;
    color: #000;
    font-size: 14px;
    font-family: 'gothampro_medium', serif;
    background: #efefef;
}

.new-form-section .cf7-custom-form {
   
   
 font-family: 'gothampro_bold', serif;
}
 
.new-form-section .cf7-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex-direction: column;
}
 
.new-form-section .cf7-column {
    flex: 1;
    min-width: 300px;
}
 
.new-form-section .field-group {
    display: flex;
    flex-direction: column-reverse; /* લેબલને ઇનપુટની નીચે રાખવા માટે */
    margin-bottom: 20px;
}
 
.new-form-section .field-group input[type="text"],
.new-form-section .field-group input[type="email"],
.new-form-section .field-group input[type="tel"],
.new-form-section .field-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    height: 40px;
     font-family: 'gothampro_bold', serif;
       margin-bottom: 5px;
}
 
.new-form-section .field-group label, .radio-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 10px;
    text-transform: uppercase;
    color: #000;
     font-family: 'gothampro_bold', serif;
}
 
/* Radio Button Styling */
.new-form-section .radio-group .wpcf7-list-item {
    display: block;
    margin: 5px 0;
}
 
.new-form-section .radio-group .wpcf7-list-item-label {
    font-weight: bold;
    color: #000;
    margin-left: 5px;
}
 
/* Disclaimer text */
.new-form-section .form-disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    margin: 20px 0;
}
 
/* Submit Button */
.new-form-section .submit-group input[type="submit"] {
       background: #9b1c32;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
     font-family: 'gothampro_bold', serif;
         height: 40px;
}
 
.new-form-section .submit-group input[type="submit"]:hover {
    background-color: #333;
}
 
/* Responsive for mobile */
@media (max-width: 768px) {
   .new-form-section  .cf7-row {
        flex-direction: column;
        gap: 20px;
    }
}