* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}
:root {
    --primary-color:#3A506B;
    --secondary-color: #f1f9ff;
}

@font-face {
    font-family: "Quicksand", sans-serif;
    src: url('../fonts/Quicksand-Light.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Quicksand", sans-serif;
    src: url('../fonts/Quicksand-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Quicksand", sans-serif;
    src: url('../fonts/Quicksand-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Quicksand", sans-serif;
    src: url('../fonts/Quicksand-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Quicksand", sans-serif;
    src: url('../fonts/Quicksand-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

body {
    background: var(--secondary-color);
    font-size: 16px;
}
header {
    /* position: sticky; */
    top: 0;
    z-index: 9;
}
.main-logo img {
    max-width: 200px;
}
@media (width<768px) {
    .main-logo img {
        max-width: 160px;
    }
}
@media (width<575px) {
    .main-logo img{
        max-width: 150px;
    }
}

.container {
    width: 100%;
    padding: 2rem;
}

.row {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}
h1, h2, h3, h4, h5, h6, p, li, ul {
    color: #2f2f2ff0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.main-heading-home {
    text-align: center;
    margin: 35px 0;
    font-size: 2.8rem;
}

button {
    border: none;
}

.btn {
    display: flex;
    justify-content: center;
}

.cta,
.cta-expert {
    padding: 1rem 2rem;
    text-transform: uppercase;
    margin: 10px 0;
    font-weight: 600;
    color: #f7f8ff;
    background: var(--primary-color);
    border-radius: 2px;
    font-size: 1.2rem;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.cta:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
ul {
    margin-top: 10px;
}
ul >li {
    margin-bottom: 6px;
}

.title {
    text-align: center;
    display: grid;
    place-items: center;
}
.title img {
    max-width: 100%;
}

.menu-container {
    /* border-radius: 50px; */
    background: var(--primary-color);
    position: sticky;
    top: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
    z-index: 1000;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    min-width: auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.dropdown-content a {
    color: white;
    padding: 10px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
    width: max-content;
}
.dropdown:hover a {
    border-bottom: 1px solid var(--secondary-color);
}

.hamburger {
    display: none;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.4s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 16px;
}

.hamburger span:nth-child(3) {
    top: 22px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-container {
        position: sticky;
        bottom: 0;
        top: auto;
        width: 100%;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        text-align: center;
    }

    .menu.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    /* height: 80vh; */
    margin: auto;
    overflow: hidden;
    /* border-radius: 10px; */
}

.slides {
    display: flex;
    /* width: 600%; */
    transition: transform 0.5s ease-in-out;
    align-items: center;
    /* height: 100%; */
    object-position: center;
    object-fit: cover;
}

.slide {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.active {
    background: #333;
}

/* General Form Styles */
form {
    width: 80vw;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.4rem;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* Mobile Field (Flexbox for Country Code & Number) */
.mobile-group {
    display: flex;
    align-items: center;
}

.mobile-group select {
    width: 30%;
    margin-right: 5px;
}

.mobile-group input {
    width: 70%;
}
ul {
    margin-bottom: 12px;
}

/* Submit Button */
form button {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* button:hover {
    background: var(--secondary-color);
} */

/* Error Message Styling */
span.error {
    color: red;
    font-size: 14px;
}

h2 {
    margin-bottom: 10px;
}
.table-container {
    width: 100%;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
}
th {
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #ddd;
}
input[type="file"] {
    display: none;
}
.upload-btn {
    padding: 8px 12px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}
.upload-btn:hover {
    background-color: #218838;
}
.file-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.file-name {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
}
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }
}
summary {
    margin-top: 1rem;
}
p,
li,
summary,
div {
    line-height: 1.4;
    font-size: 1.4rem;
}

ul {
    margin-left: 2rem;
}
.faq {
    background-color: #fff;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0px 20px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
summary {
    padding-top: 1rem;
}
details div {
    padding: 1rem;
    margin-left: 3rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.col1 {
    color: var(--primary-color);
}

.ask-expert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.3rem;
}

footer {
    margin: 1rem 0;
}

.copy,
.footer-menu,
.web-by {
    display: flex;
    justify-content: center;
    margin: 12px 0;
    text-align: center;
}

/* Base Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeOut 0.4s forwards;
}
.modal h2 {
    color: var(--secondary-color);
    text-align: center;
    background-color: var(--primary-color);
}

.modal.show {
  display: flex;
  animation: fadeIn 0.4s forwards;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn 0.4s ease;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  background: var(--primary-color);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.modal-content button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; } to { opacity: 0; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
