:root {
  --primary: #1f5f86;
  --primary-dark: #143d5a;
  --secondary: #7d1f33;
  --accent: #1b8b86;
  --gold: #d7b56d;
  --light: #f5f8fb;
  --white: #ffffff;
  --text: #284255;
  --muted: #678092;
  --border: rgba(22, 57, 87, 0.10);
  --shadow: 0 20px 50px rgba(15, 46, 72, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html, body{
  overflow-x:hidden;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5f7 100%);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand strong {
  font-family: 'Cinzel', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 95px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 139, 134, 0.12), rgba(125, 31, 51, 0.12));
  color: var(--secondary);
  font-size: 0.84rem;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-subtitle {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 24px;
}

.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.topbar a,
.topbar span {
  color: rgba(255, 255, 255, 0.92);
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.topbar-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: 0.3s ease;
}

.topbar-social a:hover,
.footer-social a:hover,
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.tracking {
  letter-spacing: 1.1px;
}

.brand-logo{
height:85px;
width:auto;
object-fit:contain;
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(12px);
}

.navbar {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(17, 43, 65, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(31,95,134,0.14), rgba(27,139,134,0.14), rgba(125,31,51,0.14));
  border: 2px solid rgba(31,95,134,0.15);
}

.navbar-brand strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.navbar-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.navbar .nav-link {
  color: var(--primary-dark);
  font-weight: 600;
  padding: 10px 14px !important;
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 28px);
}

.btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  border-width: 2px;
}

.btn-brand {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 95, 134, 0.22);
}

.btn-brand:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-brand-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.hero-slide {
  min-height: calc(100vh - 120px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 61, 90, 0.88), rgba(125, 31, 51, 0.55), rgba(27, 139, 134, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 100px 0;
  color: var(--white);
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.15;
  margin: 16px 0 18px;
}

.hero-content p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  max-width: 670px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.about-section,
.achievements-section,
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.image-stack {
  position: relative;
  padding-right: 60px;
}

.main-image {
  border: 8px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 30px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  padding: 20px 22px;
  border-radius: 20px;
  width: min(260px, 80%);
  box-shadow: var(--shadow);
}

.info-box,
.service-card,
.feature-card,
.counter-card,
.achievement-panel,
.form-card,
.contact-card-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-box {
  display: flex;
  gap: 14px;
  padding: 18px;
  height: 100%;
}

.info-box i,
.contact-card-item i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 20px rgba(125,31,51,0.18);
}

.info-box h5,
.contact-card-item h5 {
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.info-box p,
.contact-card-item p,
.feature-card p,
.service-card p,
.counter-card p,
.achievement-panel p,
.footer-widget p,
.benefit-item span {
  color: var(--muted);
  margin-bottom: 0;
}

.services-section,
.gallery-section,
.why-us-section {
  position: relative;
}

.services-section::before,
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(27,139,134,0.08), transparent 35%), radial-gradient(circle at bottom right, rgba(125,31,51,0.09), transparent 30%);
  pointer-events: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  transition: 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
}

.service-card:hover,
.feature-card:hover,
.counter-card:hover,
.gallery-card:hover,
.achievement-panel:hover {
  transform: translateY(-10px);
}

.service-icon,
.icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 18px;
}

.service-card h4,
.feature-card h4,
.achievement-panel h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card ul,
.footer-widget ul,
.project-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.footer-widget li,
.project-list li,
.contact-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.footer-widget li{
color: rgb(255 255 255 / 80%); 
}

.service-card li::before,
.footer-widget li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
}

.benefit-item i,
.project-list i,
.contact-list i {
  color: var(--secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card,
.counter-card,
.achievement-panel,
.form-card {
  padding: 28px;
  transition: 0.35s ease;
}

.counter-card {
  text-align: center;
}

.counter-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary);
  margin-bottom: 6px;
}

.project-list li {
  padding-left: 30px;
}

.project-list i {
  position: absolute;
  left: 0;
  top: 5px;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31,95,134,0.09), rgba(27,139,134,0.12));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.93rem;
}

.gallery-marquee {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  padding: 16px 0;
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollGallery 38s linear infinite;
}

.gallery-item-mini,
.gallery-card {
  cursor: pointer;
}

.gallery-item-mini img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(20,61,90,0.12);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  transition: 0.35s ease;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-card .gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(20,61,90,0.82));
  color: #fff;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-modal-content {
  background: rgba(10, 28, 43, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
}

.cta-strip {
  padding: 0 0 30px;
}

.cta-box {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 20px 60px rgba(31,95,134,0.25);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta-box h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}


.office-gallery-section{
  background:#f8fbff;
}

.office-gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.office-gallery-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:transform .4s ease;
}

.office-gallery-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:18px;
  background:linear-gradient(to top, rgba(7,25,42,0.82), rgba(7,25,42,0.08));
  color:#fff;
}

.office-gallery-overlay h5{
  margin:0;
  font-size:1rem;
  font-weight:600;
  line-height:1.4;
}

.office-gallery-card:hover img{
  transform:scale(1.08);
}

.office-gallery-modal-content{
  background:#0f1720;
  border:none;
}

@media (max-width: 575.98px){
  .office-gallery-card img{
    height:240px;
  }

  .office-gallery-overlay h5{
    font-size:.95rem;
  }
}

.contact-card-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-card-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
}

.form-control {
  border-radius: 16px;
  border: 1px solid rgba(20,61,90,0.12);
  padding: 14px 16px;
  min-height: 54px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 95, 134, 0.12);
  border-color: rgba(31,95,134,0.32);
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer-section {
  background: linear-gradient(135deg, #102a3d, #133b49, #6c2236);
  color: rgba(255,255,255,0.88);
  padding: 80px 0 24px;
}

.footer-widget h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-widget a {
  color: rgba(255,255,255,0.8);
}

.footer-widget a:hover {
  color: var(--gold);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.contact-list li {
  padding-left: 28px;
}

.contact-list i {
  position: absolute;
  left: 0;
  top: 5px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.floating-actions{
  position:fixed;
  right:12px;
  bottom:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:1040;
  align-items:center;
}

.float-btn{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:1.8rem;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
  animation:pulseGlow 2s infinite;
  flex-shrink:0;
}

.call-btn{
  background:linear-gradient(135deg, var(--secondary), #aa2e4b);
}

.whatsapp-btn{
  background:linear-gradient(135deg, #25d366, #139f4b);
}

/* prevent hover expansion from creating layout issues */
.float-btn:hover{
  color:#fff;
  transform:scale(1.05);
}

/* mobile + small tablets */
@media (max-width: 767.98px){
  .floating-actions{
    right:10px;
    bottom:10px;
    gap:8px;
  }

  .float-btn{
    width:48px;
    height:48px;
    font-size:1.05rem;
    box-shadow:0 6px 16px rgba(0,0,0,0.16);
  }
}

/* very small devices */
@media (max-width: 399.98px){
  .floating-actions{
    right:8px;
    bottom:8px;
    gap:7px;
  }

  .float-btn{
    width:44px;
    height:44px;
    font-size:1rem;
  }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(39, 187, 170, 0.35), 0 10px 30px rgba(0,0,0,0.2); }
  70% { box-shadow: 0 0 0 16px rgba(39, 187, 170, 0), 0 10px 30px rgba(0,0,0,0.2); }
  100% { box-shadow: 0 0 0 0 rgba(39, 187, 170, 0), 0 10px 30px rgba(0,0,0,0.2); }
}

@keyframes scrollGallery {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1199.98px) {
  .hero-slide {
    min-height: 88vh;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 75px 0;
  }

  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .hero-content {
    padding: 80px 0 95px;
  }

  .image-stack {
    padding-right: 0;
  }

  .floating-card {
    position: static;
    margin-top: 18px;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.84rem;
  }

  .hero-slide {
    min-height: 78vh;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .counter-card,
  .feature-card,
  .service-card,
  .achievement-panel,
  .form-card {
    padding: 22px;
  }

  .gallery-card img {
    height: 220px;
  }

  .map-section iframe {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 64px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }

  .navbar-brand strong {
    font-size: 0.98rem;
  }

  .navbar-brand small {
    font-size: 0.65rem;
  }

  .hero-content {
    padding: 70px 0 85px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}



.services-section{
background:#f8fbff;
}

.service-row{
margin-bottom:70px;
}

.service-img{
width:100%;
border-radius:12px;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.service-img:hover{
transform:scale(1.05);
}

.service-card{
padding:30px;
background:#ffffff;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-icon{
width:65px;
height:65px;
background:#0b5ed7;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-bottom:15px;
color:#fff;
font-size:26px;
transition:0.6s;
}

.service-card .btn{
  min-width: 140px;
}

/* 360 rotation on hover */
.service-card:hover .service-icon{
transform:rotate(360deg);
background:#800020;
}

.service-card h4{
font-weight:700;
margin-bottom:10px;
}

.service-card ul{
padding-left:18px;
margin-top:10px;
}

.service-card ul li{
font-size:15px;
margin-bottom:5px;
}

/* Mobile Fix */

@media(max-width:991px){

.service-row{
flex-direction:column !important;
}

.service-image{
order:1;
margin-bottom:20px;
}

.service-content{
order:2;
}

}


/* PROJECT SECTION */

.projects-section{
background:#f9fbff;
}

.project-img{
width:100%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.4s;
}

.project-img:hover{
transform:scale(1.05);
}

.project-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.project-icon{
font-size:32px;
color:#0b5ed7;
margin-bottom:10px;
}


/* CLIENT SECTION */

.clients-section{
background:#eef4f7;
}

.client-card{
background:#fff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.client-card img{
max-width:120px;
filter:grayscale(100%);
transition:0.4s;
}

.client-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.client-card:hover img{
filter:grayscale(0%);
transform:scale(1.1);
}


.catalog-btn{
  padding:14px 28px;
  font-weight:600;
  letter-spacing:0.5px;
  border-radius:50px;
  transition:all .3s ease;
}

.catalog-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE FIX */

@media(max-width:991px){

.project-row{
flex-direction:column !important;
}

.project-image{
order:1;
margin-bottom:20px;
}

.project-content{
order:2;
}

}



.contact-section{
background:#f8fafc;
}

.contact-card-list{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-card-item{
display:flex;
align-items:flex-start;
gap:18px;
padding:18px 22px;
border-radius:12px;
background:#ffffff;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card-item:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.contact-icon{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:18px;
color:#fff;
}

.contact-card-item h5{
margin-bottom:5px;
font-weight:600;
}

.contact-card-item a{
color:#678092;
text-decoration:none;
font-weight:500;
}

.contact-card-item a:hover{
text-decoration:underline;
}

.form-card{
background:#ffffff;
padding:35px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.form-control{
padding:12px 14px;
border-radius:10px;
border:1px solid #ddd;
}

.form-control:focus{
box-shadow:none;
border-color:#0d6efd;
}

.btn-brand{
background:linear-gradient(135deg, var(--primary), var(--secondary));
color:#fff;
padding:12px 30px;
border-radius:30px;
border:none;
font-weight:600;
}

.btn-brand:hover{
background:#083374;
}







.inner-banner{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.inner-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(8, 36, 74, 0.78), rgba(108, 24, 45, 0.62));
}

.inner-banner-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:110px 0 60px;
}

.inner-banner-content h1{
  font-family:'Cinzel', serif;
  font-size:clamp(2rem, 4vw, 3.4rem);
  font-weight:700;
  margin-bottom:10px;
  color:#fff;
}

.inner-banner-content p{
  margin-bottom:0;
  color:rgba(255,255,255,0.92);
  font-weight:500;
}

.inner-banner-content p a{
  color:#fff;
  text-decoration:none;
}

.inner-banner-content p a:hover{
  color:#d7eef0;
}

.about-page-section{
  background:#fff;
}

.about-page-image-wrap img{
  width:100%;
  object-fit:cover;
}

.about-page-content p{
  color:#4e5b6b;
}

.about-mission-section{
  background:#f8fbff;
}

@media (max-width: 991.98px){
  .inner-banner{
    min-height:280px;
  }

  .inner-banner-content{
    padding:90px 0 45px;
  }
}

@media (max-width: 575.98px){
  .inner-banner{
    min-height:230px;
  }

  .inner-banner-content h1{
    font-size:2rem;
  }

  .inner-banner-content p{
    font-size:0.95rem;
  }
}











/* =============================================
   CIAN ENTERPRISES - Inner Pages Shared CSS
   ============================================= */

:root {
  --primary-dark: #08244A;
  --primary-red: #6C182D;
  --accent: #e8a020;
  --text-dark: #1a1a2e;
  --text-muted: #555f6e;
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --border-color: #e0e5ef;
  --shadow-sm: 0 2px 12px rgba(8, 36, 74, 0.08);
  --shadow-md: 0 6px 32px rgba(8, 36, 74, 0.13);
  --radius: 10px;
  --radius-lg: 18px;
}

/* ---- INNER BANNER ---- */
.inner-banner {
  background: linear-gradient(135deg, rgba(8, 36, 74, 0.78), rgba(108, 24, 45, 0.62));
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 36, 74, 0.78), rgba(108, 24, 45, 0.62));
  z-index: 1;
}

.inner-banner .container {
  z-index: 2;
  position: relative;
}

.inner-banner-content {
  padding: 20px 0;
}

.inner-banner-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.banner-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.7;
}

.breadcrumb-links {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.breadcrumb-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-links a:hover {
  text-decoration: underline;
}

/* ---- PAGE HEADING ---- */
.page-section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

/* ---- MAIN CONTENT SECTION ---- */
.inner-content-section {
  padding: 60px 0 50px;
  background: var(--bg-white);
}

/* ---- TWO COLUMN LAYOUT ---- */
.content-col {
  padding-right: 30px;
}

.image-col {
  padding-left: 10px;
}

.content-col .section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.content-col .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-red));
  border-radius: 2px;
}

.content-col p {
  color: var(--text-muted);
  line-height: 1.82;
  font-size: 0.97rem;
  margin-bottom: 14px;
  text-align: justify;
}

/* ---- IMAGE BLOCK ---- */
.page-image-wrapper {
  position: sticky;
  top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 50px;
}

.page-image-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.img-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #e8edf5 0%, #dce4f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
}

.img-placeholder i {
  font-size: 3rem;
  opacity: 0.4;
}

/* ---- FULL CONTENT DIV ---- */
.full-content-div {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  margin-top: 10px;
  border: 1px solid var(--border-color);
}

.full-content-div h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 28px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.full-content-div h2:first-child {
  margin-top: 0;
}

.full-content-div h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: 20px;
  margin-bottom: 8px;
}

.full-content-div p {
  color: var(--text-muted);
  line-height: 1.82;
  font-size: 0.97rem;
  margin-bottom: 12px;
  text-align: justify;
}

.full-content-div ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
}

.full-content-div ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.full-content-div ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
}

/* ---- WHY CHOOSE CARDS ---- */
.why-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.why-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border-left: 4px solid var(--primary-dark);
  flex: 1 1 calc(50% - 8px);
  min-width: 220px;
  box-shadow: var(--shadow-sm);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.91rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-red));
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.cta-strip p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.cta-strip a.btn-cta {
  background: var(--accent);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.cta-strip a.btn-cta:hover {
  background: #c8860f;
  transform: translateY(-2px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .content-col {
    padding-right: 15px;
  }

  .image-col {
    padding-left: 0;
    margin-top: 30px;
  }

  .page-image-wrapper {
    position: static;
  }

  .full-content-div {
    padding: 28px 22px;
  }

  .why-card {
    flex: 1 1 100%;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .page-image-wrapper{
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .inner-banner {
    min-height: 240px;
  }

  .inner-content-section {
    padding: 36px 0 30px;
  }

  .full-content-div {
    padding: 20px 16px;
    margin-top: 30px;
  }

  .page-image-wrapper img,
  .img-placeholder {
    height: 220px;
  }

  .cta-strip {
    padding: 22px 18px;
  }
}



/* =========================
   DROPDOWN MAIN DESIGN
========================= */
.service-dropdown {
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 240px;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease;
}

/* =========================
   DROPDOWN ITEMS
========================= */
.service-dropdown .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-dropdown .dropdown-item:hover {
  background: #f5f5f5;
  padding-left: 25px;
  color: #000;
}

/* =========================
   SCROLLBAR DESIGN
========================= */
.service-dropdown::-webkit-scrollbar {
  width: 6px;
}

.service-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* =========================
   CUSTOM ARROW
========================= */
.no-arrow::after {
  display: none !important;
}

.custom-arrow {
  display: inline-block;
  margin-left: 6px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: 0.3s ease;
  margin-bottom: 4px;
}

/* Arrow rotate on hover */
.nav-item.dropdown:hover .custom-arrow {
  transform: rotate(225deg);
}

/* =========================
   NAV LINK UNDERLINE EFFECT
========================= */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff6600;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   DROPDOWN HOVER (DESKTOP)
========================= */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 991px) {
  .service-dropdown {
    max-height: 200px;
  }
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 