/* ==========================================================================
   CORPORATE UI KIT - CLEANED VERSION (NO NAVBAR CODE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a1a1a;
  --primary-dark: #000000;
  --accent: #0066cc;
  --text-main: #1f2937;
  --text-body: #4b5563;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --footer-bg: #1e3a5f;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { 
  text-decoration: none; 
  transition: var(--transition); 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

/* Force Visibility for Animations */
.animate-on-scroll, .fade-in, .blog-animate, .enquiry-animate-left, .enquiry-animate-right {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ===============================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.section-heading {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-main);
}

.section-subheading {
  font-size: 0.95rem;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   HERO SLIDER - NO GAP WITH NAVBAR (HEIGHT REDUCED)
================================ */





.slideshow-container {
  position: relative;
  width: 100%;
  height: 85vh; /* SLIDER HEIGHT REDUCED FROM 100VH */
  background: #111827;
  overflow: hidden;
  margin-top: 0; /* STARTS FROM TOP */
}

.mySlide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; 
  left: 0;
  display: block !important; 
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.mySlide.active { 
  opacity: 1; 
  visibility: visible; 
  z-index: 2; 
}

.mySlide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* thoda jast overlay */
  z-index: 2;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--bg-white);
  max-width: 700px;
  width: 90%;
  text-align: center;
}

.slide-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 25px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.cta-buttons { 
  display: flex; 
  gap: 15px; 
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  border: 1px solid var(--primary);
}

.btn-primary:hover { 
  background: var(--primary-dark); 
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.btn-secondary:hover { 
  background: var(--bg-white); 
  color: var(--text-main); 
}

.prev, .next {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  z-index: 5;
  cursor: pointer; 
  background: rgba(255,255,255,0.1); 
  color: var(--bg-white);
  width: 40px; 
  height: 40px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-radius: 50%; 
  font-size: 1.1rem; 
  transition: var(--transition);
}

.prev { left: 20px; } 
.next { right: 20px; }
.prev:hover, .next:hover { 
  background: var(--primary); 
}

.dots-container { 
  position: absolute; 
  bottom: 25px; 
  width: 100%; 
  text-align: center; 
  z-index: 5; 
}

.dot { 
  display: inline-block; 
  width: 8px; 
  height: 8px; 
  margin: 0 4px; 
  background: rgba(255,255,255,0.4); 
  border-radius: 50%; 
  cursor: pointer; 
  transition: var(--transition);
}

.dot.active, .dot.active-dot { 
  background: var(--accent); 
  width: 20px; 
  border-radius: 10px; 
}

/* ===============================
   ABOUT SECTION - LIGHT BLUE BG
================================ */
.about-section { 
  padding: 60px 0;
  background: #f0f7ff; /* Light Blue */
}

.about-row { 
  align-items: center; 
}

.about-image img { 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-md); 
  transition: var(--transition); 
}

.about-image img:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
}

.about-content { 
  padding: 0 20px; 
}

.animated-heading { 
  font-size: 1.6rem;
  font-weight: 800; 
  color: var(--text-main); 
  margin-bottom: 10px; 
}

.subtitle { 
  color: var(--accent); 
  font-size: 0.9rem; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  margin-bottom: 15px; 
}

.about-content p { 
  color: var(--text-body); 
  font-size: 0.95rem; 
  margin-bottom: 25px; 
  line-height: 1.6;
}

.circle-btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 10px 25px; 
  background: var(--bg-white); 
  color: var(--primary);
  border: 1px solid var(--primary); 
  border-radius: 50px; 
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.circle-btn:hover { 
  background: var(--primary); 
  color: var(--bg-white); 
  box-shadow: var(--shadow-md); 
}

/* ===============================
   WHY CHOOSE US - LIGHT GRAY BG
================================ */
.why-choose-section { 
  padding: 60px 0;
  background: #f8f9fa; /* Light Gray */
  border-top: 1px solid var(--border); 
}

.why-content h2 { 
  font-size: 1.6rem;
  font-weight: 800; 
  color: var(--text-main); 
  margin-bottom: 15px; 
}

.why-content p { 
  color: var(--text-body); 
  font-size: 0.95rem; 
  margin-bottom: 20px; 
}

.choose-box {
  background: var(--bg-white); 
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-sm); 
  transition: var(--transition);
  height: 100%; 
  margin-bottom: 20px;
}

.choose-box:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow-md); 
  border-color: var(--accent); 
}

.choose-box img { 
  width: 35px;
  margin-bottom: 12px; 
}

.choose-box h4 { 
  font-size: 1rem; 
  font-weight: 600; 
  color: var(--text-main); 
  margin-bottom: 8px; 
}

.choose-box p { 
  font-size: 0.9rem; 
  color: var(--text-body); 
}

/* ===============================
   OUR COLLECTION - LIGHT MINT BG
================================ */
.collection-section { 
  padding: 60px 0;
  background: #f0fff4; /* Light Mint */
  overflow: hidden; 
  position: relative;
}

.collection-heading { 
  font-size: 1.8rem;
  font-weight: 800; 
  text-align: center; 
  margin-bottom: 40px; 
  color: var(--text-main);
  position: relative;
}

.collection-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin: 12px auto 0;
  border-radius: 2px;
}

.collection-slider { 
  position: relative; 
  overflow: hidden;
  padding: 15px 0;
}

.collection-wrapper { 
  display: flex; 
  gap: 20px; 
  width: max-content;
  animation: scroll-collection 35s linear infinite;
  will-change: transform;
}

.collection-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll-collection {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.collection-item {
  flex: 0 0 260px;
  height: 320px;
  border-radius: var(--radius); 
  overflow: hidden;
  position: relative; 
  box-shadow: var(--shadow-md); 
  border: 1px solid var(--border); 
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg-white);
}

.collection-item:hover { 
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.collection-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease; 
}

.collection-item:hover img { 
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute; 
  bottom: 0; 
  width: 100%; 
  padding: 20px;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    transparent 100%);
  color: #fff;
  transform: translateY(5px);
  transition: var(--transition);
}

.collection-item:hover .collection-overlay {
  transform: translateY(0);
}

.collection-overlay h5 { 
  font-size: 1.1rem; 
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--bg-white);
}

.collection-overlay span { 
  font-size: 0.85rem; 
  color: #9ca3af;
  font-weight: 500;
}

/* ===============================
   TESTIMONIALS - LIGHT PEACH BG
================================ */
.testimonial-section {
  padding: 60px 0;
  background: #fff5f0; /* Light Peach */
  border-top: 1px solid var(--border); 
  overflow: hidden;
}

.testimonial-track {
  display: flex; 
  gap: 20px; 
  width: max-content; 
  padding: 10px 0;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes scroll-left { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

.testimonial-card {
  width: 320px;
  padding: 20px;
  background: var(--bg-white); 
  border-radius: var(--radius); 
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); 
  transition: var(--transition); 
  flex-shrink: 0;
}

.testimonial-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md); 
}

.testimonial-card img { 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  margin-bottom: 12px; 
  border: 1px solid var(--border); 
}

.testimonial-card p { 
  font-style: normal; 
  color: var(--text-body); 
  margin-bottom: 12px; 
  font-size: 0.85rem; 
  line-height: 1.5;
}

.testimonial-card h4 { 
  font-weight: 600; 
  color: var(--text-main); 
  font-size: 0.9rem; 
  margin-bottom: 2px; 
}

.testimonial-card span { 
  color: var(--accent); 
  font-size: 0.75rem; 
}

/* ===============================
   NEWS SECTION - WHITE BG
================================ */
.news-section { 
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.news-items {
  display: flex; 
  gap: 20px; 
  width: max-content; 
  padding: 10px 0;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.news-container:hover .news-items {
  animation-play-state: paused;
}

.news-item {
  width: 240px;
  background: var(--bg-white); 
  border-radius: var(--radius); 
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); 
  transition: var(--transition); 
  flex-shrink: 0; 
  overflow: hidden;
}

.news-item:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md); 
}

.news-item img { 
  width: 100%; 
  height: 120px;
  object-fit: cover; 
}

.news-title { 
  display: block; 
  font-weight: 600; 
  font-size: 0.9rem; 
  margin: 10px 12px 6px; 
  color: var(--text-main); 
}

.news-desc { 
  font-size: 0.8rem; 
  color: var(--text-body); 
  padding: 0 12px 12px; 
  line-height: 1.4; 
}

/* ===============================
   VIDEO MARQUEE - LIGHT PURPLE BG
================================ */
#video-marquee-wrapper {
  padding: 60px 0;
  background: #f8f5ff; /* Light Purple */
  border-top: 1px solid var(--border);
  overflow: hidden;
}

#video-marquee-wrapper h2 { 
  color: var(--text-main) !important; 
  font-size: 1.8rem;
  font-weight: 800; 
  text-align: center;
  margin-bottom: 40px;
}

#video-container {
  display: flex; 
  gap: 20px; 
  width: max-content; 
  padding: 10px 0;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

#video-marquee-wrapper:hover #video-container {
  animation-play-state: paused;
}

.video-card {
  width: 260px;
  background: var(--bg-white); 
  border-radius: var(--radius); 
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); 
  transition: var(--transition); 
  flex-shrink: 0; 
  overflow: hidden;
}

.video-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md); 
}

.video-iframe { 
  width: 100%; 
  aspect-ratio: 16/9; 
  border-bottom: 1px solid var(--border); 
}

.video-text { 
  padding: 15px; 
}

.video-title { 
  font-weight: 600; 
  font-size: 0.9rem; 
  color: var(--text-main); 
  margin-bottom: 4px; 
}

.video-desc { 
  font-size: 0.8rem; 
  color: var(--text-body); 
}

/* ===============================
   BLOGS - SINGLE ROW WITH 3 CARDS - LIGHT YELLOW BG
================================ */
.blogs-section { 
  padding: 60px 0;
  background: #fffef0; /* Light Yellow */
  border-top: 1px solid var(--border); 
}

.blogs-heading {
  text-align: center;
  margin-bottom: 40px;
}

.blogs-heading h2 { 
  font-size: 1.8rem;
  font-weight: 800; 
  color: var(--text-main); 
}

.blogs-heading h4 { 
  color: var(--accent); 
  font-size: 0.95rem; 
  font-weight: 500; 
  margin-top: 8px; 
}

/* Blog Grid - Single Row with 3 Cards */
.blogs-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card { 
  flex: 0 1 calc(33.333% - 20px);
  max-width: 360px;
  display: block; 
  background: var(--bg-white); 
  border-radius: var(--radius); 
  border: 1px solid var(--border); 
  overflow: hidden; 
  box-shadow: var(--shadow-sm); 
  transition: var(--transition); 
  text-decoration: none;
}

.blog-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md); 
}

.blog-image { 
  height: 180px;
  overflow: hidden; 
  border-bottom: 1px solid var(--border); 
}

.blog-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease; 
}

.blog-card:hover .blog-image img { 
  transform: scale(1.05); 
}

.blog-content { 
  padding: 20px;
}

.blog-meta { 
  font-size: 0.8rem; 
  color: var(--accent); 
  font-weight: 500; 
  margin-bottom: 8px; 
  display: block; 
}

.blog-content h5 { 
  font-size: 1.05rem; 
  font-weight: 600; 
  color: var(--text-main); 
  margin-bottom: 10px; 
  line-height: 1.4; 
}

.blog-content p { 
  color: var(--text-body); 
  font-size: 0.9rem; 
  line-height: 1.5; 
}

/* ===============================
   FEATURED MEDIA - LIGHT GRAY BG
================================ */
.featured-media-section { 
  padding: 60px 0;
  background: #f9fafb; /* Very Light Gray */
  border-top: 1px solid var(--border); 
}

.media-content { 
  display: flex; 
  gap: 25px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.media-video { 
  flex: 1 1 500px; 
}

.media-video video { 
  width: 100%; 
  border-radius: var(--radius); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-sm); 
}

.media-video .media-title { 
  margin-top: 12px; 
  font-weight: 600; 
  font-size: 1.1rem; 
  color: var(--text-main); 
}

.media-images { 
  flex: 1 1 350px; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.media-card { 
  padding: 12px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  border-radius: var(--radius); 
  border: 1px solid var(--border); 
  background: var(--bg-white); 
  transition: var(--transition); 
}

.media-card:hover { 
  box-shadow: var(--shadow-md); 
  transform: translateX(-5px); 
}

.media-card img { 
  width: 70px; 
  height: 70px; 
  border-radius: var(--radius); 
  object-fit: cover; 
}

.media-card .media-title { 
  font-size: 0.95rem; 
  font-weight: 600; 
  color: var(--text-main); 
  margin-bottom: 3px; 
}

.media-card .media-description { 
  font-size: 0.8rem; 
  color: var(--text-body); 
}

/* ===============================
   ENQUIRY FORM - LIGHT CYAN BG
================================ */
.enquiry-section { 
  padding: 50px 0;
  background: #f0fffe; /* Light Cyan */
  border-top: 1px solid var(--border); 
}

.enquiry-left h2 { 
  font-size: 1.6rem;
  font-weight: 800; 
  color: var(--text-main); 
  margin-bottom: 8px; 
}

.enquiry-left h4 { 
  color: var(--accent); 
  font-size: 0.95rem; 
  margin-bottom: 15px; 
  font-weight: 500;
}

.enquiry-left p { 
  color: var(--text-body); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  margin-bottom: 20px;
}

.enquiry-form {
  background: var(--bg-white); 
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md); 
  border: 1px solid var(--border);
}

.enquiry-form label { 
  font-weight: 500; 
  color: var(--text-main); 
  margin-bottom: 5px; 
  display: block; 
  font-size: 0.85rem; 
}

.enquiry-form input, .enquiry-form textarea {
  width: 100%; 
  padding: 10px 12px;
  border-radius: var(--radius); 
  border: 1px solid #d1d5db;
  background: var(--bg-white); 
  font-size: 0.9rem; 
  font-family: 'Inter', sans-serif; 
  transition: var(--transition); 
  margin-bottom: 12px;
}

.enquiry-form input:focus, .enquiry-form textarea:focus { 
  outline: none; 
  border-color: var(--accent); 
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1); 
}

.submit-btn {
  width: 100%; 
  padding: 11px;
  background: var(--primary); 
  color: var(--bg-white); 
  border: none;
  border-radius: var(--radius); 
  font-weight: 500; 
  font-size: 0.95rem; 
  cursor: pointer; 
  transition: var(--transition); 
  margin-top: 5px;
}

.submit-btn:hover { 
  background: var(--primary-dark); 
  transform: translateY(-1px);
}

.error { 
  font-size: 0.8rem; 
  color: #dc2626; 
  display: block; 
  min-height: 18px; 
  margin-top: -10px; 
  margin-bottom: 10px; 
}

/* ===============================
   FOOTER - SMALLER & CLEANER
================================ */
.ijaro-footer { 
  background: var(--footer-bg); 
  color: #e8f1f8;
  padding-top: 40px;
  font-family: 'Inter', sans-serif; 
}

/* Remove horizontal line styles */
.footer-divider,
hr {
  display: none;
}

.footer-newsletter {
  text-align: center; 
  padding: 25px 20px;
  background: transparent;
  margin-bottom: 30px;
}

.footer-newsletter h3 { 
  font-size: 1.2rem;
  color: #e8f1f8;
  margin-bottom: 12px; 
  font-weight: 600; 
}

.footer-newsletter form,
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  padding: 8px 15px;
  border-radius: var(--radius); 
  border: 1px solid rgba(255,255,255,0.2); 
  background: rgba(255,255,255,0.1);
  color: var(--bg-white); 
  width: 200px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer-newsletter button {
  padding: 8px 20px;
  background: var(--accent); 
  color: var(--bg-white); 
  border: none;
  border-radius: var(--radius); 
  font-weight: 500; 
  cursor: pointer; 
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-newsletter button:hover { 
  background: var(--primary); 
  transform: translateY(-2px);
}

.footer-col h5 { 
  color: #e8f1f8;
  font-size: 0.95rem;
  font-weight: 600; 
  margin-bottom: 12px; 
}

.footer-col p, .footer-col ul li { 
  color: #e8f1f8;
  font-size: 0.85rem;
  line-height: 1.6; 
}

.footer-col ul { 
  list-style: none; 
  padding: 0; 
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a { 
  color: #e8f1f8;
  text-decoration: none; 
  transition: var(--transition); 
  font-size: 0.85rem;
}

.footer-col ul li a:hover { 
  color: var(--bg-white); 
  padding-left: 5px;
}

.footer-social a { 
  color: #e8f1f8;
  font-size: 1rem;
  margin-right: 10px; 
  transition: var(--transition); 
  display: inline-block; 
}

.footer-social a:hover { 
  color: var(--bg-white); 
  transform: translateY(-2px); 
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding: 15px 0;
  text-align: center; 
  color: #e8f1f8;
  font-size: 0.75rem;
  margin-top: 30px;
}

/* ===============================
   NEED HELP - LEFT SIDE
================================ */
.need-help-wrapper { 
  position: fixed; 
  left: 20px;
  bottom: 20px; 
  z-index: 9999; 
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.need-help-btn { 
  background: var(--primary); 
  color: #fff; 
  padding: 10px 18px; 
  border-radius: 50px; 
  font-weight: 500; 
  font-size: 0.9rem;
  box-shadow: var(--shadow-md); 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  cursor: pointer; 
  transition: var(--transition); 
}

.need-help-btn:hover { 
  background: var(--primary-dark); 
  transform: translateY(-2px); 
}

.help-options {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.need-help-wrapper:hover .help-options {
  display: flex;
}

.help-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.help-icon:hover {
  transform: scale(1.1);
}

.help-icon.whatsapp {
  background: #25D366;
}

.help-icon.linkedin {
  background: #0077B5;
}

/* ===============================
   OTHER PAGES
================================ */
.export-reach-container { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
}

.export-text { 
  flex: 1 1 500px; 
  margin-right: 20px; 
}

.export-map { 
  flex: 1 1 400px; 
  text-align: center; 
}

.arpinox-catalogue-section { 
  padding: 50px 20px; 
}

.hand-card { 
  width: 100%; 
  max-width: 240px; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-sm); 
  margin-bottom: 15px; 
}

.make-india-wrapper { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 35px; 
  flex-wrap: wrap; 
}

.make-india-left, .make-india-right { 
  flex: 1 1 48%; 
}

.map-wrapper { 
  position: relative; 
  width: 100%; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
}

.map-wrapper iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

.usp-section { 
  padding: 60px 0; 
  background: var(--footer-bg); 
  color: var(--bg-white); 
}

.alert-success { 
  background: #dcfce7; 
  color: #166534; 
  border: 1px solid #bbf7d0; 
  padding: 10px; 
  border-radius: var(--radius); 
  margin-bottom: 12px; 
}

.alert-danger { 
  background: #fee2e2; 
  color: #991b1b; 
  border: 1px solid #fecaca; 
  padding: 10px; 
  border-radius: var(--radius); 
  margin-bottom: 12px; 
}

/* ===============================
   FOOTER - FIXED COLUMN COLORS
================================ */
.ijaro-footer { 
  background: var(--footer-bg); 
  color: #e8f1f8;
  padding-top: 40px;
  font-family: 'Inter', sans-serif; 
}

/* All footer columns same style */
.footer-col {
  margin-bottom: 30px;
}

.footer-col h5 { 
  color: #ffffff; /* White for headings */
  font-size: 0.95rem;
  font-weight: 600; 
  margin-bottom: 12px; 
}

.footer-col p,
.footer-col ul li,
.footer-col a { 
  color: #e8f1f8 !important; /* Same light color for all text */
  font-size: 0.85rem;
  line-height: 1.6; 
}

.footer-col ul { 
  list-style: none; 
  padding: 0; 
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a { 
  color: #e8f1f8 !important;
  text-decoration: none; 
  transition: var(--transition); 
  font-size: 0.85rem;
}

.footer-col ul li a:hover { 
  color: var(--accent) !important; 
  padding-left: 5px;
}

/* Contact Column Specific */
.footer-col p a {
  color: #e8f1f8 !important;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col p a:hover {
  color: var(--accent) !important;
}

.footer-col p i {
  margin-right: 8px;
  color: var(--accent);
}

.footer-social { 
  margin-top: 20px;
}

.footer-social a { 
  color: #e8f1f8 !important;
  font-size: 1rem;
  margin-right: 10px; 
  transition: var(--transition); 
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover { 
  color: var(--bg-white) !important; 
  background: var(--accent);
  transform: translateY(-2px); 
}

/* ===============================
   BLOGS SECTION - FIXED 3 CARDS IN SINGLE ROW
================================ */
.blogs-section { 
  padding: 60px 0;
  background: #fffef0; /* Light Yellow */
  border-top: 1px solid var(--border); 
}

.blogs-heading {
  text-align: center;
  margin-bottom: 50px;
}

.blogs-heading h2 { 
  font-size: 2rem;
  font-weight: 800; 
  color: var(--text-main);
  margin-bottom: 10px;
}

.blogs-heading h4 { 
  color: var(--accent); 
  font-size: 1rem; 
  font-weight: 600; 
  margin-top: 8px;
  margin-bottom: 15px; 
}

.blogs-heading p {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Cards Container - Force Single Row */
.blogs-section .row {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Individual Blog Card Column */
.blogs-section .col-lg-4,
.blogs-section .col-md-6 {
  flex: 0 1 33.333%;
  max-width: 380px;
  margin-bottom: 0 !important; /* Remove bottom margin */
}

/* Blog Card Styling */
.blog-card { 
  display: block; 
  background: var(--bg-white); 
  border-radius: 12px; 
  border: 1px solid var(--border); 
  overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
  transition: var(--transition); 
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.blog-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); 
  border-color: var(--accent);
}

/* Blog Image Container */
.blog-image { 
  height: 220px;
  overflow: hidden; 
  border-bottom: 1px solid var(--border); 
  position: relative;
  background: #f8f9fa;
}

.blog-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s ease; 
}

.blog-card:hover .blog-image img { 
  transform: scale(1.1); 
}

/* Blog Content */
.blog-content { 
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.blog-meta { 
  font-size: 0.8rem; 
  color: var(--accent); 
  font-weight: 600; 
  margin-bottom: 12px; 
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content h5 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--text-main); 
  margin-bottom: 15px; 
  line-height: 1.4;
  min-height: 50px; /* Maintain consistent height */
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h5 {
  color: var(--accent);
}

.blog-content p { 
  color: var(--text-body); 
  font-size: 0.9rem; 
  line-height: 1.6;
  flex-grow: 1; /* Push content to fill space */
}

/* Read More Indicator */
.blog-card::after {
  content: 'Read More →';
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-card:hover::after {
  opacity: 1;
  right: 20px;
}

/* ===============================
   BLOG ANIMATION (Optional)
================================ */
.blog-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Add subtle animation on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blogs-section .col-lg-4 {
  animation: fadeInUp 0.6s ease-out;
}

.blogs-section .col-lg-4:nth-child(1) {
  animation-delay: 0.1s;
}

.blogs-section .col-lg-4:nth-child(2) {
  animation-delay: 0.2s;
}

.blogs-section .col-lg-4:nth-child(3) {
  animation-delay: 0.3s;
}

/* ===============================
   MOBILE RESPONSIVENESS
================================ */
@media (max-width: 992px) {
  .blog-card { flex: 0 1 calc(50% - 15px); }
  .about-row { flex-direction: column; text-align: center; gap: 25px; }
  .about-content { padding: 0; text-align: center; }
}

@media (max-width: 768px) {
  section { padding: 40px 0 !important; }
  
  .slideshow-container { 
    height: 100vh;
    margin-top: 0;
    top: 0;
  }
  
  .slide-content {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  
  .slide-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
  .slide-content p { font-size: 0.8rem; margin-bottom: 15px; }
  
  .cta-buttons { flex-direction: column; gap: 8px; }
  
  .btn-primary, .btn-secondary { 
    width: 100%; 
    max-width: 200px; 
    padding: 9px; 
    font-size: 0.85rem;
  }
  
  .prev, .next { display: none; }
  
  .blog-card { flex: 0 1 100%; max-width: 100%; }
  
  .collection-item { flex: 0 0 85vw; height: 260px; }
  .testimonial-card { width: 85vw; padding: 18px; }
  .news-item { width: 85vw; }
  .video-card { width: 85vw; }
  
  .about-content, .enquiry-left { text-align: center !important; margin: 0 auto 25px; }
  .enquiry-form { padding: 20px; }
  
  .footer-newsletter { padding: 20px 15px; }
  .footer-newsletter form { flex-direction: column; }
  .footer-newsletter input { width: 100%; margin-bottom: 10px; }
  .footer-newsletter button { width: 100%; }
  .footer-col { margin-bottom: 25px; text-align: center; }
  
  .blogs-section .row { flex-direction: column; gap: 20px; }
  .blogs-section .col-lg-4 { flex: 1 1 100%; max-width: 100%; }
}

/* ===============================
   UTILITY CLASSES
================================ */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.p-3 { padding: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }

@media (max-width: 768px) {
  .col-md-3, .col-md-4, .col-md-6 { flex: 0 0 100%; max-width: 100%; }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

