*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body{
  background-color: #011120;
}
/* dsd */
/* ✅ same alignment for logo + hero + cards */


/* NAVBAR */
.navbar{
    position: sticky;
    top: 0px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding: 15px;
}
.navbar.scrolled{
    background-color: #113151;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.list ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

.list ul li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.list ul li a:hover{
   color: #1e66f5;
}

/* Dropdown */
.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 190px;

  background: #061f33;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 0;

  list-style: none;

  /* ✅ important */
  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a{
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;

  /* ✅ keep text in one line */
  white-space: nowrap;
}

.dropdown-menu li a:hover{
  background: rgba(30,102,245,0.15);
  color: #1e66f5;
}

.buttons{
    display: flex;
    gap: 10px;
}

.white{
    height: 30px;
    width: 25px;
    position: relative;
}

.SignUp{
  position: relative;
  padding: 12px 30px;
  background-color: #1e66f5;
  border: 2px solid #1e66f5;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.SignUp::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #011120;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.SignUp:hover::before{ transform: translateY(0); }
.SignUp:hover{ color: #1e66f5; }

.SignIn{
  position: relative;
  padding: 12px 30px;
  background-color:#011120;
  border: 2px solid #1e66f5;
  color: #1e66f5;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.SignIn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #1e66f5;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.SignIn:hover::before{ transform: translateY(0); }
.SignIn:hover{ color: white; }

.hamburger{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}

/* CONTACT US SECTION */

.container{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px; /* same left/right alignment for everything */
}

.mainone{
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding: 70px 0 40px; /* ✅ only vertical spacing */
}

.onefirst h1{
  color: #fff;
  font-size: 40px; /* closer to reference */
  font-weight: 700;
  margin-bottom: 18px;
}

.onefirst p{
  color: #43617c;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  max-width: 640px;
}

.onesecond{
  justify-self: end;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.onesecond a{
  text-decoration: none;
  color: #43617c;
  font-size: 20px;
  transition: 0.3s;
}
.onesecond a:hover{ text-decoration: underline; }

.onesecond .arrow{ color: #fff; }
.onesecond .active{ color: #fff; font-weight: 500; }

/* EMAIL / CAREER SECTION */
.Email_Career_Section{
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-bottom: 80px;
}

.Card{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
}

/* ✅ icon circle like reference */
.Images{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0b2f4d;
  display: grid;
  place-items: center;
}


/* typography like reference */
.Contant h1{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.Contant p{
  color: #43617c;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 420px;
}

.Contant a{
  color: #1e66f5;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.Contant a span{
  transition: transform 0.3s ease;
}

.Contant a:hover{
  color: #fff;
}
.Contant a:hover span{
  transform: translateX(6px);
}

/* HR */
.custom-line{
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 60px 0;
}

/* MAP (you said ignore alignment, still making it responsive) */
.map_box{
  margin-top: 40px;
  width: min(1200px, 100%);
  margin: 0 auto 80px;
  border-radius: 15px;
  overflow: hidden;
}
.map_box iframe{
  width: 100%;
  height: 600px;
  display: block;
  border: 0;
}

/* Form section */

.consult-left h1{
  color: #fff;
  font-size: 40px; /* closer to reference */
  font-weight: 700;
  margin-bottom: 18px;
}
.consult-section{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}

.consult-container{
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.consult-left .title{
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 38px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.field label{
  display: block;
  font-size: 14px;
  color: rgba(210, 230, 245, 0.75);
  margin-bottom: 10px;
}

.field input,
.field select{
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(170, 200, 220, 0.28);
  border-radius: 10px;
  padding: 0 14px;
  color: #fff;
  outline: none;
}

.field input::placeholder{
  color: #fff;
}

.field input:focus,
.field select:focus{
  border-color: #fff;
  background-color: #011120;
}

/* Select styling */
.field select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
}

/* ICONS inside input */
.input-icon{
  position: relative;
}

.input-icon .icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

/* Pure CSS icons (no library) */
.icon.chevron{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(210,230,245,0.85);
  border-bottom: 2px solid rgba(210,230,245,0.85);
  transform: translateY(-50%) rotate(45deg);
  right: 16px;
}

.icon.calendar{
  border: 2px solid rgba(210,230,245,0.85);
  border-radius: 4px;
}
.icon.calendar::before{
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 5px;
  height: 2px;
  background: rgba(210,230,245,0.85);
}

.icon.clock{
  border: 2px solid rgba(210,230,245,0.85);
  border-radius: 50%;
}
.icon.clock::before{
  content: "";
  position: absolute;
  width: 2px;
  height: 6px;
  background: rgba(210,230,245,0.85);
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
}
.icon.clock::after{
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  background: rgba(210,230,245,0.85);
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
}

/* Button spans both columns */
.actions{
  grid-column: 1 / -1;
  margin-top: 10px;
}

.SignUpp{
  position: relative;
  padding: 12px 30px;
  background-color: #1e66f5;
  border: 2px solid #1e66f5;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.SignUpp::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #011120;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.SignUpp:hover::before{ transform: translateY(0); }
.SignUpp:hover{ color: #1e66f5; }

/* RIGHT IMAGE */
.consult-right{
  display: grid;
  justify-items: end;
}

.consult-right img{
  width: 100%;
  max-width: 750px;   /* increase this */
  height: 700px;      /* increase height */
  object-fit: cover;
  border-radius: 16px;
}

/* Office Section */

.office-section{
  background: #011120; /* dark blue like screenshot */
  padding: 80px 0;
}

.office-wrap{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 55px;
  column-gap: 40px;
  align-items: start;
}

/* Left big titles */
.office-title h2{
  color: #fff;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
}

/* Middle address */
.office-address p{
  color: #43617c;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Right contact */
.office-contact{
  display: grid;
  gap: 10px;
}

.office-contact a{
  font-size: 20px;
  text-decoration: underline;
}

/* email style (white underline) */
.office-contact .email{
  color: rgba(255,255,255,0.85);
}

/* call style (blue) */
.office-contact .phone{
  color: #2f78ff;
  text-decoration: none;
}
.office-contact .phone:hover{
  text-decoration: underline;
}

/* Divider line between rows */
.office-line{
  grid-column: 1 / -1;    /* full width */
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0;
}

/* FOOTER */

/* footer */

.footertop{
   background-color: #067df3;
    border-radius: 15px;
    margin: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden; /* prevents overflow */
}
.footert{
   
    text-align: center;
    align-content: center;
    justify-content: center; 
    

}
.footert h1{
    font-size: 40px;
    color: #ffffff;
}
.footert button{
    margin-top: 2rem;
    width: 200px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #46c4ff;
    border-radius: 5px;
    
    background-color: #46c4ff;
    color: #ffffff;
    cursor: pointer;
}
.footert button:hover{
    background-color: transparent;
}
.MainFooter{
    background-color: #0f2235;
    
    padding: 20px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

}
.MainFooter div:last-child{

    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.MainFooter div:last-child img{
    width: 30px;
    cursor: pointer;
}

.footerlist ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

.footerlist ul li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.ticket{
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
   
}
hr {
  border: none; /* Removes default border and 3D effect */
  height: 0.5px; /* Sets the thickness of the line */
  background-color: #46c4ff; /* Sets the color of the line */
  width: 90%; /* Sets the width (optional, default is 100%) */
  margin: 15px auto; /* Centers the line and adds vertical spacing */
}
.footerend{
    color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 3rem;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footersubs{
     display: grid;
     justify-content: space-around;
     grid-template-columns: 1fr 1fr;
}

@media screen and (max-width:1100px){
.navbar{
    justify-content: space-between;
}
.footerend{
    color: #ffffff;
    
    text-align: center;
    display: grid;
    grid-template-columns: 1fr ;
}
.footersubs{
     display: grid;
   
    grid-template-columns: 1fr;
}
}

/* =========================================================
   MOBILE (400px - 600px)  ✅ Whole page responsive
   ========================================================= */
@media (min-width: 400px) and (max-width: 600px){

  /* ---------- NAVBAR (mobile sidebar) ---------- */
  .navbar{
    height: 80px;
    padding: 10px 16px;
    justify-content: space-between;
  }

  .navbar > div img{
    height: 38px;
    width: auto;
  }

  .white{ display: none; }

  .hamburger{
    display: block;
    z-index: 10001;
  }

  .list{
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: #0f2235;
    padding: 90px 18px 18px;
    transition: right 0.3s ease;
    z-index: 10000;
  }
  .list.active{ right: 0; }

  .list ul{
    flex-direction: column;
    gap: 18px;
  }

  .buttons{
    position: fixed;
    right: -100%;
    bottom: 25px;
    width: 270px;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: right 0.3s ease;
    z-index: 10000;
  }
  .buttons.active{ right: 0; }

  .buttons button{
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  .overlay{
    z-index: 9998;
  }
  .overlay.active{
    opacity: 1;
    visibility: visible;
  }

  /* Dropdown inside sidebar */
  .dropdown-menu{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .dropdown:hover .dropdown-menu{ display: block; }

  /* ---------- CONTACT HEADING BLOCK ---------- */
  .container{
    padding: 0 16px;
  }

  .mainone{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0 25px;
  }

  .onefirst h1{
    font-size: 32px;
  }

  .onefirst p{
    font-size: 16px;
    max-width: 100%;
  }

  .onesecond{
    justify-self: start;
    font-size: 16px;
  }

  /* ---------- EMAIL / CAREER CARDS ---------- */
  .Email_Career_Section{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

  .Card{
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .Images{
    width: 54px;
    height: 54px;
  }

  .Contant h1{
    font-size: 20px;
  }

  .Contant p{
    font-size: 16px;
    max-width: 100%;
  }

  .Contant a{
    font-size: 16px;
  }

  /* ---------- MAP ---------- */
  .map_box{
    width: calc(100% - 32px);
    margin: 0 auto 50px;
    border-radius: 12px;
  }

  .map_box iframe{
    height: 320px;
  }

  /* ---------- CONSULT SECTION ---------- */
  .consult-section{
    min-height: auto;
    padding: 20px 16px 50px;
  }

  .consult-container{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .consult-left h1{
    font-size: 32px;
  }

  .form-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consult-right{
    justify-items: center;
  }

  .consult-right img{
    max-width: 100%;
    height: 320px;
    border-radius: 14px;
  }

  .SignUpp{
    width: 100%;
  }

  /* ---------- OFFICE SECTION ---------- */
  .office-section{
    padding: 50px 0;
  }

  .office-wrap{
    grid-template-columns: 1fr;
    row-gap: 22px;
    column-gap: 0;
    padding: 0 16px;
  }

  .office-title h2{
    font-size: 26px;
  }

  .office-address p{
    font-size: 16px;
  }

  .office-contact a{
    font-size: 16px;
    word-break: break-word;
  }

  /* ---------- FOOTER TOP CTA ---------- */
  .footertop{
    margin: 30px 16px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ticket{
    max-width: 100%;
  }

  .footert{
    padding: 22px 10px;
  }

  .footert h1{
    font-size: 24px;
  }

  .footert button{
    width: 180px;
  }

  /* ---------- FOOTER MAIN ---------- */
  .MainFooter{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    padding: 20px 16px;
  }

  .MainFooter div:last-child{
    justify-content: center;
  }

  .footerlist ul{
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footerend{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px 30px;
  }

  .footersubs{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footersubs input{
    width: 100%;
  }
}


/* =========================================================
   TABLET (600px - 1200px) ✅ Whole page responsive
   ========================================================= */
@media (min-width: 600px) and (max-width: 1200px){

  /* ---------- NAVBAR ---------- */
  .navbar{
    justify-content: space-between;
    padding: 15px 22px;
  }

  .list ul{
    gap: 18px;
  }

  .list ul li a{
    font-size: 16px;
  }

  .SignIn, .SignUp{
    padding: 10px 20px;
    font-size: 16px;
  }

  .hamburger{ display: none; }
  .white{ display: block; }

  /* ---------- CONTACT BLOCK ---------- */
  .container{
    padding: 0 22px;
  }

  .mainone{
    grid-template-columns: 1.4fr 1fr;
    padding: 55px 0 35px;
  }

  .onefirst h1{
    font-size: 36px;
  }

  .onefirst p{
    font-size: 18px;
  }

  /* ---------- EMAIL / CAREER ---------- */
  .Email_Career_Section{
    gap: 40px;
  }

  .Contant p{
    font-size: 18px;
  }

  /* ---------- MAP ---------- */
  .map_box{
    width: min(1100px, 100%);
    margin: 0 auto 60px;
  }

  .map_box iframe{
    height: 420px;
  }

  /* ---------- CONSULT SECTION ---------- */
  .consult-section{
    min-height: auto;
    padding: 30px 22px 60px;
  }

  .consult-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consult-right{
    justify-items: center;
  }

  .consult-right img{
    max-width: 900px;
    height: 450px;
  }

  /* ---------- OFFICE ---------- */
  .office-wrap{
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
    padding: 0 22px;
  }

  .office-line{
    grid-column: 1 / -1;
  }

  /* ---------- FOOTER ---------- */
  .footertop{
    margin: 40px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footert{
    padding: 26px 14px;
  }

  .MainFooter{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .MainFooter div:last-child{
    justify-content: center;
  }

  .footerend{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 22px 30px;
  }

  .footersubs{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footersubs input{
    width: 100%;
  }
}