* {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    /*font-weight: <weight>;*/
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.05em;
    /*margin-bottom: 1.5em;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    font-weight: lighter;
}

hr {
    padding: 0em 1em;
}

a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2em;
}

.nav-bar {
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    position: sticky;
    z-index: 1000;
}

.nav-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*gap: 1em;*/
    flex-wrap: wrap;
    background-color: #111111;
    color: white;
}

.nav-top-bar div div {
    display: flex;
    /*gap: 1em;*/
    font-size: 0.75em;
}

.nav-top-bar a {
    text-decoration: none;
    color: white;
}

.contact-details,
.additional-details {
    display: flex;
}

.contact-details div,
.additional-details div {
    padding: 0.5em;
}

@media (max-width: 768px) {
    .nav-top-bar {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .additional-details {
        display: none;
    }
}

.nav-links-bar {
    background-color: white;
    justify-content: space-between;
    display: flex;
}

.logo {
    /*background-color: #4444ff;*/
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 30%;
    padding-left: 10%;
}

.nav-links ul,
.social-links ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li,
.social-links ul li {
    float: left;
}

.nav-links ul li a,
.social-links ul li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    /*font-weight: ;*/
    font-style: normal;
}

.nav-links ul li a:hover {
    background-color: #111111;
    text-decoration: underline;
    color: white;
}

.attn-btn {
    margin: .6rem 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(180deg, #ff6b6b, #ff4757);
    color: white;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.breathe {
    animation: breatheScale 2s ease-in-out infinite;
}

@keyframes breatheScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    /* tiny enlarge */
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .breathe {
        animation: none;
    }
}

.delay-0 {
    animation-delay: 0s;
}

.delay-1 {
    animation-delay: 0.9s;
}

.main-view {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

.main-view-content {
    display: flex;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.main-view-content>* {
    flex: 1;
    align-items: center;
}

@media (max-width: 768px) {
    .main-view-content> :first-child {
        display: none;
    }
}

.main-view-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5em;
    font-size: 1.5em;
}

.main-view-img div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75em 0em;
    color: whitesmoke;
}

.main-view-img a {
    color: black;
    font-weight: lighter;
    font-size: 0.75em;
}

.quote-form {
    background-color: #4444ff;
    border-radius: 2em;
    padding: 2em 2em;
    margin: 5em;
    display: flex;
    flex-direction: column;
}

.quote-form form {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.quote-form form h3 {
    align-self: center;
}

.quote-form form div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.25em;
    width: 100%;
}

.quote-form form div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-form div div div {
    display: flex;
}

.quote-form button[type="submit"] {
    align-self: center;
    margin: 1em;
    padding: 0.5em 5em;
}

.quote-form form input,
.quote-form form select,
.quote-form form button {
    width: 100%;
    padding: 0.6em;
    font-size: 1em;
    border-radius: 0.5em;
    border: none;
    outline: none;
    box-sizing: border-box;
}

/* File upload customization */
.file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.file-upload label {
  display: inline-block;
  background-color: #fff;
  color: #333;
  border-radius: 0.5em;
  text-align: center;
  cursor: pointer;
  padding: 0.6em;
  border: 1px solid #ccc;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.file-upload label:hover {
  background-color: #007bff;
  color: #fff;
}

.file-upload input[type="file"] {
    display: none;
}

/* Captcha styling */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.captcha-text {
    background-color: #fff;
    color: #333;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    font-family: monospace;
    user-select: none;
    letter-spacing: 2px;
}

.what-we-do {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em;
}

.what-we-do-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-do-body {
    display: flex;
    flex-direction: row;
    flex: 1;
    /*padding: 0.5em;*/
}

.what-we-do-body div {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.what-we-do-body div div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

.what-we-do a {
    text-decoration: none;
    border-radius: 0.2em;
    padding: 0.5em;
    width: 75%;
    background-color: #3333ff;
    color: white;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .what-we-do-body {
        flex-direction: column;
    }
}

.working-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background: linear-gradient(180deg, #272938, #5381bc);
}

.working-progress img {
    width: 70%;
    margin: 2em;

}

.popular {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5em;
}

@media (max-width: 768px) {
    .popular {
        display: none;
    }
}

.tabs {
    display: flex;
    width: 70%;
    border-bottom: 2px solid #ccc;
}

.tab-button {
    flex: 1;
    padding: 1em;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #fff;
    border-bottom: 2px solid #007bff;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 2em;
    margin: 2em;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 5em;
}

.tab-content.active {
    display: flex;
}

.why-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em;
}

.why-us-content {
    display: flex;
    flex-direction: row;
    text-align: center;
    padding: 2em;
}

.why-us div div {
    flex: 1;
}

/*
some borrowed code to ensure to working of the relevant display
borrowed? from where? 
*/
.circle-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5em;
    margin: 1em;
}

.button-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
}

.button-row>* {
    flex: 1;
}

.hover-btn {
    padding: 0.6em 1.2em;
    border: none;
    border-radius: 6px;
    /*background-color: #007bff;*/
    background: linear-gradient(180deg, #313c9b, #516ff3);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1;
}

.hover-btn:hover {
    background-color: #0056b3;
}

.center-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*font-weight: bold;*/
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, color 0.3s;
}

@media (max-width: 768px) {
    .circle-container {
        display: none;
    }
}

.order-now {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em;
    background-color: #3333ff;
}

.order-now h2 {
    color: whitesmoke;
}

.order-now div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
}

.order-now div div {
    text-align: center;
}

.order-now img {
    width: 80%;
}

.features {
    margin: 1em;
    padding: 1em;
    display: flex;
    justify-content: center;
}

.features h4 {
    font-size: 2em;
    color: #007bff;
}

.features td {
    padding: 1em;
}

.features table tbody tr td:nth-child(2) {
    background-color: #8ed1fc;
    border-radius: 25%;
}

.features table tbody tr td:nth-child(3) {
    background-color: #d8e5f0;
    border-radius: 25%;
}

.features div {
    font-size: 0.9em;
}

.features strong {
    font-size: 1.5em;
}

.features .fa {
    font-size: 2em;
}

.features .fa-check {
    color: green;
}

.features .fa-times {
    color: red;
}

.write-for {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 250px;
}

.write-for-content {
    display: flex;
    gap: 20px;
    transition: transform 0.8s ease-in-out;
}

.write-for-content img {
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

/*
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
*/

.footer {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    align-items: center;
}

.main-footer-section {
    display: flex;
}

.main-footer-section>* {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 2em;
    align-items: center;
}

.footer-disclaimer>*,
.footer-address>* {
    text-align: center;
    font-size: smaller;
}

.footer-links {
    display: flex;
    flex-direction: row;
}

.footer-links ul {
    list-style: none;
    padding-left: 1.2em;
}

.footer-links ul li::marker {
    content: "➤";
    color: #007bff;
    font-weight: bold;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 0.85em;
    align-items: flex-start;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 10px;
}

.payment-options {
    display: flex;
    background: gold;
}

.payment-options img {
    height: 2em;
    padding: 0.5em;
}

.social-btn {
    width: 30px;
    height: 30px;
    background-color: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background-color: #084298;
    transform: scale(1.1);
}


.footer-countries {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .main-footer-section {
        flex-direction: column;
    }
}