/* color: rgb(19, 58, 132); */
/* color: #133A84 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.heading {
    text-align: center;
}

.heading h1 {
    font-weight: 500;
    font-family: "Alatsi", sans-serif;
}

.mobilecall{
    text-align: end;
    position: fixed;
    z-index: 10;
    left: 92%;
    top: 85%;
}

.mobilecall img{
    width:9vh;
}

#full-nav {
    padding: 10px;
    background: rgba(255, 255, 255, 0.35);
    width: 100%;
    display:flex;
    z-index: 10;
    position: sticky;
}

.logo{
    width:50%;
}

.logo .navbar-brand{
    margin-left:50px;
}

.logo .navbar-brand img {
    width: 10vh;
}

.nav-btn{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:end;
    margin-right:50px;
}

.nav-btn button{
    border-radius: 6px;
    padding: 8px 12px;
    background: #c4a682;
    border:none;
}

.nav-btn button a {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-decoration:none;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.nav-btn button a:hover {
    color: rgb(247, 247, 247);
}

.nav-btn button a img {
    width: 3vh;
    position:relative;
    top:5px;
    margin-right: 5px;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
    margin-right: 15px;
}

#front-section {
    background: url('../images/banner.jpg');
    position: relative;
    background-position:70% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
}

#front-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid white;
    background-color: rgba(21, 21, 21, 0.553);
    z-index: 1;
}

#front-section .row {
    position: relative;
    z-index: 2;
}

#front-section .text-overlay {
    display: flex;
    justify-content: center;
    position:relative;
    top: 80px;
}

#front-section .text-overlay .box1 {
    width: 50%;
    padding-left: 40px;
}

#front-section .text-overlay .box1 h1 {
    font-size: 45px;
     font-family: "Archivo Black", sans-serif;
    color: white;
}

#front-section .text-overlay .box1 h1 span {
    color: #c4a682;
}

#front-section .text-overlay .box1 p {
    font-size: 18px;
    font-weight: 500;
    color: white;
   font-family: "Noto Sans Gunjala Gondi", sans-serif;
}

#front-section .text-overlay .box1 .btns {
    margin-top: 50px;
}

#front-section .text-overlay .box1 .btns button{
    border-radius: 6px;
    padding: 10px 15px;
    background: #c4a682;
    border: none;
}

#front-section .text-overlay .box1 .btns button a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

#front-section .text-overlay .description {
    display: flex;
    justify-content: start;
    column-gap: 30px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#front-section  .text-overlay .description span {
    font-size: 60px;
    font-weight: 200;
    margin-top: -10px;
    color: white;
}

#front-section  .text-overlay .description .box h2 {
    font-size: 35px;
    font-weight: 700;
    color: #c4a682;
}

#front-section .text-overlay .box2 {
    width: 50%;
    padding-top: 10px;
    padding-left: 50px;
}

#front-section .text-overlay .box2 .form {
    position: relative;
    width: 60%;
    margin: auto;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Adds depth */
    overflow: hidden;
    /* Ensure pseudo-elements don't overflow */
}

#front-section .text-overlay .box2 .form::before {
    content: "New";
    /* Text for the ribbon */
    position: absolute;
    top: -20px;
    /* Adjust to position the ribbon correctly */
    right: -20px;
    /* Adjust to position the ribbon correctly */
    width: 120px;
    /* Width of the ribbon */
    height: 120px;
    /* Height of the ribbon */
    background: #c4a682;
    /* Ribbon color */
    color: white;
    /* Text color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(45deg);
    /* Creates the ribbon effect */
    transform-origin: top right;
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Shadow for depth */
    font-size: 18px;
    /* Text size */
    font-weight: bold;
    /* Text weight */
}

#front-section .text-overlay .box2 .form::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    /* Size of the ribbon "tail" */
    height: 50px;
    background: #c4a682;
    /* Color matching the ribbon */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    /* Creates the tail effect */
    transform: rotate(45deg);
    /* Align with the ribbon */
    transform-origin: top right;
}

#front-section .text-overlay .box2 .form h3 {
    font-family: "Sansita", sans-serif;
    text-align: start;
    padding-left: 20px;
}

#front-section .text-overlay .box2 .form form input {
    width: 90%;
    height: 45px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-radius: 10px;
    border: none;
    box-shadow: inset 3px 3px 7px rgb(101, 101, 101);
}

#front-section .text-overlay .box2 .form form select {
    width: 90%;
    height: 45px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-radius: 10px;
    border: none;
    color: rgb(114, 114, 114);
    box-shadow: inset 3px 3px 7px rgb(101, 101, 101);
}

select option:disabled {
    color: grey;
}

#front-section .text-overlay .box2 .form form .btns {
    padding-left: 10px;
}

#submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgb(144, 144, 144);
    font-weight: 500;
    background: #c4a682;
    color: white;
}

#submit-btn:hover {
    background: #b58e5f;
}

#cta {
    margin-top: 5%;
}

#cta .content {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    /* Ensure content is above the background effects */
    background: linear-gradient(135deg, #c4a682, rgba(255, 255, 255, 0.5));
}

#cta.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,  #c4a682, rgba(255, 255, 255, 0.2));
    z-index: -2;
}

#cta .content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Set grid spacing */
    z-index: -1;
    /* Place above the background gradient */
}

#cta .content .box1 {
    width: 70%;
    padding: 20px;
    padding-left:40px;
}

#cta .content .box1 h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Alatsi", sans-serif;
}

#cta .content .box1 p {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 10px;
     font-family: "Noto Sans Gunjala Gondi", sans-serif;
}

#cta-btn {
    width: 200px;
    margin-top: 20px;
    border-radius: 5px;
    border: none;
    text-align: center;
    padding: 10px 10px;
    display: flex;
}

#cta-btn:hover {
    background: #e6e6e6;
}

#cta-btn a {
    font-size: 18px;
    color: #c4a682;
    font-weight: 500;
    text-decoration: none;
}

#cta-btn span {
    margin-left: 10px;
}

#cta-btn span img {
    width: 2.5vh;
}

#cta .content .box2 {
    width: 30%;
    text-align: center;
}

#cta .content .box2 img {
    width: 40vh;
}

#services {
    margin-top: 5%;
}

#services .heading h1{
    font-family:"poppins";
    font-size:35px;
}

#services .content {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    flex-wrap: wrap;
}

#services .content .box {
    position: relative;
    width: 380px;
    padding: 25px;
    background: #c4a682;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
    text-align: center;
}

/* Subtle hover effect */
#services .content .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Box Title */
#services .content .box h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-family:"poppins";
    font-size:22px;
}

/* List Items */
#services .content .box .points {
    margin-top: 15px;
    text-align: left;
}

#services .content .box .points ul {
    padding: 0;
    list-style: none;
}

#services .content .box .points ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}

/* Icon Box */
#services .content .box .points ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 10px;
}

/* Description */
#services .content .box .describe {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}

/* CTA Button */
#services .content .box .btns {
    margin-top: 15px;
    display: flex;justify-content: center;

}

#services .content .box .btns #apply-btn {
    padding: 8px 20px;
    width: 50%;
    text-align: center;
    background: #9f8562;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(216, 212, 212, 0.712);
}

#services .content .box .btns #apply-btn a{
    text-decoration: none;
    color: white;
     font-family: "Inter", sans-serif;
}

#services .content .box .btns #apply-btn:hover {
    background: #8d7855;
}

#advantages {
    margin-top: 5%;
}

#advantages .heading h1{
    font-family:"poppins";
    font-size:35px;
}

#advantages .content {
    width:90%;
    margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

#advantages .content .box h4 {
    position: relative;
    display: inline-block;
    color: #a8875f;
    /* Primary color */
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* 3D border effect for the h4 */
#advantages .content .box h4::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c4a682, #7a7a79);
    /* Gradient color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#advantages .content .box:hover h4::before {
    transform: scaleX(1);
}

/* Box styling */
#advantages .content .box {
    width: 350px;
    height: 200px;
    border-radius: 15px;
    /* Rounded corners */
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e0e0e0, #ffffff);
    /* Soft gradient */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.7);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Hover effect: glowing and raising the box */
#advantages .content .box:hover {
    transform: translateY(-15px);
}

#advantages .content .box:hover p {
    color: black;
}

#advantages .content .box p {
    margin-top: 20px;
    text-align: start;
    font-family: "poppins";
}

#aboutus {
    margin-top: 5%;
}

#aboutus .heading h1{
    font-family:"poppins";
    font-size:35px;
}

#aboutus .content {
    display: flex;
    justify-content: center;
    width:95%;
    margin:auto;
    margin-top: 50px;
}

#aboutus .content .box1 {
    width: 50%;
    padding: 20px;
}

#aboutus .content .box1 p {
    font-size: 18px;
    font-family:"poppins";
}

#aboutus .content .box2 {
    width: 50%;
    text-align: center;
}

#aboutus .content .box2 img {
    width: 70vh;
    margin-top: 30px;
}

#aboutus .points {
    margin-top: 20px;
    display: flex;
    column-gap: 20px;
}

#aboutus .points ul {
    padding: 10px;
}

#aboutus .points ul li {
    display: flex;
    text-decoration: none;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
     font-family:"Inter";
}

#aboutus .points ul li span {
    margin-right: 5px;
}

#aboutus .points ul li span img {
    width: 3.5vh;
}

#partners {
    width:95%;
    margin:auto;
    margin-top: 5%;
    overflow:hidden;
}

#partners .heading h1{
    font-family:"poppins";
    font-size:35px;
}

#partners .image-slider {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
   
}

#partners .images {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
     overflow:hidden;
}

#partners .images img {
    width: 18vh;
    margin-right: 60px;
}

#index-testimonial {
    margin-top: 5%;
}

#index-testimonial .heading h1{
    font-family:"poppins";
    font-size:35px;
}

.testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefdfdc4;
    padding: 50px 0;
}

.testimonial__inner {
    overflow: hidden;
    width: 80%;
    margin: auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 1s ease;
}

.testimonial-slide {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 20px;
}

.testimonial_box {
    background-color: #ededed;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 5px 2px #786043bc;
}

.testimonial_box-icon {
    padding: 10px 0;
}

.testimonial_box-icon i {
    font-size: 25px;
    color: #c4a682;
}

.testimonial_box-text {
    padding: 10px 0;
}

.testimonial_box-text p {
    color: #293241;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;
    font-family:"Inter";
}

.testimonial_box-img {
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

.testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
}

.testimonial_box-name {
    padding-top: 10px;
}

.testimonial_box-name h4 {
    font-size: 20px;
    line-height: 25px;
    color: #293241;
    margin-bottom: 0;
}

.testimonial_box-job p {
    color: #293241;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
}

#footer {
    margin-top: 5%;
    background: #c4a682;
    color: white;
    padding: 40px 20px 20px 10px;
    text-align: center;
}

.footer .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer .content .box {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    text-align: left;
}

.footer .content .box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
}

.footer .content .box h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #9f8562;
    margin-top: 5px;
}

.footer .content .box p {
    font-size: 15px;
    line-height: 1.6;
    color: #f8f8f8;
    font-family:"Inter";
}

.footer .content .box p a {
    color: #f8f8f8;
    text-decoration: none;
    transition: color 0.3s;
    font-family:"Inter";
}

.footer .content .box p a:hover {
    color: #9f8562;
    text-decoration: underline;
}

/* Bottom copyright section */
.cp-right {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

body {
    overflow-x: hidden;
}