@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
.section{
    padding:90px 8%;
    overflow: hidden;
}

.section h2{
    text-align:center;
    font-weight:700;
    margin-bottom:50px;
    position:relative;
}

.section h2:after{
    content:'';
    width:80px;
    height:4px;
    background:#00a3da;
    display:block;
    margin:15px auto 0;
}

/* HERO */
.hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
               url('images/burj.webp') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero h1{
    font-size:70px;
    font-weight:800;
    letter-spacing:3px;
}

.hero h5{
    letter-spacing:4px;
}

.hero .tagline{
    font-size:18px;
    margin:15px 0;
    color:#00a3da;
}

.hero p{
    max-width:750px;
}

.hero .btn{
    margin-top:25px;
    padding:12px 35px;
    background:#00a3da;
    border:none;
    border-radius:40px;
    font-weight:600;
    color: #fff !important;
}

/* GRID */
.grid{
    display:grid;
    gap:30px;
}

.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

/* CARD */
.card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    border-radius:15px;
    margin-bottom:15px;height: 250px;
  width: auto;
}
p{
    margin-bottom: 10px;
}
.card ul {
  margin-bottom: 10px;
}
.card ul li{
  list-style: disclosure-closed;
  margin-left: 15px;
}
.card ul li::marker{
    color: #458ccc;
}
.dark{
    background:#0d1b2a;
    color:#fff;
}

.dark .card{
    background:#fff;
    color:#000;
}

/* PACKAGES */
.packages{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.package{
    padding:50px;
    border-radius:20px;
    text-align:center;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.package.popular{
    background:#0d1b2a;
    color:#fff;
    transform:scale(1.05);
}

.package h2{
    font-size:36px;
}

.package ul{
    list-style:none;
    padding:0;
}

/* CONTACT */
.contact{
    text-align:center;
    padding:100px 20px;
    background:#00a3da;
    color:#fff;
}
.visa-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.visa-list li,
.tips-list li,
.check-list li {
  margin-bottom: 15px;
  list-style: none;
}

.note-box {
  background: #f3f3f3;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 14px;
}

.why-card {
  margin-top: 25px;
  background: linear-gradient(135deg, #0f5132, #0b2e13);
  color: #fff;
}

.check-list li::before {
  content: "✔ ";
  color: #28a745;
  font-weight: bold;
}
.contact .btn{
    background:#fff;
    padding:14px 40px;
    border-radius:40px;
    border:none;
    margin-top:20px;
    color: #00a3da !important;
}

@media(max-width:992px){
    .grid-4,.grid-3{grid-template-columns:repeat(2,1fr);}
    .packages{grid-template-columns:1fr;}
}

@media(max-width:768px){
    .hero h1{font-size:40px;}
    .grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}
}



@media screen and (max-width: 767px){
  .hero{
    height: 50vh;
    margin-top: 0 !important;
  }  .hero h1 {
    font-size: 36px;
  }
  .hero .tagline {
  font-size: 16px;
}
.section {
  padding: 35px 5%;
}
.section h2 {
  margin-bottom: 27px;
}
.grid {
  display: grid;
  gap: 16px;
}
.card{
  padding: 20px 30px;
}
.package {
  padding: 30px;
}
.contact {
  padding: 50px 20px;
  background: linear-gradient(135deg,#00a3da,#00a3da);
}
}