/* Universal Tags */
/* fade up animation */
/* Base state: hidden + translated down */
html{
    scroll-behavior: smooth;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When in view */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
:root{
    --font-color: #000;
    --accent1: #aca9a9;
    --accent2: dodgerblue;
    --sans-serif: "Inter", sans-serif;
    --accent3: #0ed9f0;
    --dark-shade: #092657;
    --text-highlight: #15222d;
    --white: #ffffff;
}
/* Styling for scrollbar */
/* width  */
::-webkit-scrollbar{
    width: 4px;
}
/* Track */
::-webkit-scrollbar-track{
    border-radius: 90px;
    box-shadow: inset 0 0 5px var(--accent2);
}
  /* Handle */
::-webkit-scrollbar-thumb{
    border-radius: 90px;
    background: var(--dark-shade);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
    background: #000;
}
#menu-icon{
    z-index: 8;
    float: right;
    color: #fff;
    padding: 40px;
    display: none;
    cursor: pointer;
    font-size: 160%;
}
#close-icon{
    z-index: 8;
    float: right;
    color: #f00;
    padding: 40px;
    display: none;
    cursor: pointer;
    font-size: 160%;
}
body{
    margin: 0px;
    width: 100%;
    padding: 0px;
    color: #000;
    overflow-x: hidden;
    background-blend-mode: overlay;
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f8ff 100%);
}
h2{
    margin: 4px;
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: var(--text-highlight);
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: var(--font-color);
}
button{
    font-size: 18px;
    cursor: pointer;
    font-weight: 100;
    background: none;
    padding: 12px 20px;
    border-radius: 80px;
    color: var(--white);
    border: 1px solid var(--accent2);
    background-color: var(--accent2);
    transition: all 0.3s ease-in-out;
}
button:hover {
    border-color: var(--accent1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-image: linear-gradient(
    135deg, 
    var(--accent3) 0%, 
    var(--accent2) 100%
  );
    transform: translateY(-3px) scale(1.03);
}
button:active {
    transform: translateY(0) scale(0.97); /* subtle press down */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Box styling */
.box{
    margin: 8px;
    width: 33.33%;
    padding: 20px;
    border-radius: 10px;
    flex-direction: row;
    border-radius: 16px;
}
.box i{
    padding: 14px;
    font-size: 20px;
    color: var(--white);
    border-radius: 80px;
    background-color: var(--accent2);
    border: 1px solid var(--accent2);
}
.services .service-container .service-box h3{
    color: var(--font-color);
}
.glass{
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.glass:hover{
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.glass h1{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(0,0,0,0.85);
}
.glass p{
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(0,0,0,0.65);
}
/* subtle animated sheen across glass */
.glass::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: translateX(-100%);
    animation: sheen 6s infinite;
    pointer-events: none;
    }
@keyframes sheen{
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
.glass:hover::before {
  transform: translateX(100%); /* sweep the sheen only when hovered */
}
/* Menu toggle styles */
#menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--main-text);
  cursor: pointer;
}
#menu-icon,
#close-icon {
  display: none;
}
/* Navigation Bar */
.navbar{
    top: 0%;
    z-index: 3;
    width: 100%;
    display: flex;
    position: fixed;
    align-items: center;
    backdrop-filter: blur(10px);
    justify-content: space-between;
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 15, 35, 0.219);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.navbar .logo{
    z-index: 14;
    padding: 10px;
}
.navbar .logo img{
    width: 80px;
    max-height: 80px;
}
.navbar #menulist{
    margin: 0;
    gap: 20px;
    padding: 0;
    display: flex;
    list-style: none;
    text-align: center;
    position: relative;
    align-items: center;
}
.navbar #menulist li{
    padding: 8px;
    font-weight: 100;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.navbar #menulist li a{
    padding: 8px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-highlight);
    transition: all 0.3s ease-in-out;
}
.navbar #menulist li a.active,
.navbar #menulist li a:hover{
    color: var(--white);
}
.navbar #menulist li:not(.sign) {
  flex-grow: 1;
  text-align: center;
}
/* Position the button to the far right */
.navbar #menulist .sign {
    margin-left: auto;
}
.navbar .sign{
    float: right;
    right: 25px;
    font-size: 18px;
    cursor: pointer;
    background: none;
    position: relative;
    padding: 8px 16px;
    color: var(--text-highlight);
    transition: all 0.3s ease-in-out;
    font-family: "Playfair Display", serif;
    border: 1px solid var(--text-highlight);
}
.navbar .sign:hover{
    border-radius: 40px;
    color: var(--white);
    background-color: var(--accent3);
    border: 1px solid var(--accent3);
}
/* Hero Section */
.hero-section{
    width: 100%;
    height: 450px;
    text-align: center;
    padding: 240px 30px 10px;
    background-size: cover;
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f8ff 100%);
}
.hero-section .hero-content{
    width: 80%;
    align-items: center;
    transform: translate(10%, -10%);
  border: 1px solid rgba(255, 255, 255, 0.628); /* glass edge */
    height: 80%;
    border-radius: 80px;
}
.hero-section h1{
    padding: 4px;
    display: block;
    font-size: 60px;
    line-height: 60px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -2px;
    font-family: "Inter", sans-serif;
}
.hero-section h1 span{
    color: var(--accent2);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content button{
    margin: auto;
}
/* Our Services */
.services{
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, #fdfdfd 0%, #f6f6f6 100%);
}
.services p{
    text-align: center;
}
.services p span{
    margin: 12px;
    display: block;
    font-size: 24px;
}
.services .service-container{
    display: flex;
    padding: 60px 20px;
}
.services .service-container .box span{
    margin: 0px;
    display: inline;
    color: #0662B3;
    font-size: inherit;
}
/* Our Results */
.results{
    padding: 60px;
    background: linear-gradient(135deg, #fdfdfd 0%, #f6f6f6 100%);
}
.results .result-container{
    display: flex;
}
.results .result-container .box{
    text-align: center;
    flex-direction: row;
}
.results .result-container .box h3 span{
    font-size: 40px;
    display: block;
    color: var(--accent2);
}
/* Our Process */
.process{
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, #fdfdfd 0%, #f6f6f6 100%);
}
.process .process-container{
    display: flex;
}
.process .process-container .box{
    width: 100%;
    flex-direction: column;
}
.process .process-container .box:nth-child(even) i{
    color: var(--dark-shade);
    background-color: var(--accent3);
    border: 1px solid var(--accent3);
}
/* About Us */
.about-us{
    padding: 60px;
    position: relative;
    text-align: center;
    /* background-image: linear-gradient(10deg, #fff 20%, #0662B3 80%, #076AC0 90%, #127ad5 100%); */
    background: linear-gradient(135deg, dodgerblue 0%, #1e90ff 100%);    /* background: linear-gradient(135deg, #fdfdfd 0%, #f6f6f6 100%); */
}
.about-us::before {
    inset: 0;
  content: "";
  position: absolute;
  pointer-events: none;
  background: rgba(255,255,255,0.05); /* faint white overlay */
}
.about-us .about-container{
    display: flex;
}
.about-us .about-container .box{
    flex-direction: row;
    background: rgba(255, 255, 255, 0.25); /* stronger than default */
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
}
.about-us .about-container .box span{
    color: var(--white);
    font-weight: 700;
}
.about-us .about-container .box .glass{
    transition: none;
    animation: none;
}
.about-us .about-container .box .glass::before {
  display: none;
}
/* Contact */
.contact{
    padding: 60px;
}
.contact .contact-container{
    display: flex;
    flex-direction: row;
}
.contact .contact-container .left, .contact .contact-container .right{
    width: 50%;
    padding: 20px 40px;
}
.contact .contact-container .left h6{
    font-size: 20px;
    font-weight: 300;
    color: var(--accent2);
}
.contact .contact-container .left h2{
    text-align: left;
    line-height: 40px;
}
.contact .contact-container .left p{
    color: #aca9a9;
}
.contact .contact-container .left .info{
    margin: 8px;
    display: flex;
    padding: 10px;
    width: 60%;
    line-height: 10px;
}
.contact .contact-container .left .info i{
    padding: 10px;
    font-size: 40px;
    color: var(--accent2);
}
.contact .contact-container .left .info h4{
    color: #aca9a9;
}
.contact .contact-container .left .info p{
    font-weight: 700;
    color: var(--dark-shade);
}
.contact-form{
    gap: 16px;
    padding: 30px;
    color: #000;
    display: flex;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 16px;
    flex-direction: column;
    backdrop-filter: blur(12px);
    animation: fadeUp 0.6s ease forwards;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 80%;
    border: none;
    color: #000;
    outline: none;
    font-size: 15px;
    border-radius: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.288);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: rgba(0, 0, 0, 0.7);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.6);
}
.contact-form button{
    /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* gap: 10px; */
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    width: max-content;
    border-radius: 60px;
  /* font-weight: 600; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background-color: var(--accent2);
    /* background: linear-gradient(135deg, #007bff, #0056b3); */
}
.contact-form button:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0056b3, #004080);
}
.contact-form button:active {
    transform: translateY(1px);
}
.contact-form button #icon{
    padding: 10px;
    font-size: 18px;
    border-radius: 50%;
    color: var(--accent2);
    background-color: var(--white);
    transition: transform 0.3s ease;
}
.contact-form button:hover #icon{
    transform: translateX(4px);
}
/* Fade up animation */
@keyframes fadeUp{
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
/* Footer */
.footer{
    padding: 60px;
    text-align: center;
    padding-bottom: 20px;
    color: var(--font-color);
    background-color: var(--accent3);
}
.footer .footer-container{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    flex-direction: row;
}
.footer .footer-container .footer-box{
    width: 25%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    border-left: 1px solid var(--text-highlight);
}
.footer .footer-container .footer-box:nth-child(1){
    border-left: none;
}
.footer .footer-container .footer-box li{
    padding: 8px;
    display: inline-block;
}
.footer .footer-container h2{
    font-size: 14px;
    text-align: center;
    color: var(--text-highlight);
}
.footer .copyright{
    padding: 0px;
    font-size: 14px;
    color: var(--accent3);
    color: var(--font-color);
}
