/* Header styles */
.header {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.header .logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.header .logo img:hover {
    transform: scale(1.05);
}

/* Navigation menu styles */
.header .nav-menu {
    flex: 1;
    margin: 0 2rem;
}

.header .main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
}

.header .menu-item {
    position: relative;
}

.header .menu-item a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header .menu-item a:hover {
    color: #3498db;
}

.header .menu-item a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.header .has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown menu styles */
.header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.header .dropdown-menu li{
    list-style: none;
}

.header .dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 1rem;
}

.header .dropdown-menu li a:hover {
    background: #f8f9fa;
}

/* Search container styles */
.header .search-container {
    position: relative;
    margin-right: 1.5rem;
}

.header .search-input {
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    width: 200px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.header .search-input:focus {
    outline: none;
    border-color: #3498db;
    width: 250px;
}

.header .search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header .search-icon:hover {
    color: #3498db;
}

/* Mobile menu button styles */
.header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.header .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Mobile menu styles */
@media screen and (max-width: 1024px) {
    .header .header-container {
        padding: 1rem;
    }

    .header .nav-menu {
        margin: 0 1rem;
    }

    .header .main-menu {
        gap: 1.5rem;
    }

    .header .menu-item a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .header .header-container {
        padding: 1rem;
    }

    .header .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #ffffff;
        margin: 0;
        padding: 2rem;
        transition: left 0.4s ease;
        overflow-y: auto;
    }

    .header .nav-menu.active {
        left: 0;
    }

    .header .main-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .header .menu-item a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .header .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .header .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .header .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .header .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .header .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .header .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .header .search-container {
        margin-right: 1rem;
        display: none;
    }

    .header .search-input {
        width: 150px;
    
    }

    .header .search-input:focus {
        width: 180px;
    }

    /* Overlay when mobile menu is open */
    .header .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(3px);
    }

    .header .overlay.active {
        display: block;
    }
} 

.about-section {
    width: 100%;
    background: transparent;
    padding: 70px 0 70px 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #b3e0ff 0%, transparent 70%);
    z-index: 0;
    opacity: 0.4;
  }
  
  .about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffe3e3 0%, transparent 70%);
    z-index: 0;
    opacity: 0.3;
  }
  
  .about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 30px;
    border-radius: 36px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 32px rgba(60, 60, 90, 0.10);
    border: 2px solid #e3eafc;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, border 0.3s;
  }
  
  .about-container:hover {
    box-shadow: 0 16px 48px rgba(60, 60, 90, 0.18);
    border: 2px solid #b3e0ff;
  }
  
  .about-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .about-image::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse at center, #b3e0ff33 0%, transparent 80%);
    z-index: 0;
    filter: blur(2px);
  }
  
  .about-image img {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 6px solid #fff;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    position: relative;
    z-index: 1;
  }
  
  .about-image img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(0,78,107,0.18);
  }
  
  .about-content {
    flex: 2 1 400px;
    text-align: left;
    color: #2d314d;
    position: relative;
    z-index: 1;
  }
  
  .about-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #2d314d;
    line-height: 1.1;
    text-shadow: 0 2px 8px #e3eafc;
  }
  
  .about-content h2 span {
    color: #0077a8;
    font-size: 2.2rem;
    display: block;
    letter-spacing: 1px;
  }
  
  .about-content p {
    font-size: 1.28rem;
    margin: 0 0 18px 0;
    color: #2d314d;
    line-height: 1.7;
    background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
    padding: 8px 16px 8px 0;
    border-radius: 8px;
    display: inline-block;
  }
  
  .about-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 18px 44px;
    background: linear-gradient(90deg, #0077a8 0%, #00b4d8 100%);
    color: #fff;
    font-size: 1.28rem;
    font-weight: 700;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,78,107,0.10);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    letter-spacing: 1px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
  }
  
  .about-btn::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #fff6 0%, #fff0 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
  }
  
  .about-btn:hover {
    background: linear-gradient(90deg, #00b4d8 0%, #0077a8 100%);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,78,107,0.18);
  }
  
  .about-btn:hover::after {
    opacity: 0.18;
  }
  
  /* Responsive Styles */
  @media (max-width: 1100px) {
    .about-container {
      flex-direction: column;
      gap: 36px;
      padding: 36px 10px;
    }
    .about-content {
      text-align: center;
    }
  }
  
  @media (max-width: 700px) {
    .about-section {
      padding: 24px 0;
    }
    .about-container {
      padding: 10px 2px;
      border-radius: 14px;
      gap: 16px;
    }
    .about-image img {
      max-width: 180px;
      border-width: 3px;
    }
    .about-content h2 {
      font-size: 1.5rem;
    }
    .about-content h2 span {
      font-size: 1rem;
    }
    .about-content p,
    .about-btn {
      font-size: 1rem;
    }
  }

  .trending-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
  }
  .trending-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 40px;
    letter-spacing: 2px;
  }
  .trending-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
  }
  .trending-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 290px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
  }
  .trending-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: filter 0.3s;
  }
  .trending-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0074b7;
    margin: 22px 16px 24px 16px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .trending-card-title a {
    color: #0074b7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .trending-card-title a:hover {
    color: #005a94;
  }
  
  .trending-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: filter 0.3s;
  }
  
  /* Responsive Design */
  @media (max-width: 1100px) {
    .trending-cards {
      gap: 1.5rem;
    }
    .trending-card {
      width: 45vw;
      min-width: 250px;
      max-width: 350px;
    }
  }
  @media (max-width: 800px) {
    .trending-cards {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .trending-card {
      width: 90vw;
      max-width: 400px;
    }
    .trending-title {
      font-size: 2rem;
    }
  }
  

  .travel-help-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .travel-help-section h2 {
    font-size: 2.7rem;
    color: #343a4a;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 2px;
  }
  
  .travel-help-section .card-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .travel-help-section .card {
    background: rgba(52, 58, 74, 0.8);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
    padding: 40px 28px 32px 28px;
    flex: 1 1 320px;
    max-width: 370px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
  }
  
  .travel-help-section .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.25);
    color: #fff;
  }
  
  .travel-help-section .card1 {
    background: linear-gradient(135deg, #3a5a7a 60%, #2d3e50 100%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    background-blend-mode: multiply;
  }
  .travel-help-section .card2 {
    background: linear-gradient(135deg, #2d3e50 60%, #3a5a7a 100%), url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    background-blend-mode: multiply;
  }
  .travel-help-section .card3 {
    background: linear-gradient(135deg, #3a5a7a 60%, #2d3e50 100%), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    background-blend-mode: multiply;
  }
  
  .travel-help-section .card .icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
    color: #fff;
    background: rgba(52, 58, 74, 0.5);
    border-radius: 50%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .travel-help-section .card h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 18px 0;
  }
  
  .travel-help-section .card p {
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
  }
  
  @media (max-width: 1100px) {
    .travel-help-section .card-container {
      gap: 20px;
    }
    .travel-help-section .card {
      max-width: 320px;
      padding: 32px 18px 24px 18px;
    }
  }
  
  @media (max-width: 900px) {
    .travel-help-section .card-container {
      flex-direction: column;
      align-items: center;
    }
    .travel-help-section .card {
      width: 100%;
      max-width: 500px;
    }
  }
  
  @media (max-width: 600px) {
    .travel-help-section h2 {
      font-size: 1.5rem;
      margin-bottom: 24px;
    }
    .travel-help-section .card {
      padding: 22px 8px 16px 8px;
      min-width: unset;
    }
    .travel-help-section .card h3 {
      font-size: 1.2rem;
    }
    .travel-help-section .card p {
      font-size: 1rem;
    }
    .travel-help-section .card .icon {
      font-size: 2rem;
      padding: 10px;
    }
  }
  
  .blog-section {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
    text-align: center;
    font-family: 'Lato', Arial, sans-serif;
  }
  
  .blog-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
  }
  
  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    overflow: hidden;
    width: 340px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  
  .blog-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  }
  
  .blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .blog-card h3 {
    font-size: 1.25rem;
    color: #1976d2;
    margin: 20px 16px 24px 16px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-card h3 a:hover {
    color: #125ea6;
  }
  
  .blog-btn {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    padding: 18px 38px;
    border-radius: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.12);
    border: none;
    cursor: pointer;
  }
  
  .blog-btn:hover {
    background: #125ea6;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
    transform: translateY(-2px);
  }
  
  .blog-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  /* Responsive Design */
  @media (max-width: 1100px) {
    .blog-cards {
      gap: 24px;
    }
    .blog-card {
      width: 300px;
    }
  }
  @media (max-width: 900px) {
    .blog-cards {
      flex-direction: column;
      align-items: center;
    }
    .blog-card {
      width: 90%;
      max-width: 400px;
    }
  }


  .footer {
    background: #eaf7fd;
    padding: 60px 20px 0 20px;
    color: #2c3e50;
    position: relative;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  .footer-col {
    flex: 1 1 220px;
    min-width: 220px;
    margin-bottom: 30px;
  }
  .footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #34495e;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col ul li {
    margin-bottom: 15px;
  }
  .footer-col ul li a {
    color: #22607c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover {
    color: #0b3c53;
    text-decoration: underline;
  }
  .footer-social {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-social h3 {
    margin-bottom: 15px;
  }
  .footer-social-icons {
    margin-bottom: 20px;
  }
  .footer-social-icons a {
    color: #22607c;
    font-size: 1.4rem;
    margin: 0 10px;
    display: inline-block;
    transition: color 0.2s, transform 0.2s;
  }
  .footer-social-icons a:hover {
    color: #0b3c53;
    transform: scale(1.2);
  }
  .footer-search {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
  }
  .footer-search input[type="text"] {
    padding: 10px 15px;
    border: 1px solid #b2d6e6;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 100%;
    font-size: 1rem;
    background: #fff;
    color: #34495e;
  }
  .footer-search button {
    padding: 10px 18px;
    border: none;
    background: #17607c;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
  }
  .footer-search button:hover {
    background: #0b3c53;
  }
  .footer-bottom {
    background: #3d525a;
    color: #fff;
    text-align: center;
    padding: 18px 10px 10px 10px;
    font-size: 1rem;
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom-links {
    margin-top: 8px;
  }
  .footer-bottom-links a {
    color: #b2d6e6;
    margin: 0 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .footer-col {
      margin-bottom: 40px;
      text-align: center;
    }
  }
  @media (max-width: 600px) {
    .footer {
      padding: 40px 5px 0 5px;
    }
    .footer-col h3 {
      font-size: 1.2rem;
    }
    .footer-search input[type="text"] {
      font-size: 0.95rem;
    }
    .footer-bottom {
      font-size: 0.95rem;
    }
    .footer-bottom-links a {
      font-size: 0.95rem;
    }
  }