
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #f9f9f9;
}

header.scrolled {
    position: fixed;
    top: 0;
    width: 95%;
    display: flex;
    background-color: #091D35;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    max-width: 100%;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease-in-out;
    align-items: center;
}

nav ul li {
    margin-right: 35px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
}

nav ul li a:hover {
    color: #A9BBD2;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}


#lets-talk-button {
    background-color: white;
    color: #194C8B;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    text-decoration: none;
    margin-left: 20px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#lets-talk-button:hover {
    background-color: #091D35;
    color: white;
    box-shadow: 0 0 10px 2px white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 85px;
    right: 85px;
    width: 50px;
    height: 50px;
    background-color: #194C8B;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s, transform 0.2s;
    z-index: 9999;
}

/* Hover Effect */
.back-to-top:hover {
    background-color: #163E72;
    /* Darker shade for hover */
}

.back-to-top.show {
    display: flex;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

main {
    padding-top: 40px;
}

section {
    padding: 60px 20px;
}

.policy-logo {
    display: block;
    margin: 0 auto 2px; 
    height: 120px;
}

.privacy-policy-section {
    max-width: 1000px;
    margin: 80px auto 10px; 
    padding: 20px;
    color: #333;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.policy-title {
    font-size: 36px;
    font-weight: 700;
    color: #194C8B;
    margin: 5px 0 2px; 
    text-align: center;
}
  
  .policy-subtext {
    font-size: 18px;
    font-weight: bold;
    color: #194C8B;
    margin-bottom: 0px;
    text-align: center; 
  }
  
  .policy-description {
    font-size: 18px;
    color: #000000;
    margin-top: 0px; 
    margin-bottom: 30px;
    text-align: center;
    font-weight: 200;
  }
.tab-section h2 {
    color: #194C8B;
    font-size: 24px;
    margin-bottom: 10px;
  }

.tab-section p,
.tab-section ul,
.tab-section li {
  color: #333;
  font-weight: 200;
  font-size: 16px;
}
.tab-section {
    color: #194C8B; 
}

.tabs-nav {
  width: 25%;
  display: inline-block;
  vertical-align: top;
}

/* Content Panel Layout */
.tabs-content {
  width: 70%;
  display: inline-block;
  padding-left: 2%;
  transition: transform 0.3s ease-in-out;
}

/* Tab Button Styling */
.tab-button {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #194C8B;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.tab-button.active-tab {
  background-color: #194C8B;
  color: white;
  font-weight: bold;
}

.tab-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tab-icon {
  height: 36px;
}

.tab-title {
  margin: 0;
  font-size: 22px;
  color: #194C8B;
}

/* Tab Content Text */
.tab-body {
  color: #194C8B;
}

/*Footer Section Styles*/
footer {
    width: 100%;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
}

.main-footer {
    background-color: #194C8B;
    position: relative;
    padding: 40px 70px;
    height: 30vh;
    display: flex; 
    align-items: center;
    justify-content: start;
    border-bottom: 2px solid #3E80D1;
}

.footer-background-logo {
    position: absolute;
    top: 0px;
    left: -16px;
    width: 55%;
    height: 95%;
    background: url(assets/g.png) no-repeat center left;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-left p {
    margin: 5px 0;
    font-size: 15px;
    color: #A2D0E3;
}

.footer-icons {
    display: flex;
    gap: 10px;
    /* Space between icons */
    margin-top: 65px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    /* Ensure equal height */
    object-fit: contain;
    /* Maintain aspect ratio */
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right a {
    color: #A2D0E3;
    text-decoration: none;
    margin: 1px 0;
}

.footer-right a:hover {
    text-decoration: underline;
}

.sub-footer {
    background-color: #0D315E;
    padding: 10px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    /* Set a fixed height */
    line-height: 50px;
    /* Vertically center the text */

}
.privacy-policy {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.privacy-policy:hover {
    text-decoration: underline;
}

.footer-right-text {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.tab-layout-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;

}

.tabs-nav {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 10%;
  max-height: 100vh;
  padding-right: 1rem;
  align-items: flex-start;
}

.tab-button {
  padding: 10px 15px;
  background-color: #f4f4f4;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  font-size: 20px; 
}

.tab-button:hover {
  background-color: #194C8B;
  color: white;
}

.tabs-content {
  flex: 1;
}

.tab-section {
  margin-bottom: 40px;
  scroll-margin-top: 90px; 
}

.tab-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tab-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 1544px) {
    header,
    .privacy-policy-section {
        width: 1544px;
        max-width: 100%;
        margin: 0 auto;
    }

    .logo img {
        height: 45px; 
    }

}

@media (max-width: 1440px) {
    header,
    .privacy-policy-section {
        width: 1440px;
        max-width: 100%;
        margin: 0 auto;
    }

    .logo img {
        height: 45px; 
    }

}

@media (max-width: 1024px) {
    main {
        padding-top: 0px;
    }

    nav ul {
        position: fixed;
        right: 0px;
        top: 0;
        height: 48%;
        background-color: #091D35;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
    }

    nav ul.nav-active {
        transform: translateX(0);
        width: 320px;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        font-size: 18px;
    }


}

@media (max-width: 1000px) {
    header,
    .privacy-policy-section {
        width: 1000px;
        max-width: 100%;
        margin: 0 auto;
    }

    .logo img {
        height: 40px; 
    }

    .main-footer {
        flex-direction: column;
        height: auto;
        padding: 30px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        align-items: center;
    }

    nav ul {
        position: fixed;
        right: 0px;
        top: 0;
        height: 48%;
        background-color: #091D35;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
    }

    nav ul.nav-active {
        transform: translateX(0);
        width: 320px;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.toggle span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(10.5px, -10.5px);
    }
}

@media (max-width: 768px) {
    header {
        width: 87%;
    }

    nav ul {
        right: 0px;
    }

    #lets-talk-button {
        background-color: transparent;
        color: white;
    }

  .privacy-policy-section {
    max-width: 100%;
    padding: 10px;
  }

  .tab-layout-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    flex-wrap: nowrap;
  }

  .tabs-nav {
    flex: 0 0 30%; 
    max-width: 30%;
    position: sticky;
    top: 10%;
    max-height: 100vh;
    overflow-y: auto;
    padding-right: 0.5rem;
  }

  .tabs-content {
    flex: 1;
    min-width: 0;
  }

  .tab-button {
    font-size: 16px;
    padding: 8px 10px;
  }

  .tab-title {
    font-size: 18px;
  }

  .tab-section h2 {
    font-size: 20px;
  }

  .tab-section p,
  .tab-section ul,
  .tab-section li {
    font-size: 14px;
  }
}
