 .img-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
    position: relative;
  }

  .stacked-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stacked-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .img-top {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .img-bottom {
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .creative-column {
    position: relative;
    height: 100%;
  }

  .img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .img-overlay {
    position: absolute;
    width: 60%;
    height: auto;
    bottom: -20px;
    right: -20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 4px solid white;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
    z-index: 2;
  }

  /* Hover effects */
  .stacked-column img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }

  .img-overlay:hover {
    transform: rotate(0deg) scale(1.05);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .img-grid-container {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .stacked-column {
      flex-direction: row;
    }
    
    .img-overlay {
      width: 50%;
      right: -10px;
      bottom: -10px;
    }
  }

  @media (max-width: 576px) {
    .stacked-column {
      flex-direction: column;
    }
    
    .img-overlay {
      width: 40%;
    }
  }





  /*Faq */
  .creative-image-grid {
    display: grid;
    grid-template-areas:
      "main circle"
      "main small";
    gap: 20px;
    height: 100%;
    position: relative;
  }

  .main-image-container {
    grid-area: main;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    color: #2c3e3e;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .image-badge i {
    color: #9fe870;
    margin-right: 5px;
  }

  

  .circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
  }

  .circle-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #9fe870;
    opacity: 0.2;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    animation: pulse 3s infinite;
  }

  .small-images-grid {
    grid-area: small;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .small-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
  }

  .small-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
  }

  .floating-leaf-1, .floating-leaf-2 {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
  }

  .floating-leaf-1 {
    top: 10%;
    left: -5%;
    width: 60px;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
  }

  .floating-leaf-2 {
    bottom: 15%;
    right: -5%;
    width: 80px;
    transform: rotate(25deg);
  }

  /* Animations */
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
  }

  /* Hover effects */
  .main-image-container:hover .main-image,
  .small-image-wrapper:hover img {
    transform: scale(1.05);
  }

  .circle-image-container:hover .circle-image {
    transform: scale(1.1) rotate(5deg);
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .creative-image-grid {
      grid-template-areas:
        "main main"
        "circle small";
    }
    
    .circle-image-container {
      width: 100px;
      height: 100px;
    }
  }

  @media (max-width: 768px) {
    .creative-image-grid {
      grid-template-areas:
        "main"
        "circle"
        "small";
    }
    
    .circle-image-container {
      justify-self: center;
      margin-bottom: 20px;
    }
    
    .floating-leaf-1,
    .floating-leaf-2 {
      display: none;
    }
  }





  .creative-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 600px; /* Fixed height for the grid */
  }

  .tall-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .tall-image-container {
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .short-image-container {
    height: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .circle-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .circle-image-container {
    height: 300px;
    position: relative;
    border-radius: 50% 50% 12px 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .small-image-container {
    height: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
  }

  .image-overlay h5 {
    font-weight: 600;
    margin-bottom: 5px;
  }

  .image-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .circle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    color: #2c3e3e;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .circle-badge i {
    color: #28a745;
    margin-right: 5px;
  }

  /* Hover Effects */
  .tall-image-container:hover .img-fluid,
  .short-image-container:hover .img-fluid,
  .circle-image-container:hover .img-fluid,
  .small-image-container:hover .img-fluid {
    transform: scale(1.05);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .creative-image-grid {
      grid-template-columns: 1fr;
      height: auto;
    }
    
    .tall-image-container,
    .short-image-container,
    .circle-image-container,
    .small-image-container {
      height: 300px;
    }
    
    .circle-image-container {
      border-radius: 12px;
    }
  }

  @media (max-width: 576px) {
    .tall-image-container,
    .short-image-container,
    .circle-image-container,
    .small-image-container {
      height: 250px;
    }
  }



  /* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  position: relative;
}

.hero-circle {
  border-radius: 50%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-content h1 {
  font-weight: 700;
  line-height: 1.2;
}

.btn-orange {
  background-color: #FF7F50;
  color: white;
}

.btn-green {
  border-color: #7ac121;
  color: #7ac121;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.feature-box {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

/* Services Section */
.service-card {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-img {
  max-height: 150px;
  object-fit: contain;
  margin: 15px auto;
  display: block;
}

/* Loader Css */
/* Loader Styles */
    .loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease-out;
    }
    
    .loader-content {
      text-align: center;
    }
    
    .rohineya-logo {
      font-size: 4rem;
      font-weight: 700;
      color: #ff6b00;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }
    
    .rohineya-logo span {
      display: inline-block;
      position: relative;
    }
    
    /* Animation for each letter */
    .rohineya-logo span:nth-child(1) { animation: bounce 1s ease infinite; }
    .rohineya-logo span:nth-child(2) { animation: bounce 1s ease 0.1s infinite; }
    .rohineya-logo span:nth-child(3) { animation: bounce 1s ease 0.2s infinite; }
    .rohineya-logo span:nth-child(4) { animation: bounce 1s ease 0.3s infinite; }
    .rohineya-logo span:nth-child(5) { animation: bounce 1s ease 0.4s infinite; }
    .rohineya-logo span:nth-child(6) { animation: bounce 1s ease 0.5s infinite; }
    .rohineya-logo span:nth-child(7) { animation: bounce 1s ease 0.6s infinite; }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    
    .loading-bar {
      width: 300px;
      height: 4px;
      background: #f3f3f3;
      border-radius: 2px;
      overflow: hidden;
      margin: 0 auto;
    }
    
    .loading-progress {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #ff6b00, #ff9e00);
      border-radius: 2px;
      transition: width 0.3s ease;
    }
    
    .loading-text {
      margin-top: 1rem;
      color: #666;
      font-size: 0.9rem;
    }
    
    /* Hide loader when page is loaded */
    body.loaded .loader-overlay {
      opacity: 0;
      pointer-events: none;
    }
