/* ================== GLOBAL ================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f6f8;
  overflow-x: hidden;  
}


/* ================== HEADER ================== */
.header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #e6dada, #cde8d5);
  height: 300px;
  
}

.header h1 {
  margin: 0;
  font-size: 32px;
  margin-top: 100px;
}

.header p {
  margin: 5px 0;
  color: #555;
  font-size: 20px;

}

.header .desc {
  font-size: 13px;
  max-width: 600px;
  margin: 10px auto;
    font-size: 20px;


}
/* ================== NAVBAR ================== */
.navbar {
 position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  color:gray ;
}
.logo .span
{
    color: gray;
}
.logo small {
  display: block;
  font-size: 12px;
  color: gray;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff7a00;
}

/* Button */
.btn {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
}



/* ================== GALLERY ================== */
.gallery {
  column-count: 3;
  column-gap: 15px;
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s;
}

.gallery-card img:hover {
  transform: scale(1.05);
}



/* ================== CTA SECTION ================== */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #e8d3b9, #cfd9df);
  padding: 60px 20px;
  margin-top: 40px;
}

.cta-card {
  background: #f5f5f5;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* ================== CTA CONTENT ================== */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.cta-card h1 {
  font-size: 32px;
  color: #1a2b49;
  margin-bottom: 15px;
}

.cta-card .desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}


/* ================== BUTTONS ================== */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

button {
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.primary {
  background: #ff7a00;
  color: white;
}

.primary:hover {
  background: #e66a00;
}

.secondary {
  background: transparent;
  border: 1px solid #ccc;
}

.secondary:hover {
  background: #eee;
}


/* ================== FOOTER TEXT ================== */
hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

.contact {
  font-size: 14px;
  color: #555;
}

.contact span {
  color: #ff7a00;
  font-weight: 500;
}
/*============================Footer========================= */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5f5;
  padding: 50px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap:nowrap;
  margin-left: -1px;
}

/* Columns */
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}
.footer-col
{
    padding-right: 100px;
}

/* Logo */
.logo {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.logo span {
  margin-left: 8px;
}
.icon3
{
    font-size: larger;
}

.footer-col h4
{
    color: white;
}
/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #fff;
}
a
{
  text-decoration: white;
  color:  rgb(100 116 139 );
}

/* Divider + bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #334155;
  padding-top: 15px;
  color: #94a3b8;
}


/* ================== MOBILE VIEW ================== */

/* Tablet */
@media (max-width: 768px) {

  /* Header */
  .header {
    height: auto;
    padding: 30px 15px;
    width: 250%;
  }

  .header h1 {
    font-size: 24px;
    margin-top: 20px;
  }

  .header p,
  .header .desc {
    font-size: 14px;
  }

  /* Navbar */
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 15px;
    gap: 10px;
    width: 250%;
    font-size:large;
  }

  .nav-links {
    flex-wrap:nowrap;
    justify-content: left;
    gap: 15px;
  }

  /* Gallery */
  .gallery {
    column-count: 4;
    padding: 15px;
  }
.container {
    width: 250%;
}
  /* CTA */
  .cta-card {
    padding: 30px 20px;
  }

  .buttons {
    flex-direction: column;
  }

  button {
    width: 100%;
  }  
}
/* Mobile Devices */
@media (max-width: 768px) {

  .footer {
    padding: 30px 15px;
    text-align: center;
    width: 250%;
  }

  .footer-container {
    /* display: flex;
    flex-direction: column;  
    gap: 25px;
    align-items: center; */
    display: grid;
    grid: auto/auto auto auto;
  }

  .footer-col {
    width: 100%;
  }

  /* Logo */
  .logo {
    justify-content: center;
    font-size: 18px;
  }

  /* Text */
  .footer p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Social Icons */
  .icon3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
  }

  /* Quick Links */
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    list-style: none;
  }

  /* MAP FIX (IMPORTANT) */
  iframe {
    width: 100% !important;
    height: 200px;
    margin-right: 0 !important;
  }

  /* REMOVE INLINE STYLE ISSUE */
  .footer-container > div[style] {
    margin-right: 0 !important;
    width: 100%;
  }

  /* Bottom */
  .footer-bottom {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .header h1 {
    font-size: 20px;
  }

  .header p {
    font-size: 13px;
  }

  .logo {
    font-size: 16px;
    text-align: center;
  }

  .nav-links {
    flex-direction: row;
    gap: 10px;
  }

  .gallery {
    column-count: 3;
    width: 300%;
  }

  .cta-card h1 {
    font-size: 20px;
  }

  .cta-card .desc {
    font-size: 13px;
  }

  
}