/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --brand-red:    #CC1818;
  --brand-dark:   #1a1a1a;
  --brand-gray:   #f3f4f6;
  --footer-bg:    #222222;
  --text-muted:   #6b7280;
  --text-dark:    #111827;
  --border-color: #e5e7eb;
}
html,
body {
  overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}



.container,
.container-fluid {
  overflow-x: hidden;
}

* { box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
    background: #212121;
  color: #d1d5db;
  padding: 8px 0;
  font-size: 1rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-tagline { color: #d1d5db; }
.topbar-contacts { display: flex; align-items: center; gap: 24px; }
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-link:hover { color: #fff; }

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1051;
}

/* ============================================================
   NAVBAR
============================================================ */
/* .navbar { padding: 10px 0; } */
.iw-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--brand-red);
  display: flex;
   align-items: center;
   justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brand-red);
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.brand-name {
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #111;
  letter-spacing: 0.03em;
}
.brand-sub {
  font-size: 0.7rem; font-weight: 600;
  color: #555; letter-spacing: 0.03em;
}
.navbar-nav .nav-link {
  font-size: 1rem; font-weight: 500;
  color: #374151; padding: 6px 10px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.nav-active {
  color: var(--brand-red) !important; font-weight: 600;
}
.btn-brand {
  background: var(--brand-red);
   color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
   transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-brand:hover {
	background: #a81414; color: #fff; 
}

.navbar-sticky {
    position: fixed!important;
    top: 40px; /* height of topbar */
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
}

body {
    padding-top: 120px;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
   width: 100%;
  /* height: 560px; */
  /* overflow: hidden; */
}
.hero-bg {
  position: absolute; inset: 0;
	background-image: url(images/hero-banner.png);
  /* background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=1600&h=700&fit=crop&auto=format'); */
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
   justify-content: center;
  /* padding: 0 60px; */
  max-width: 1280px;
  margin: 0 auto;
  left: 0; right: 0;
	top:-400px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff; line-height: 1.1;
  margin-bottom: 16px;
  animation: heroFadeUp 0.9s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 0.2s;
}
.hero-subtitle {
  color: #e5e7eb;
  font-size: 18px; line-height: 1.6;
  max-width: 605px;
   margin-bottom: 32px;
  animation: heroFadeUp 0.9s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 0.4s;
	font-weight:100;
}
.btn-hero {
  display: inline-block;
  /* border: 2px solid #fff; */
  background-color: #c8102e;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  animation: heroFadeUp 0.9s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 0.6s;
}
.btn-hero:hover { 
	background: #fff; 
	color: #c8102e;
	
}


@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gallery Strip */
.gallery-strip {
  position: relative;
  z-index: 10;
  margin: -118px auto 0px 220px;
  max-width: 800px;
  padding: 12px 80px 8px 12px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.gallery-card {
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.12); */
  padding: 20px;
  animation: gallerySlideUp 0.8s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 0.8s;
}
@keyframes gallerySlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gallery-images { display: flex; gap: 12px; align-items: center; }
.gallery-img-wrap {
  flex: 1;
  height: 170px;
   border-radius: 6px;
  overflow: hidden;
  background: #e5e7eb;
  min-width: 0;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-next {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-next:hover {
  background: #a81414;
}

/* =============================================
Application Services – Stylesheet
============================================= */


    /* ── Section wrapper ── */
    .application-services {
    padding: 60px 80px 70px;
    max-width: 1400px;
    margin: 0 auto;
    }
    
    /* ── Section header ── */
    .section-header {
    margin-bottom: 36px;
    }
    
    .section-title {
    font-size: 2.25rem; /* ~36px */
    font-weight: 700;
    color: #c8102e;
    margin-bottom: 10px;
    line-height: 1.2;
    }
    
    .section-subtitle {
    font-size: 1rem;
    color: #3a3a3a;
    font-weight: 400;
    }
    
    /* ── Cards grid ── */
    .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    }
    
    /* ── Individual card ── */
    .service-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    min-height: 180px;
		padding:20px;
    }
    
    /* ── Card left (text) ── */
    .card-content {
    flex: 1 1 55%;
    /* padding: 20px 16px 20px 20px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    
    .card-title {
    font-size: 22px; 
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
    }
    
    .card-description {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 16px;
    }
    
    /* ── Buttons ── */
    .card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    }
    
    .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    }
 .btn:hover{
	 color:#fff;
 }
    
    .btn-primary {
    background-color: #c8102e;
    color: #ffffff;
    border: 1.5px solid #c8102e;
	 padding: 15px 24px;
    }
.btn-card{
	 background-color: #c8102e;
    color: #ffffff;
    border: 1.5px solid #c8102e;
	 padding: 6px 14px;
	
}
.btn-card:hover {
    background-color: #a50d25;
    border-color: #a50d25;
	color: #ffffff;
    }
    
    .btn-primary:hover {
    background-color: #fff;
    /* border-color: #a50d25; */
		color:#cc1818;
    }
    
    .btn-outline {
    background-color: #ffffff;
    color: #c8102e;
    border: 1.5px solid #c8102e;
		padding:12px 36px;
    }
    
    .btn-outline:hover {
    background-color: #c8102e;
    color: #ffffff;
	
    }
    
    /* ── Card right (image) ── */
    .card-image {
    flex: 0 0 45%;
    max-width: 35%;
    overflow: hidden;
    }
    
    .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
	filter: grayscale(0.8);
    }
 .card-image img:hover {
	 filter: brightness(1);
 }


    
    /* ── View All button ── */
    .view-all-wrapper {
    display: flex;
    justify-content: center;
    }
    
    .btn-view-all {
    padding: 10px 40px;
    font-size: 0.9375rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #c8102e;
    border: 1.5px solid #c8102e;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .btn-view-all:hover {
    background-color: #c8102e;
    color: #ffffff;
    }
    
    /* =============================================
    Responsive breakpoints
    ============================================= */
    
    /* Tablet – 2 columns */
    @media (max-width: 1024px) {
    .application-services {
    padding: 48px 40px 56px;
    }
    
    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
    font-size: 1.875rem;
    }
    }
    
    /* Large mobile – 1 column */
    @media (max-width: 768px) {
    .application-services {
    padding: 36px 20px 48px;
    }
    
    .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    }
    
    .section-title {
    font-size: 1.625rem;
    }
    
    .service-card {
    min-height: 160px;
    }
    
    .card-image {
    flex: 0 0 40%;
    max-width: 40%;
    }
    }
    
    /* Extra small – stack card vertically */
    @media (max-width: 420px) {
    .service-card {
    flex-direction: column;
    }
    
    .card-image {
    flex: 0 0 auto;
    max-width: 100%;
    height: 180px;
    }
    
    .card-content {
    padding-bottom: 16px;
    }
    }
/* ============================================================
   MATERIALS SECTION
============================================================ */
.materials-section { background: var(--brand-gray); padding: 64px 0; }
.material-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left; width: 100%;
  height:90px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s, color 0.22s;
  font-family: 'Montserrat', sans-serif;
}

.material-card:hover:not(.active) {
  border-color: var(--brand-red);
  box-shadow: 0 4px 18px rgba(204,24,24,0.1);
  transform: translateY(-2px);
}

/* .material-card.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
} */

.material-card-name {
  font-weight: 600;
  font-size: 1.125rem;
 }

.material-card-sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
  margin-left: 4px;
}
.material-card.active .material-card-sub { color: #fecaca; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: var(--brand-dark); padding: 64px 0 0; }
.about-heading {
  color: #fff; font-weight: 700; font-size: 2rem; margin-bottom: 6px;
  position: relative; display: inline-block;
}
.about-sub     { color: #9ca3af; font-size: 1.125rem; margin-bottom: 16px; }
.about-divider { border-color: #4b5563; width: 50%; margin-bottom: 24px; }
.about-body    { color: #d1d5db; font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }

.about-split { display: flex; align-items: stretch; gap: 0; }
.about-photo {
  width: 80%; min-height: 480px; flex-shrink: 0;
  overflow: hidden; position: relative;
}
.about-photo img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-tab-card {
  flex: 1; background: #fff;
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  display: flex; flex-direction: column;
}

/* Tabs */
.about-tabs { 
	display: flex;
	gap:1;
	border-bottom: 1px solid #e5e7eb; 
	margin-bottom: 20px;
}
.about-image-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 100%;
    overflow: hidden;
}

.about-left-image{
    position: absolute;
    left: -22%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.about-left-image img{
    width: 1400px;
    height: auto;
}

.about-tab-btn {
  font-size: 1rem; font-weight: 600;
  padding: 10px 16px; border: none; background: transparent;
  color: #9ca3af; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.about-tab-btn:hover { color: #374151; }
.about-tab-btn.active { color: #111; border-bottom-color: var(--brand-red); }
.tab-content-text { color: #6b7280; font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.tab-pane { display: none; }
.tab-pane.show.active {
    display: block;
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; }
.feature-item {
  border: 1px solid #e5e7eb; border-radius: 6px;
  padding: 16px; display: flex; flex-direction: column; gap: 6px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.feature-box:hover {
  box-shadow: 0 4px 16px rgba(204,24,24,0.1);
  transform: translateY(-3px);
  border-color: var(--brand-red);
}
.feature-title { font-weight: 600; font-size: 1rem; text-align: center; color: #111; }
.feature-desc  { font-size: 0.75rem; color: #6b7280; text-align: center; line-height: 1.5; }

/* Stats Bar */
.stats-bar { background: #272727; padding: 40px 0; }
.stat-card {
  background: #fff; border-radius: 6px;
  padding: 32px 24px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card-1 {
  background: #fff; border-radius: 6px;
  padding: 32px 24px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.stat-number { color: var(--brand-red); font-weight: 700; font-size: 2rem; display: block; }
.stat-label  { color: #000000; font-size: 1.125rem; display: block; }



/* =============================
   About Section
============================= */

.about-section {
  background-color: #272727;
  overflow: hidden;
}

/* =============================
   Top Area (Dark Text Block)
============================= */

.about-top {
  background-color: #272727;
  /* padding: 64px 0 48px; */
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-subtitle {
  font-size:16px;
  color: #aaaaaa;
  margin-bottom: 18px;
}

.about-divider {
  border: none;
  border-top: 1.5px solid #555555;
  margin: 0 0 26px;
  opacity: 1;
  width: 70%;
}

.about-body {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.75;
  /* max-width: 640px; */
}

/* =============================
   Bottom Area (Image + Card)
============================= */

.about-bottom {
  position: relative;
  min-height: 480px;
}

.about-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 100%;
  overflow: hidden;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
	opacity:80%;
	background-image:url(https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&h=500&fit=crop)
}

/* Container for card positioning */
.about-card-container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 64px;
}

/* =============================
   White Floating Card
============================= */

.about-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px 50px 50px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

/* =============================
   Tabs
============================= */

.about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid #e5e5e5;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.about-tab-btn {
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 10px 20px 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #888888;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  margin-bottom: -1.5px;
}

.about-tab-btn:hover {
  color: #333333;
}

.about-tab-btn.active {
  color: #1a1a1a;
  font-weight: 700;
  border-bottom-color: #c0152a;
}
.about-tab-content {
    min-height: 330px; /* adjust according to your tallest tab */
}


/* =============================
   Tab Content
============================= */

.about-tab-intro {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* =============================
   Feature Boxes (2x2 Grid)
============================= */

.feature-box {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 14px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s ease;
}

.feature-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   VALUED CLIENTS SECTION
============================================================ */
.clients-section { background: #f9fafb; padding: 64px 0; }
.section-title-center { text-align: center; }
.clients-grid { display: flex; flex-direction: column; gap: 24px; }
.clients-row { display: grid; grid-template-columns: repeat(8,1fr); gap: 16px; }
.client-cell {
  display: flex; align-items: center; justify-content: center;
  height: 64px; padding: 0 8px;
  transition: transform 0.25s, filter 0.25s;
  filter: grayscale(20%);
}
.client-cell:hover { transform: scale(1.08); filter: grayscale(0%); }

/* Logo styles */
.logo-acc  { font-style: italic; font-weight: 900; font-size: 1.75rem; color: #CC1818; letter-spacing: -0.02em; }
.logo-cipla { font-weight: 700; font-size: 1.75rem; color: #003DA5; }
.logo-ultratech { display: flex; flex-direction: column; align-items: center; }
.logo-ultratech-badge { background: #F5A623; padding: 2px 8px; border-radius: 3px; }
.logo-ultratech-badge span { color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.logo-ultratech-tagline { color: #003DA5; font-size: 0.6rem; font-weight: 600; margin-top: 2px; }
.logo-ambuja { display: flex; align-items: center; gap: 6px; }
.logo-ambuja-icon { width: 30px; height: 30px; background: #E87722; border-radius: 50%; display:flex;align-items:center;justify-content:center; color:#fff; font-size:0.65rem; font-weight:700; flex-shrink:0; }
.logo-ambuja-text .t1 { color: #1A1A6E; font-size: 0.875rem; font-weight: 800; line-height: 1; }
.logo-ambuja-text .t2 { color: #E87722; font-size: 0.65rem; font-weight: 700; line-height: 1; }
.logo-voltas { display: flex; flex-direction: column; line-height: 1; }
.logo-voltas .v1 { color: #CC1818; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.logo-voltas .v2 { color: #003DA5; font-size: 0.8rem; font-weight: 700; }
.logo-torrent { display: flex; align-items: center; gap: 6px; }
.logo-torrent-icon { width: 32px; height: 32px; border: 2px solid #1A1A6E; border-radius: 6px; display:grid; grid-template-columns:1fr 1fr; gap:2px; padding:5px; flex-shrink:0; }
.logo-torrent-icon span { background:#1A1A6E; border-radius:2px; }
.logo-torrent-text .t1 { color:#1A1A6E; font-size:0.8rem; font-weight:600; line-height:1; }
.logo-torrent-text .t2 { color:#1A1A6E; font-size:0.6rem; font-weight:700; letter-spacing:0.1em; line-height:1; }

/* ============================================================
   GROUP SERVICES SECTION
============================================================ */
.group-services-section {
  position: relative; padding: 80px 0;
  /* background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&h=900&fit=crop&auto=format'); */
  background-size: cover; background-position: center;
}
.group-services-overlay {
  position: absolute; inset: 0; background: var(--brand-gray);
}
.group-services-content { position: relative; z-index: 2; }
.section-title-white {
  color: var(--brand-red); font-weight: 700; font-size: 2rem; margin-bottom: 8px;
  position: relative; display: inline-block;
}
.section-subtitle-white { color: var(--text-muted); font-size: 1.125rem; }
.group-services-grid { display: flex; flex-direction: column; gap: 16px; }
.group-services-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gs-card {
	background: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 8px; padding: 20px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 80px;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.gs-card:hover {
  background: rgba(204,24,24,0.15);
  border-color: rgba(204,24,24,0.6);
  transform: translateY(-3px);
}
.gs-card-title { color: #000; font-size: 1.125rem; font-weight: 500; line-height: 1.4; }
.gs-card-sub   { color:var(--text-muted); font-size: 0.935rem; margin-top: 4px; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section { background: #f9fafb; padding: 64px 0; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-red); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.contact-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(204,24,24,0.12);
}
.contact-label { font-weight: 600; font-size: 1rem; color: #111; margin-bottom: 2px; }
.contact-value { font-size: 0.98rem; color: #6b7280; margin: 0; }
.contact-form-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 36px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-form-title { font-weight: 700; font-size: 24px; margin-bottom: 24px; }
.form-control:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 2px rgba(204,24,24,0.15);
}
.btn-send {
  background: var(--brand-red); color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: 14px; border: none; border-radius: 6px;
  width: 100%; cursor: pointer; transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-send:hover { background: #a81414; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--footer-bg); color: #fff; }
.iw-logo-footer {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--brand-red); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: #fff; flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.footer-brand-name { font-weight: 700; font-size: 0.75rem; color: #fff; line-height: 1.3; }
.footer-brand-sub  { font-size: 0.7rem; color: #9ca3af; }
.footer-heading { font-weight: 600; font-size: 1rem; color: #fff; margin-bottom: 0; }
.footer-text    { font-size: 0.875rem; color: #9ca3af; margin: 0; }
.footer-list    { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a  {
  color: #9ca3af; font-size: 0.875rem; text-decoration: none; line-height: 1.5;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-list a:hover { color: #fff; padding-left: 6px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  /* border: 1px solid #6b7280; */
  display: flex; align-items: center; justify-content: center;
  color: #d1d5db; text-decoration: none; transition: border-color 0.2s;
  background-color: #a81414;
}
.social-icon:hover { border-color: var(--brand-red); color: #fff; }
.footer-bottom { border-top: 1px solid #374151; padding: 16px 0; }
.footer-bottom-text { font-size: 0.875rem; color: #9ca3af; margin: 0; }

/* ============================================================
   ANIMATIONS & SCROLL EFFECTS
============================================================ */

/* Navbar scroll shrink */
.navbar-sticky { transition: box-shadow 0.3s, padding 0.3s; }
.navbar-sticky.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible {
	opacity: 1; 
	transform: translateX(0); 
}

.reveal-right {
  opacity: 0;
  /* transform: translateX(48px); */
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); 
}
.reveal-right.visible { 
	opacity: 1; 
	/* transform: translateX(0);  */
}

/* Staggered children */
.stagger-children > * {
  /* opacity: 0;  */
	/* transform: translateY(28px); */
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.65s; }
.stagger-children.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay: 0.75s; }

/* Back to top button */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-red); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(204,24,24,0.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#backToTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: #a81414; }

.align-ment-div{
  /* position: absolute; */
    transform: translate(-32%, -50%);
    left: 50%;
    top: 50%;
}
.about-tab-card{
  padding: 30px;
    border-radius: 12px;
}
.p-12{
  padding: 0 0 0 12px;
}


/*   slider */
.banner-slide1 .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'next';
  background: #cc1818;
  padding: 15px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  box-shadow: 2px 10px 20px #c0c0c0 !important;
}

.banner-slide1 .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  background: #cc1818;
  padding: 15px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  /* box-shadow: 2px 10px 20px #c0c0c0 !important; */
  position: absolute;
  right: -70px;
}

.banner-slide .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 44px;
    /* top: 266px; */
}
.dot{
  background-color: #f4433624;
}
.logo{
  width: 320px;
    height: auto;
}
/* .banner-slide .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    top: 266px;
} */
.about-banner-img{
  background-image: url(images/about-inner.webp);
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-spacing{
  padding-top: 30px;
  padding-bottom: 50px;
}
.value-clients{
  color: #C50002;
}
.para{
color: #212121;
}
.section-color{
  background-color: #F5F3F3;
}
.Domain-Expertise-banner-img{
  background-image: url(images/Domain-Expertise-banner-img.webp);
  width: 100%;
  /* height: 570px; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-justify{
  text-align: justify;
}




.logo-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    padding: 8px;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
}

/* Inner About Page */
.about-sub-text{
	color:#4a4a4a;
}
.text-justify{
	color:#4a4a4a;
}
.section-spacing-2{
	padding-top:48px;
	padding-bottom:48px;
}
.pointer{
	font-size:16px;
}




/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1920px) and (min-width: 1450px) {
  .gallery-strip {
    position: relative;
    z-index: 10;
    margin: -118px auto 0px 480px;}
}
@media (max-width: 1440px) {
  .align-ment-div{
      transform: translate(-8%, -50%);
    }
	.about-left-image{
		    left: -24%;
	}
	.about-left-image img{
		width:1040px;
	}
}

@media (max-width: 1366px) {
  .align-ment-div{
      transform: translate(-16%, -50%);
    }
}

@media (max-width: 1280px) {
  .align-ment-div{
      transform: translate(-12%, -50%);
    }
}

@media (max-width: 1024px) {
  .align-ment-div{
      transform: translate(-8%, -50%);
    }
    .about-photo img{
      height: 540px;
    }
    .about-tab-card {
    padding: 16px;
}
.about-tab-card{
  padding: 24px;
}
.gallery-strip{
  margin: -118px auto 0px 80px;
}
	.navbar-nav .nav-link{
		font-size:12px;
	}
	.btn-brand{
   padding: 5px 16px;
	}
	 .hero-slide{
    height: 560px;
  }

  .hero-image{
    object-position: center right;
  }

  .hero-title{
    font-size: 42px;
  }

  .hero-subtitle{
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
  }
	.logo{
		width:205px;
	}
	.about-left-image img{
		width:1000px;
	}
	.about-left-image{
		left:-36%;
	}

}
@media(max-width: 991px){

  .hero-slide{
    height: 520px;
  }

  .hero-slide .container{
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-title{
    font-size: 38px;
  }
	.swiper-slide .col-lg-3 {
        width: 12.5%;
    }

}
@media (max-width: 768px) {
  .align-ment-div{
    transform: translate(-50%, -50%);
    top: 80%;
    width: 90%;
    margin: 0px !important;
  }
	.topbar-link{
		display:none;
	}
	.material-card-name{
		font-size:16px;
		font-weight:500;
	}
	.about-left-image{
		left:10%;
	}
	
  /* .stats-bar{
    height: 222px;
  } */
	
  .mt-220{
    /* margin-top: 112px !important; */
  }
  .p-12{
    padding: 0 12px 0 12px;
  }
  .d-flexx-property{
    display: flex;
    justify-content: center;
  }
  .gallery-strip {
    margin: -118px auto 0px 50px;
}
.gallery-strip{
  max-width: 620px;
}
	.about-left-image img{
		width:650px;
	}
}
@media (max-width: 991px) {
  .hero-content { padding: 0 20px; }
  .about-split { flex-direction: column; }
  .about-photo { width: 100%; min-height: 260px; }
  .about-tab-card { border-radius: 0; }
  .clients-row { grid-template-columns: repeat(4,1fr); }
  .group-services-row { grid-template-columns: repeat(1,1fr); }
}
@media (max-width: 575px) {
  .hero-section { height: 420px; }
  .hero-title { font-size: 2rem; }
  .gallery-strip { margin-top: -60px; }
  .clients-row { grid-template-columns: repeat(3,1fr); }
  .group-services-row { grid-template-columns: 1fr; }
  .services-scroll { gap: 0; }
  .service-card { min-width: 90vw; }

  .align-ment-div {
    width: 100%;
    top: 140% !important;
}
.feature-grid{
  grid-template-columns: 1fr;
}
.stat-card{
  padding: 16px 24px;
}
.mt-220 {
  /* margin-top: 523px !important; */
}
.stats-bar{
  /* height: 460px !important; */
}
#backToTop{
  right: 12px;
}
.material-card{
  /* height: 80px; */
}
.service-card-text{
  padding: 16px;
}
.about-tab-card {
  padding: 12px;
}
.btn-hero{
  padding: 8px 16px;
}
.hero-subtitle{
  text-align: justify;
}
.about-body{
  text-align: justify;
}
.tab-content-text{
  text-align: justify;
}
.h-90{
  height: 90px;
}
.btn-send{
  padding: 10px;
}
.contact-form-card{
  padding: 24px;
}
.d-flexx-property{
  display: flex;
  justify-content:start;
  padding-left: 12px !important;
}
.gallery-strip {
  margin: -118px auto 0px 20px;
  margin-top: -84px;
  max-width: 320px;
}
.logo{
  width: 224px;
    height: auto;
}
.topbar-contacts{
  display: block;
}
.section-spacing{
  padding-top: 20px;
    padding-bottom: 20px;
}
	.topbar-link{
		display:none;
	}
	.topbar{
		font-size:14px;
	}
	.section-subtitle{
		font-size:14px;
	}
	.hero-subtitle{
		font-size:16px
	}
	.section-title-red{
		font-size:26px;
	}
	.about-heading{
		font-size:28px;
	}
	.about-sub{
		font-size:16px;
	}
	.navbar-nav .nav-link{
		font-size:12px;
	}
	.materials-section{
		    padding: 48px 0;
	}
	.services-section{
		 padding: 48px 0;
	}
	.about-card-container{
		padding-top:40px;
		padding-bottom:40px;
	}
	.about-left-image{
		    left: -23%;
	}
	.card-title{
		font-size:20px;
	}
	
/* .Domain-Expertise-banner-img{
    height: 700px;
}
	
}
@media (max-width: 400px) {
.Domain-Expertise-banner-img{
  height: 800px;
} */

}
@media (max-width: 375px) {
	.about-left-image{
		left:-34%;
	}
}

@media (max-width: 320px) {
	.stat-card-1{
		margin-top:50px;
	}
	.about-left-image {
    left: -48%;
}
}

/* =============================
   Responsive — Tablet (md)
============================= */

@media (max-width: 991px) {
  .about-image-wrapper {
    width: 60%;
  }

  .about-card {
    padding: 22px 20px 26px;
  }

  .about-tab-btn {
    font-size: 0.82rem;
    padding: 8px 14px 8px 0;
  }
}

/* =============================
   Responsive — Mobile (sm)
============================= */

@media (max-width: 768px) {
  /* .about-top {
    padding: 48px 0 36px;
  } */

  .about-heading {
    font-size: 1.75rem;
  }

  .about-bottom {
    min-height: unset;
  }

  /* Stack image above the card on mobile */
  .about-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .about-bg-image {
    object-position: center 30%;
  }

  .about-card-container {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .about-card {
    padding: 20px 18px 24px;
    border-radius: 8px;
  }

  .about-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .about-tabs::-webkit-scrollbar {
    display: none;
  }

  .about-tab-btn {
    font-size: 0.82rem;
    padding: 8px 16px 8px 0;
  }

  .about-tab-intro {
    font-size: 0.83rem;
  }

  .feature-title {
    font-size: 0.82rem;
  }

  .feature-desc {
    font-size: 0.75rem;
  }
}
/* HERO SECTION */
.hero-section{
  position: relative;
  overflow: hidden;
}

/* SLIDE */
.hero-slide{
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 750px; */
}

/* IMAGE */
.hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* OVERLAY */
.hero-overlay{
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.70) 30%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.05) 100%
  ); */
  z-index: 1;
}

/* CONTAINER */
.hero-slide .container{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}

/* CONTENT */
.hero-content{
  /* max-width: 650px; */
  padding-top: 405px;
  color: #fff;
}

/* TITLE */
.hero-title{
  font-size: 70px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
}

/* PARAGRAPH */
.hero-subtitle{
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f2f2f2;
}

/* BUTTON */
.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #cc1818;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
	width:200px;
}

.hero-btn:hover{
  background: #a11212;
  color: #fff;
}
.hero-slide{
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 750px; */
}

.hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   LAPTOP
========================= */

@media(max-width: 1199px){

  /* .hero-slide{
    min-height: 650px;
  } */

  .hero-content{
    padding-top: 380px;
  }

  .hero-title{
    font-size: 42px;
  }

  .hero-subtitle{
    font-size: 18px;
  }

}

/* =========================
   TABLET
========================= */

@media(max-width: 991px){

  .hero-slide{
    height: 85vh;
    min-height: 600px;
  }

  .hero-content{
    padding-top: 100px;
    max-width: 520px;
  }

  .hero-title{
    font-size: 48px;
  }

  .hero-subtitle{
    font-size: 17px;
    line-height: 1.7;
  }

}

/* =========================
   MOBILE
========================= */



  @media(max-width: 769px){

 .hero-slide{
    height: auto;
    min-height: auto;
  }

   .hero-image{
    width: 100%;
    height: auto;
    /* object-fit: contain; */
  }
	  .hero-section{
    height: auto;
  }
	  .carousel-item{
    height: auto;
  }
	    .hero-slide .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
  }



  .hero-overlay{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.20) 100%
    );
  }

  .hero-slide .container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: flex-start;
  }
 
	
  .hero-content{
    padding-top: 400px;
    max-width: 100%;
  }

  .hero-title{
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .hero-subtitle{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-btn{
    padding: 12px 24px;
    font-size: 14px;
  }

}

/* EXTRA SMALL DEVICES */

@media(max-width: 480px){

  /* .hero-image{
    height: 760px;
  } */

  .hero-content{
    padding-top: 405px;
  }
	.hero-btn{
		width:120px;
		padding:6px 0px;
		font-size:12px;
	}

  .hero-title{
    font-size: 24px;
  }

  .hero-subtitle{
    font-size: 11px;
	  margin-bottom:10px;
  }

}

/* =============================
   Responsive — Small Mobile (xs)
============================= */

@media (max-width: 480px) {
  .about-heading {
    font-size: 1.5rem;
  }

  .feature-box {
    padding: 12px 10px;
  }
}
@media(max-width: 767px){

  .hero-slide{
    height: auto !important;
    min-height: auto !important;
  }

  .hero-image{
    width: 100%;
    /* height: auto !important; */
	  height:200px;
    /* object-fit: contain !important; */
    object-position: right center;
  }

  .carousel-item{
    height: auto;
  }
	.hero-title{
    
    margin-bottom: 8px;
  }

}
/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Navbar dropdown fix */
.navbar .dropdown-menu {
  min-width: 260px;
  max-width: 320px;
  right: auto;
  left: auto;
  overflow-wrap: break-word;
  white-space: normal;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Prevent long text overflow */
.navbar .dropdown-item {
  white-space: normal;
  line-height: 1.4;
  padding: 10px 16px;
}

/* Fix navbar container overflow */
.navbar .container {
  overflow: visible;
}


.logo-box{
    height:65px;
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.logo-box img{
    max-height:60px;
    width:auto;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
}

@media (min-width: 992px) {
    .swiper-slide .col-lg-3 {
        width: 12.5%;
    }
}
.logo-col{
    width:14.25%;
    flex:0 0 14.25%;
}

/* Tablet */
@media (max-width:991px){
    .logo-col{
        width:25%;
        flex:0 0 25%;
    }
}

/* Mobile */
@media (max-width:576px){
    .logo-col{
        width:20%;
        flex:0 0 20%;
    }
	.topbar-tagline{
		font-size:11px;
	}
	.navbar-sticky{
		top: 26px;
	}
	body{
		padding-top: 97px;
	}
	.logo-box{
		
	}
	.card-description{
		font-size:14px;
	}
	.about-subtitle{
		font-size:14px;
	}
	.section-subtitle-white{
		font-size:14px;
	}
	.section-title-white{
		font-size:28px;
	}
	.group-services-section{
		padding: 48px 0;
	}
	.text-justify{
		font-size:14px;
	}
	.about-sub-text{
		font-size:14px;
		color:#4a4a4a;
	}
	.para{
		font-size:14px;
	}
	.logo-box{
		padding:5px;
		height:50px;
	}
	.about-banner-img{
		    height: 120px;
    background-size: cover;
	}
	.section-spacing-2{
	padding-top: 32px;
    padding-bottom: 32px;
	}
	.about-banner-img{
		background-position:left;
	}
	.pointer{
	font-size:14px;
}
	
}
.service-card-1 {
    scroll-margin-top: 130px;
}
/* Product List */
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-list .product-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Product Link */
.product-link {
  display: block;
  width: 100%;
  padding: 14px 16px;
  color: #d6d6d6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

/* Hover */
.product-link:hover {
  background: #cc1818;
  color: #fff;
  padding-left: 22px;
}

/* Active */
.product-link.active {
  background: #cc1818;
  color: #fff;
  font-weight: 600;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Captcha-badge */
.grecaptcha-badge {
    z-index: 2147483647 !important;
}
