* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  background: #0a2540;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  font-size: 22px;
  color: #fff;
}

.logo span {
  font-size: 12px;
  color: #00c2ff;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  color: #00c2ff;
}

.cta {
  display: flex;
  gap: 10px;
}

.call-btn {
  background: #ff6b00;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width: 768px) {

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a2540;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav a {
    padding: 10px 0;
  }

  .cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    display: flex;
  }
}

.hero-section {
  position: relative;
  background: url('../images/banner.webp') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
}

.hero-container {
  position: relative;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.call {
  background: #ff6b00;
  color: #fff;
}

.whatsapp {
  background: #25d366;
  color: #fff;
}

/* FORM */
.hero-form {
  width: 350px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.hero-form h3 {
  margin-bottom: 15px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background: #ffcc00;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-form {
    width: 100%;
  }
}

.about-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  background: #ffcc00;
  color: #0a2540;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0a2540;
  color: #fff;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 26px;
  }
}

.about-collage {
  padding: 80px 0;
  background: #f8f9fc;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE SIDE */
.image-box {
  position: relative;
  width: 50%;
}

.image-box img {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Main Image */
.img1 {
  width: 100%;
}

/* Bottom Right Image */
.img2 {
  width: 70%;
  position: absolute;
  bottom: -40px;
  right: 0;
}

/* Small Overlap Image */
.img3 {
  width: 40%;
  position: absolute;
  bottom: -60px;
  left: -20px;
}

/* CONTENT */
.content-box {
  width: 50%;
}

.content-box h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.content-box p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: #0a2540;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 3px;
}

/* MOBILE */
@media(max-width:768px) {
  .container {
    flex-direction: column;
  }

  .image-box, .content-box {
    width: 100%;
  }

  .img2, .img3 {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
}

.custom-section {
  background: #0a2540;
  padding: 90px 0;
}

.container {
  width: 88%;
  margin: auto;
}

/* HEADING */
.heading {
  text-align: center;
  margin-bottom: 60px;
}

.heading h2 {
  font-size: 40px;
  color: #f4c430;
  margin-bottom: 10px;
  font-weight: 600;
}

.heading p {
  color: #cfd8e3;
  font-size: 16px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
  color: #fff;
}

/* IMAGE STYLE (IMPORTANT – MATCH LOOK) */
.card-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* TEXT */
.card h3 {
  color: #f4c430;
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: #d6dde6;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px) {
  .cards {
    flex-direction: column;
  }

  .heading h2 {
    font-size: 26px;
  }
}

.gallery-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 40px;
  color: #b89600;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

/* MOBILE */
@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section h2 {
    font-size: 26px;
  }
}


.footer {
  background: #0a2540;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 90%;
  margin: auto;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

/* CONTACT LINKS */
.footer-col a {
  color: #ffcc00;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #071a2d;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Section Background */
.msn-contact-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') no-repeat center/cover;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

/* Overlay */
.msn-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 35, 64, 0.85); /* Dark blue overlay */
  z-index: 1;
}

/* Container */
.msn-contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Side */
.msn-contact-left {
  flex: 1;
  color: #fff;
}

.msn-contact-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #ffc107; /* Yellow accent */
}

.msn-contact-left p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.msn-contact-info h4 {
  margin-top: 15px;
  color: #ffc107;
}

.msn-contact-info p {
  margin: 5px 0;
}

/* Right Form */
.msn-contact-right {
  flex: 1;
}

.msn-form-group {
  margin-bottom: 15px;
}

.msn-form-group label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.msn-form-group input,
.msn-form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2f4f6f;
  color: #fff;
  font-size: 14px;
}

.msn-form-group input::placeholder,
.msn-form-group textarea::placeholder {
  color: #ccc;
}

.msn-form-group textarea {
  height: 120px;
  resize: none;
}

/* Button */
.msn-submit-btn {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.msn-submit-btn:hover {
  background: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
  .msn-contact-container {
    flex-direction: column;
  }

  .msn-contact-left h2 {
    font-size: 28px;
  }
}

.breadcrumb-section {
  position: relative;
  height: 280px;
  background: url('../images/banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK OVERLAY */
.breadcrumb-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.75);
  top: 0;
  left: 0;
}

/* CONTENT */
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.breadcrumb-section h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #ffcc00;
}

.breadcrumb span {
  color: #ccc;
}

/* MOBILE */
@media(max-width:768px) {
  .breadcrumb-section {
    height: 200px;
  }

  .breadcrumb-section h1 {
    font-size: 28px;
  }
}


.cta-hero {
  position: relative;
  padding: 100px 20px;
  background: url('../images/g23.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
  top: 0;
  left: 0;
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 2;
}

.cta-content h2 {
  font-size: 42px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
  background: #ffcc00;
  color: #000;
}

.call-btn:hover {
  background: #e6b800;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* TRUST LINE */
.cta-trust {
  font-size: 14px;
  color: #ccc;
}

/* MOBILE */
@media(max-width:768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.contact-cards {
  padding: 70px 0;
  background: #f8f9fc;
}

.contact-cards .container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD STYLE */
.contact-cards .card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* ICON */
.contact-cards .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TITLE */
.contact-cards h3 {
  color: #0a2540;
  margin-bottom: 10px;
}

/* TEXT */
.contact-cards p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.contact-cards a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

/* HOVER EFFECT */
.contact-cards .card:hover {
  transform: translateY(-10px);
  background: #0a2540;
}

.contact-cards .card:hover h3,
.contact-cards .card:hover p,
.contact-cards .card:hover a {
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .contact-cards .container {
    grid-template-columns: 1fr;
  }
}


.why-contact {
  padding: 80px 0;
  background: #0a2540;
  color: #fff;
  text-align: center;
}

.why-contact .container {
  width: 90%;
  margin: auto;
}

/* HEADING */
.why-contact .heading h2 {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.why-contact .heading p {
  color: #ccc;
  margin-bottom: 50px;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* FEATURE CARD */
.feature {
  background: #122c4a;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.feature .icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.feature h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.feature p {
  color: #ddd;
  font-size: 14px;
}

/* HOVER */
.feature:hover {
  transform: translateY(-10px);
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.call {
  background: #ffcc00;
  color: #000;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .features {
    grid-template-columns: 1fr;
  }

  .why-contact .heading h2 {
    font-size: 26px;
  }
}

.about-split {
  padding: 80px 0;
  background: #f8f9fc;
}

.about-split .container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT (70%) */
.about-content {
  flex: 0 0 60%;
}

.about-content h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #ffcc00;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0a2540;
  color: #fff;
}

/* RIGHT IMAGE (30%) */
.about-image {
  flex: 0 0 30%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px) {
  .about-split .container {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 100%;
  }

  .about-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}