.homepage .section-1 {
    position: relative;
    color: white;
    padding: 190px 0;

}
.homepage .section-1 .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
        z-index: -2;
}
.homepage .section-1 .filter{
    position: absolute;
    background: linear-gradient(90deg, #2e2e2e 0%, #d9d9d9 100%);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
        z-index: -1;
        opacity: 0.5;
}


.homepage .section-1 .ttl {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.homepage .section-1 .sub-ttl {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.homepage .section-1 .buttons {
    display: flex;
    gap: 20px;
}
.homepage .section-1 .content{
    width: 50%;
}
.homepage .section-1 .btns {
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* Section 2 styles */
.homepage .section-2 {
    transform: translateY(-50px);
}

.homepage .section-2 .crd {
    padding: 25px 40px 15px 25px;
    background: #FFFFFF;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    width: 31%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-image-source 0.3s ease;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.6)) 1;
}

.homepage .section-2 .crd i {
    font-size: 55px;
    color: #F4D713;
    margin-bottom: 20px;
}

.homepage .section-2 .crd .crd-ttl {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
        margin-top: 30px;

}

.homepage .section-2 .crd .crd-sub-ttl {
    font-size: 16px;
    color: #6C6C6C;
    font-weight: 600;
}

.homepage .section-2 .crd:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.12);
    border-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0.5)) 1;
}

.homepage .section-2 .crds {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* section 2 end */
/* section 3 */
.homepage .section-3 {
    padding: 50px 0;
}

.homepage .section-3 .left-sd {
    width: 40%;
}

.homepage .section-3 .right-sd {
    width: 55%;
}

.homepage .section-3 .left-sd img {
    width: 100%;
}

.homepage .section-3 .right-sd {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage .section-3 .right-sd .ttl {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.homepage .section-3 .right-sd .dsc {
    text-align: justify;
    color: #6C6C6C;

}

.homepage .section-3 .content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* section 3 end */
/* section 4 */

.homepage .section-4 {}

.homepage .section-4 .part-1 {
    position: relative;
    padding: 70px 0px;
}

.homepage .section-4 .part-1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
        z-index: -1;
}

.homepage .section-4 .part-1 .heading .ttl{
    text-align: center;
    text-transform: uppercase;
    color: black;
    margin: 0;
}
.homepage .section-4 .part-2{
    transform: translateY(-40px);
}
.homepage .section-4 .part-2 .crds {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.homepage .section-4 .part-2 .crds .crd{
    padding: 25px 20px 15px 20px;
    background: #FFFFFF;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    border-image: linear-gradient(140deg, #f4d713 0%, rgba(255, 255, 255, 0.8) 100%) 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-image-source 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    display: block;
    text-decoration: none;
    color: inherit;
}
.homepage .section-4 .part-2 .crds .crd:nth-last-child(1):nth-child(3n + 1) {
    flex-basis: 100%;
    max-width: 100%;
}
.homepage .section-4 .part-2 .crds .crd:nth-last-child(2):nth-child(3n + 1),
.homepage .section-4 .part-2 .crds .crd:nth-last-child(1):nth-child(3n + 2) {
    flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
}
.homepage .section-4 .part-2 .crds .crd .crd-ttl {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}
.homepage .section-4 .part-2 .crds .crd .crd-icn img{
    width: 140px;
}
.homepage .section-4 .part-2 .crds .crd .crd-icn{
   display: flex;
   justify-content: center;
}
.homepage .section-4 .part-2 .buttons button{
    width: 30%;
    border: none;
}
.homepage .section-4 .part-2 .buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
/* section 4 end */
/* section 5 */
.homepage .section-5 {
    margin-top: 80px;
    padding: 120px 0;
    position: relative;
}
.homepage .section-5 .heading{
    margin-bottom: 50px;
}
.homepage .section-5 .heading .ttl {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    
}
.homepage .section-5 .bg {
        position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
        z-index: -2;
}
.homepage .section-5 .filter {
        position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
        z-index: -1;
          background: linear-gradient(
    rgba(0, 0, 0, 0.6),  /* top: dark */
    rgba(0, 0, 0, 0.4)   /* bottom: lighter */
  );
}
.homepage .section-5 .crds .crd .crd-ttl {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}
.homepage .section-5 .crds .crd .crd-icn img{
    width: 140px;
}
.homepage .section-5 .crds .crd .crd-icn{
   display: flex;
   justify-content: center;
}
.homepage .section-5 .crds {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;   
}
.homepage .section-5 .crds .crd{
    padding: 25px 20px 15px 20px;
  background: rgba(255, 255, 255, 0.2); /* translucent white */
  backdrop-filter: blur(10px); /* main blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, #f4d713 100%) 1;
    width: 31%;
    color: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-image-source 0.3s ease;
}

.homepage .section-4 .part-2 .crds .crd:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.15);
    border-image: linear-gradient(140deg, rgba(255, 255, 255, 0.85) 0%, #f4d713 100%) 1;
}
.homepage .section-5 .crds .crd:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.2);
    border-image: linear-gradient(180deg, #f4d713 0%, rgba(255, 255, 255, 0.7) 100%) 1;
}
/* section 5 end */
/* section 6 */
.section-6 {
    padding: 100px 0px;
}
.section-6 .part-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-6 .part-1 .ttl{
    margin-bottom: 10px;
}
.section-6 .part-1 .sub-ttl{
    color: #6C6C6C;
    margin-bottom: 20px;
}
.section-6 .part-1 .numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 50%;
}
.section-6 .part-1 .numbers .number {
    width: 100%;
    text-align: center;
}
.section-6 .part-1 .numbers .number .tel {
    color: #6C6C6C;
}
.section-6 .part-1 .numbers .number .flag-name{

}
.section-6 .part-2 {
    padding: 50px;
    background-color: #FAFAFA;
    margin-top: 50px;
    border: 2px solid transparent;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.35)) 1;
}

.section-6 .part-2 .wpcf7 {
    width: 100%;
}

.section-6 .part-2 .wpcf7-form {
    padding: 0;
    margin: 0;
}

.section-6 .part-2 .wpcf7-form .row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.section-6 .part-2 .wpcf7-form .col-md-6,
.section-6 .part-2 .wpcf7-form .col-md-12 {
    flex: 1 1 100%;
}

.section-6 .part-2 .wpcf7-form .col-md-6 {
    min-width: 280px;
}

.section-6 .part-2 .wpcf7-form .form-label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #1c1c1c;
    margin: 0;
    text-transform: none;
}

.section-6 .part-2 .wpcf7-form .form-control {
    width: 100%;
    border: 1px solid #e2e6eb;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    margin-top: 8px;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-6 .part-2 .wpcf7-form .form-control:focus {
    border-color: #f4d713;
    box-shadow: 0 0 0 3px rgba(244, 215, 19, 0.25);
    outline: none;
}

.section-6 .part-2 .wpcf7-form textarea.form-control {
    resize: none;
    min-height: 150px;
}

.section-6 .part-2 .wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 10px;
}

.section-6 .part-2 .wpcf7-form .wpcf7-spinner {
    margin-left: 15px;
}

.section-6 .part-2 .wpcf7-response-output {
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 12px 18px;
    margin: 20px 0 0;
    font-weight: 600;
}

.section-6 .part-2 .wpcf7-response-output.wpcf7-mail-sent-ok {
    border-color: rgba(25, 135, 84, 0.35);
    background-color: rgba(25, 135, 84, 0.12);
    color: #155724;
}

.section-6 .part-2 .wpcf7-response-output.wpcf7-validation-errors,
.section-6 .part-2 .wpcf7-response-output.wpcf7-mail-sent-ng {
    border-color: rgba(220, 53, 69, 0.35);
    background-color: rgba(220, 53, 69, 0.12);
    color: #842029;
}
.section-6 .part-2 .wpcf7-response-output.wpcf7-mail-sent-ng {
    border-color: rgba(220, 53, 69, 0.35);
    background-color: rgba(220, 53, 69, 0.12);
    color: #842029;
}

@media (min-width: 768px) {
    .section-6 .part-2 .wpcf7-form .col-md-6 {
        flex: 1 1 calc(50% - 15px);
    }
}
/* section 6 end */

/* Responsive adjustments */
@media (max-width: 1199px) {
    .homepage .section-1 {
        padding: 120px 0 100px;
    }

    .homepage .section-1 .ttl {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .homepage .section-3 .right-sd .sub-ttl {
        text-align: center;
    }
        .homepage .section-2 .crd{
        width: 45% !important;
        text-align: center;
    }
    .homepage .section-1 {
        padding: 100px 0 80px;
        text-align: center;
    }

    .homepage .section-1 .sub-ttl {
        margin-left: auto;
        margin-right: auto;
    }

    .homepage .section-1 .buttons {
        justify-content: center;
    }

    .homepage .section-2 {
        transform: none;
        padding: 30px 0;
    }

    .homepage .section-2 .crds,
    .homepage .section-5 .crds {
        justify-content: center;
    }

    .homepage .section-2 .crd,
    .homepage .section-5 .crds .crd {
        width: 48%;
    }

    .homepage .section-4 .part-2 .crds .crd {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .homepage .section-4 .part-2 .crds .crd:last-child:nth-child(odd) {
        flex-basis: 100%;
        max-width: 100%;
    }

    .homepage .section-4 .part-2 .crds {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .homepage .section-3 .content {
        flex-direction: column;
    }

    .homepage .section-3 .left-sd,
    .homepage .section-3 .right-sd {
        width: 100%;
    }

    .homepage .section-3 .right-sd .ttl {
        font-size: 32px;
        text-align: center;
    }

    .homepage .section-3 .right-sd .dsc {
        text-align: left;
    }

    .homepage .section-4 .part-2 {
        transform: none;
    }

    .homepage .section-4 .part-2 .buttons button {
        width: 50%;
    }

    .homepage .section-5 {
        padding: 90px 0;
    }

    .section-6 {
        padding: 80px 0;
    }

    .section-6 .part-1 .numbers {
        width: 100%;
    }

    .section-6 .part-1 .numbers .number {
        width: 48%;
    }

    .section-6 .part-2 {
        padding: 40px 25px;
    }
}

@media (max-width: 575px) {
            .homepage .section-2 .crd{
               padding:  20px;
        width: 80% !important;
        text-align: center;
    }
    .homepage .section-2 .crd .crd-ttl {
    font-size: 20px;
}
    .homepage .section-1 {
        padding: 80px 0 60px;
    }

    .homepage .section-1 .ttl {
        font-size: 28px;
    }

    .homepage .section-1 .sub-ttl {
        font-size: 16px;
    }

    .homepage .section-1 .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .homepage .section-1 .btns {
        width: 100%;
        text-align: center;
    }

    .homepage .section-2 .crd,
    .homepage .section-5 .crds .crd {
        width: 100%;
    }

    .homepage .section-4 .part-2 .crds .crd {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }

    .homepage .section-4 .part-2 .crds {
        grid-template-columns: 1fr;
    }

    .homepage .section-3 .right-sd .ttl,
    .homepage .section-3 .right-sd .dsc {
        text-align: center;
    }

    .homepage .section-4 .part-1 {
        padding: 50px 0;
    }

    .homepage .section-4 .part-2 .buttons button {
        width: 100%;
    }

    .homepage .section-5 .heading .ttl {
        font-size: 24px;
    }

    .section-6 .part-1 {
        text-align: center;
    }

    .section-6 .part-1 .numbers {
        flex-direction: column;
        gap: 20px;
    }

    .section-6 .part-1 .numbers .number {
        width: 100%;
    }

    .section-6 .part-2 {
        padding: 30px 20px;
    }

    .section-6 .part-2 form {
        padding: 0 !important;
    }
}


