
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: rgba(230,230,250,1);
}
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#breadcrumb-main-page,
#breadcrumb-page,
.d-flex.align-items-center span1 {
  font-size: clamp(16px, 2vw, 22px); /* Responsive between 16px–22px */
  color: white;                      /* Ensure white text */
  font-weight: 600;
   white-space: nowrap;
}

@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span1 {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span {
    font-size: 14px;
  }
}


.about-header {
  background: url('/images/cover_img.png') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  color: white;
  
}






.breadcrumbs {
  font-size: 22px;
  color: white;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .breadcrumbs {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}



/* Responsive Styles */

/* Tablet View */
@media (max-width: 991px) {
  .about-header {
    height: 80vh;
  }

  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 {
    font-size: 36px;
  }

  .about-overlay p {
    font-size: 20px;
  }

  .breadcrumbs {
    padding-right: 100px;
    font-size: 18px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .about-header {
    height: 70vh;
  }

  .about-overlay {
    padding: 30px 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 16px;
  }

 
}


/* Overlay Text */
.about-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 5px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
}

.about-overlay h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-overlay p {
  font-size: 23px;
  line-height: 1.6;
}
/* Tablet View */
@media (max-width: 991px) {
  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 {
    font-size: 36px;
  }

  .about-overlay p {
    font-size: 20px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .about-overlay {
    padding: 50px 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 16px;
  }
}





/*****************************************************/
.circle {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
   
    
    
  }
  .circle:hover .icon-img {
    transform: scale(1.5);
  }
  .circle:hover .label {
    display: none;
  }
  .icon-img {
   
    transition: transform 0.3s ease;
  }
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .featured-title {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
  }

  .icon-img {
    width: 20px;
    height: 20px;
  }

  .label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 80px;
    height: 80px;
  }

  .icon-img {
    width: 10px;
    height: 10px;
  }

  .label {
    font-size: 0.5rem;
  }
}




/******************************************/
 .section-title {
       font-size: 36px;
      font-weight: bold;
      color: #000;
      margin-top: 50px;
      margin-bottom: 50px;
      text-align: center;
    }

    .gallery-wrapper {
      display: flex;
      max-width: 1400px;
      margin: auto;
      gap: 3px;
      flex-wrap: wrap;
    }

    .left-large, .right-grid {
      position: relative;
    }


    .left-large {
  flex: 1;
  min-width: 300px;
  height: 320px; /* Matches total height of right grid */
  position: relative;
}

.left-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-width: 400px;
}

.right-grid .gallery-image {
  height: 231px; /* Fixed height for each */
  position: relative;
}


    .gallery-image {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .gallery-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 600;
      font-size: 32px;
      padding: 20px;
      border-radius: 4px;
    }
    @media (max-width: 1024px) {
  .right-grid {
    grid-template-columns: 1fr;
  }

  .right-grid .gallery-image {
    height: 120px;
  }

  .overlay {
    font-size: 24px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    flex-direction: column;
  }

  .left-large,
  .right-grid {
    width: 100%;
    min-width: auto;
  }

  .left-large {
    height: 200px;
  }

  .right-grid {
    grid-template-columns: 1fr 1fr;
  }

  .right-grid .gallery-image {
    height: 100px;
  }

  .overlay {
    font-size: 20px;
    padding: 12px;
  }

  .section-title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .right-grid {
    grid-template-columns: 1fr;
  }

  .right-grid .gallery-image {
    height: 100px;
  }

  .overlay {
    font-size: 18px;
    padding: 10px;
  }
}



    






/***************************************************/
.advertise-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #f5f7fa;
    }

    .advertise-section h2 {
      font-size: 36px;
      font-weight: bold;
      color: #000;
      margin-bottom: 50px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .card {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      height: 280px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .card:hover img {
      transform: scale(1.05);
    }

    .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 25px;
      font-weight: 600;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 20px 10px;
      border-radius: 8px;
    }
   
    /* iPad Mini specific fixes (768px width) */
@media (max-width: 768px) and (min-width: 577px) {
  /* Fix for advertise-section on iPad Mini */
  .advertise-section {
    padding: 40px 15px;
  }
  
  .advertise-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on iPad Mini */
    gap: 20px;
    max-width: 100%;
  }
  
  .card {
    height: 200px;
    width: 100%; /* Full width within grid column */
  }
  
  .overlay-text {
    font-size: 22px;
    padding: 15px 10px;
  }
  
  /* Fix for about-overlay on iPad Mini */
  .about-overlay {
    padding: 40px 25px;
    transform: translate(-50%, -45%);
    max-width: 600px;
  }
  
  .about-overlay h1 {
    font-size: 32px;
  }
  
  .about-overlay p {
    font-size: 18px;
  }
  
  /* Fix for gallery section on iPad Mini */
  .gallery-wrapper {
    flex-direction: row;
    gap: 10px;
  }
  
  .left-large {
    height: 250px;
  }
  
  .right-grid {
    grid-template-columns: 1fr;
  }
  
  .right-grid .gallery-image {
    height: 120px;
  }
  
  .overlay {
    font-size: 24px;
  }
  
  /* Fix for circle icons on iPad Mini */
  .circle {
    width: 85px;
    height: 85px;
  }
  
  .icon-img {
    width: 24px;
    height: 24px;
  }
  
  .label {
    font-size: 0.7rem;
  }
  
  /* Fix for footer on iPad Mini */
  .footer {
    padding: 30px 40px;
  }
  
  .newsletter-form {
    width: 350px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-columns {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    font-size: 16px;
    padding: 10px 6px;
  }

  .card {
    height: 100px;
    width: 320px;
  }
}

.action-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgb(44, 55, 211) ;
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Default – arrow with no text */
.action-box::before {
  font-size: 18px;
  color: rgb(255, 255, 255);
}

/* Hover – show "Request" instead of arrow */
.card:hover .action-box::before {
  content: "Request";
  font-size: 16px;
}


/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
}
.close-btn:hover { color: #000; }

/* Heading */
.popup-content h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

/* Form Layout */
.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup-content input[type="text"],
.popup-content textarea,
.popup-content select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}
.popup-content input[type="text"]:focus,
.popup-content textarea:focus,
.popup-content select:focus {
  outline: none;
  border-color: #4a6491;
  box-shadow: 0 0 0 2px rgba(74, 100, 145, 0.2);
}

/* Labels + Checkboxes */
.popup-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin: 5px 0;
  cursor: pointer;
}
.popup-content input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #4a6491;
}

/* File Upload */
.file-upload {
  border: 2px dashed #ccc;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}
.file-upload:hover { border-color: #4a6491; }
.file-upload p { margin: 0; font-size: 1rem; color: #333; font-weight: 500; }
.file-upload small { color: #666; font-size: 0.85rem; }
.file-upload input[type="file"] {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* Section Box */
.form-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* text + field + button gaps balance */
  align-items: stretch;           /* ekama width ekata ganna */
  min-height: 120px;              /* thunama ekama height ekata ganna */
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

/* Send Button Right Align */
.form-actions {
  display: flex;
  justify-content: flex-end;
}
.send-btn {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.send-btn:hover {
  background: linear-gradient(90deg, #0056b3, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



    
/***********footer**********************************/
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 60px;
  font-size: 18px;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 23px;
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.newsletter p {
  color: #8f90a6;
}

.newsletter-form {
  display: flex;
  max-width: 450px;
  width: 450px;
}

.newsletter-form input {
  padding: 16px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 17px;
  width: 100%;
  outline: none;
}

.newsletter-form button {
  padding: 14px 20px;
  border: none;
  background-color: #fcee0a;
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.footer-social-icons i {
  font-size: 22px;
  color: #fff;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
}

.footer hr {
  margin: 30px 0;
  border-color: #2a2a2a;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-brand img {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-brand p {
  color: #cfcfcf;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #8f90a6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}

.badges {
  font-size: 10px;
  background: #e6e6e6;
  color: #000;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 15px;
  color: white;
}

@media (max-width: 768px) {
  .newsletter, .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}
/*****************************************************/
.circle {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
   
    
    
  }
  .circle:hover .icon-img {
    transform: scale(1.5);
  }
  .circle:hover .label {
    display: none;
  }
  .icon-img {
   
    transition: transform 0.3s ease;
  }
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .featured-title {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
  }

  .icon-img {
    width: 20px;
    height: 20px;
  }

  .label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 80px;
    height: 80px;
  }

  .icon-img {
    width: 10px;
    height: 10px;
  }

  .label {
    font-size: 0.5rem;
  }
}


/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* page background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader container */
.square-loader {
  display: flex;
  gap: 10px;
}

.square-loader div {
  width: 30px;
  height: 60px;
  background-color: #0d6efd; /* blue squares */
  animation: squareAnim 1.2s infinite ease-in-out;
}

/* Staggered animation for each square */
.square-loader div:nth-child(1) { animation-delay: 0s; }
.square-loader div:nth-child(2) { animation-delay: 0.2s; }
.square-loader div:nth-child(3) { animation-delay: 0.4s; }
square-loader div:nth-child(4) { animation-delay: 0.6s; }

/* Keyframes: scale up and down */
@keyframes squareAnim {
  0%, 100% { transform: scale(0); opacity: 0.3; }
  50% { transform: scale(1); opacity: 1; }
}
#billing-modal .popup-content {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.file-upload input {
    font-size: 0.9rem;
}

/* ===== ADVERTISE PAGE MOBILE HEADER FIX ===== */
@media (max-width: 576px) {
  /* Fix header spacing and layout */
  .about-header {
    height: 50vh !important;
    margin-top: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Fix overlay positioning and size */
  .about-overlay {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    max-width: 320px !important;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 25px 20px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 10px !important;
    text-align: center !important;
  }
  
  .about-overlay h1 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }
  
  .about-overlay p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
  }
}