/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alata';
}
body {
  font-weight: 100;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
/* ================= LOGO SWITCH ================= */
/* Default state */
/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    padding-top: 100px;  /* 👈 Thoda zyada padding deke test karo */
    background: url(../images/backgrond1.jpg) 
    no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: start;
    color: white;
}
.hero-text{
    height: 210px;
    width: 55%;
    margin-left: 115px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 18px;
}
.hero-text h1 {
    font-size: 31px;
    line-height: 42px;
    margin-bottom: 20px;
}
.hero-text .btn {
    background: red;
    color: #fff;
    width: 260px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
   .hero {
    min-height: 690px;
    padding-top: 87px;
    background: url(../images/backgrond1.jpg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: start;
    color: white;
}
.hero-text{
    height: 252px !important;
    width: 90%;
    margin-left: 22px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 26px;
}
}
/* //// */
/* Section */
.prices-packages-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.prices-packages-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #28344f;
    margin-bottom: 10px;
}

.prices-packages-header p {
    color: #555;
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.prices-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card Base */
.prices-package-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden; /* fix image overflow */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 420px; /* balance height */
}

.prices-package-card:hover {
    border-color: #e63946;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Card Image */
.prices-card-front img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* prevent stretching */
    display: block;
}

/* Overlay on Image */
.prices-card-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(40,52,79,0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

/* Card Back (content) */
.prices-card-back {
    padding: 18px;
    flex-grow: 1; /* keep balanced height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prices-card-back h3 {
    font-size: 18px;
    font-weight: 600;
    color: #28344f;
    margin-bottom: 10px;
}

.prices-card-back ul {
    padding-left: 18px;
    margin: 0 0 15px;
    flex-grow: 1;
}

.prices-card-back li {
  list-style: none;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
    position: relative;
}



/* Static Card */
.prices-static-card {
    background: #26324dd7;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    min-height: 460px; /* same height as others */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prices-static-card h3 {
    font-size: 22px;
    margin-bottom: 29px;
    font-weight: 700;
}

.prices-static-card p {
    font-size: 22px;
    margin-bottom: 48px;
    color: #ddd;
}

/* Button */
.prices-offer-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.prices-offer-btn:hover {
    background: #28344f;
}

/* states css  */

/* Section */
.premium-section {
  background: #fff;
  padding: 70px 20px;
}

/* Container Grid */
.premium-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.premium-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(40, 52, 79, 0.12);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* Hover Effect */
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(40, 52, 79, 0.25);
  border: 1px solid #e63946;
}

/* Headings */
.premium-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #28344f;
  font-weight: 700;
}

/* Paragraph */
.premium-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Button */
.premium-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #28344f;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.premium-btn:hover {
  background: #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-card {
    padding: 20px 15px;
  }
  .premium-card h3 {
    font-size: 1.2rem;
  }
  .premium-card p {
    font-size: 0.85rem;
  }
  .mainland-desc{
    text-align:justify !important;

  }
  .prices-packages-grid {
    padding: 0px 42px;
}
}
.mainland-section {
  background: #fff; /* section ka background white */
  padding: 70px 20px;
}

.mainland-container {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.mainland-subtitle {
  font-size: 0.9rem;
  color: #e63946;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mainland-title {
  font-size: 2rem;
  font-weight: 700;
  color: #28344f;
  margin-bottom: 15px;
}

.mainland-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
}
 .accordion-content{
    text-align:justify !important;
    
  }
  .premium-card p {
        text-align:justify !important;
padding:2px 8px;
      }