﻿/* General Styles */
body {
    margin: 0;
    font-family: "Poppins", "aktiv-grotesk", sans-serif;
    background: url('../img/Santorini-Wallpaper-For-Desktop.webp') no-repeat center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    text-align: right; /* Align everything to the right by default */
    margin: 0;
}

.container {
    margin-top: 20px;
    background: rgb(0 0 0 / 27%);
    padding: 20px;
    border-radius: 8px;
}

header {
    background: transparent;
    text-align: center;
    font-size: 2em;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    margin: 0;
    opacity: 0;
    animation: fadeIn 3s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 20px 0;
    text-align: left;
    color: white;
}

h2 {
    margin-bottom: 20px;
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 20px;
}

.btn-spinner {
    font-size: 16px;
    margin-left: 8px;
    animation: spin 1s linear infinite;
}
.iti {
    width: 100%;
}

.iti--separate-dial-code input {
    padding-left: 60px !important; /* enough space for flag + code */
}

.iti__selected-flag {
    left: 10px;
}

.iti__flag-container {
    left: 10px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-weight: 500;
    margin-left: 46px; /* spacing between flag and code */
}
.iti__country-list {
    margin:3px !important;
    background-color: #212121 !important;
    z-index:5;
}
#phoneCodeVisual {
    padding-left: 110px !important; /* leave space for flag + dial code */
    height: 44px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 8px;
}
.iti input {
    padding-left: 110px !important; /* leave space for flag + dial code */
    height: 44px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 8px;
}

.iti__flag-container {
    z-index: 5; /* keep flag on top */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.2s;
}

    .whatsapp-float img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
/* Circle Menu Styles */
.circle-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px
}

.circle {
    width: 210px;
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: 4px solid white;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 3s ease;
}

.circle-p {
    width: 90%;
    border-radius: 50px;
    background: #00000050;
    padding: 4px;
    text-decoration: none !important;
    font-size:14px;
    margin-top:20px
}

.hr {
    margin-top:40px;
    margin-bottom:40px;
}
.circle:hover {
    transform: scale3d() !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    content: '→'; /* You can use the right arrow symbol or any other character */
}

    .circle:hover::after {
        opacity: 1; /* Show the arrow */
    }

.circle::after {
    content: '>'; /* Right arrow symbol */
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center the arrow vertically */
    opacity: 0;
    font-size: 8rem;
    transition: opacity 1s ease;
}

.circle p {
    transition: opacity 0.7s ease;
}

.circle:hover p {
    opacity: 0; /* Hide the paragraph on hover */
}

.circle.hero {
    color: white;
}

.custom-modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .custom-modern-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    }

.card-icon {
    width: 80%;
    object-fit: cover;
    border-radius: 12px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.95rem;
    color: #ddd;
}

input.is-invalid {
    border-color: red;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid white;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    color: white;
}

select.modern-input,
select.modern-input option {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    appearance: none; /* Hide default arrow on most browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.card-body{
    flex:none;
}

    select.modern-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #007bff;
    }

    select.modern-input option {
        background-color: #222; /* fallback for dropdown items */
        color: white;
    }

input[list].modern-input {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: box-shadow 0.3s ease;
}

    input[list].modern-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #007bff;
    }

    input[list].modern-input::placeholder {
        color: #ccc;
    }


/* New Flex container for speech bubbles and person image */
.speech-bubbles-and-person {
    position: relative;
    display: flex;
    flex-direction: row-reverse; /* Keep person on the right */
    align-items: flex-start;
    justify-content: center;
    gap: 1.3rem;
    z-index: 1; /* To keep everything on top */
}

.bubble-with-image.vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
    text-align: center;
}

.ai-face-top {
    height: 150px;
    width:150px;
    object-fit: cover;
    z-index:-100;
    margin-bottom: -30px;
    display:flex !important;
}

.sub-container {
    margin: 50px 0px 70px 80px;
}
/* Modern Bubble Design */
.speech-bubbles {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 20px 0 20px 0;
    z-index: 1; /* Ensure bubbles stay above the person image */
}

/* Speech Bubble Style */
.bubble {
    background: #696969;
    color: white;
    padding: 15px;
    border-radius: 8px;
    max-width: 94%;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.1s ease;
}

    /* Hover Effect for Bubbles */
    .bubble:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }


/* Modern Contact Form Styling */
.modern-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 70px;
    background-color: rgb(37 37 37 / 35%); /* darker and semi-transparent */
    backdrop-filter: blur(200px) !important;
    -webkit-backdrop-filter: blur(200px) !important;
    border: 1px solid #fff;
    border-radius: 30px;
    margin: auto;
    z-index: 4;
    max-width: 800px;
    box-shadow: rgb(255 255 255 / 10%) 0px 20px 40px;
}

.modern-form-wrapper {
    width: 100%;
    color: #fff;
}

    .modern-form-wrapper h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

.form-subtitle {
    font-size: 1.1rem;
    color: whitesmoke;
    margin-bottom: 30px;
}

.modern-input-group {
    margin-bottom: 20px;
    position: relative;
}

.modern-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    transition: box-shadow 0.3s ease;
}

    .modern-input::placeholder {
        color: #ccc;
    }

    .modern-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px #007bff;
    }

.modern-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: #007bff;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s;
}

    .modern-btn:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .person {
        width: 400px; /* Make image smaller on medium screens */
    }

    .bubble {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .person {
        width: 300px; /* Smaller on smaller screens */
    }

    .bubble {
        width: 90% !important;
        max-width: 90% !important;
    }
}

@media (max-width: 480px) {
    .person {
        width: 250px; /* Smaller on mobile */
    }


    .bubble {
        width:90% !important;
        max-width: 90% !important;
    }
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .circle-menu {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .circle {
        width: 220px;
        height: 220px !important;
        max-height: 220px !important;
    }

    .person{
        display:none;
    }
    .circle-menu {
        gap: 45px;
        margin:20px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        padding: 20px;
    }

    .container {
        padding: 20px;
    }

    .sub-container {
        margin: 10px
    }

    .speech-bubbles-and-person {
        margin: 0px !important;
    }
}

@media (max-width: 768px) {
    body {
        background-position: center;
    }

    .speech-bubbles-and-person {
        margin: 0px !important;
    }
    .circle-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 20px;
    }

    .circle {
        width: 180px;
        height: 180px;
        max-height: 180px !important;
    }

    .sub-container {
        margin: 10px
    }

    .person {
        display: none;
    }
    h1 {
        font-size: 1.6rem;
    }

    .hero {
        height: auto;
        padding: 10px;
        text-align: center;
    }

        .hero img {
            display: none;
        }

    .container {
        padding: 20px;
    }

    .circle-p {
        font-size: 0.9rem;
    }

}
@media (min-width: 1400px) {
    .container{
        max-width: 1150px !important;
    }
}
    @media (max-width: 480px) {
        .circle {
        width: 170px;
        height: 170px;
        max-height: 170px !important;
    }

        /* Medium screens (tablets) */
        @media (max-width: 992px) {
            .modern-form-section {
                padding: 40px 50px;
            }
        }

        /* Small screens (phones) */
        @media (max-width: 768px) {
            .modern-form-section {
                padding: 30px 20px;
            }
        }

        /* Extra small (small phones) */
        @media (max-width: 480px) {
            .modern-form-section {
                padding: 20px 10px;
            }
        }

    .person {
        display: none;
    }
    .circle-menu {
        gap: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 1.2rem;
    }

    .speech-bubbles-and-person{
        margin:0px !important;
    }
    /* Hero Section */
    h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 10px;
    }
}

