@font-face {
    font-family: Intertight;
    src: url("https://cdn.prod.website-files.com/6840859dc0e82803d10f5190/68409bd0d780eb9cc7d6ada7_InterTight-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Intertight;
    src: url("https://cdn.prod.website-files.com/6840859dc0e82803d10f5190/68409bd090a1b16986e71507_InterTight-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Intertight;
    src: url("https://cdn.prod.website-files.com/6840859dc0e82803d10f5190/68409bd01ecc1a2153c9ac4c_InterTight-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Intertight;
    src: url("https://cdn.prod.website-files.com/6840859dc0e82803d10f5190/68409bd06e9b457deb1fff2e_InterTight-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.slogan {
    font-family: Intertight, sans-serif !important;
}
.about_image {
    width: 400px;
    height: 400px;
}
@media screen and (max-width: 768px) {
    .about_image {
        width: auto;
        height: auto;
    }
}
.section-pill {
    padding: 5px 10px;
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid #000;
}

.faq-pill {
    padding: 5px 10px;
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid white;
}
.services-section {
    margin-top: 40px;
}

.services_img {
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 768px) {
    .services_img {
        height: auto;
    }
}

.emoji-img {
    font-size: 80px;
}
@media screen and (max-width: 768px) {
    .emoji-img {
        font-size: 60px;
    }
}

.service-grid-extra {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    margin-top: 24px;
}

/* USP Cards */
.usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
}

@media (max-width: 1024px) {
    .usp-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.usp-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    /* subtle top highlight */
    box-shadow:
        inset 0 1px 20px rgba(255, 255, 255, 0.08),
        inset 0 -20px 40px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.usp-icon {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;      /* Make icon lines white */
    stroke-width: 1.5;
    fill: none;           /* Remove fill */
}


/* Removed individual color rules to make all icons white */

.usp-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.usp-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .usp-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .usp-card {
        padding: 25px;
    }
    
    .usp-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .usp-icon svg {
        width: 36px;
        height: 36px;
        stroke: #ffffff;
        fill: none;
    }
    
    .usp-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .usp-card p {
        font-size: 15px;
    }
}

/* Add this to your style.css file */
.input::placeholder,
.text-area::placeholder {
    opacity: 0.3; /* Adjust this value between 0 (fully transparent) and 1 (fully opaque) */
}

/* Custom dropdown arrow styling */
select.input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 35px; /* Add more padding to prevent text overlap with arrow */
}

/* For IE11 */
select.input::-ms-expand {
    display: none;
}

/* Hover and focus states */
select.input:hover,
select.input:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23006BFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Focus state for better accessibility */
select.input:focus {
    border-color: #006BFF;
    box-shadow: 0 0 0 2px rgba(0, 107, 255, 0.2);
}

.hidden {
    display: none;
}

.faq-section {
    margin-top: -70px !important;
}