/* Women's Club - Lightweight modern UI with logo color */
:root {
  --logo: #C77EB5;
  --logo-light: #E8C9E2;
  --logo-dark: #9B5B8A;
  --dark: #1a1625;
  --dark-bg: #252033;
  --white: #fff;
  --gray: #626065;
  --gray-light: #f5f5f5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: #333; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout: Bootstrap grid is used - no overrides here */

/* Loader - minimal, hide after load */
.loader-wrapper { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s, visibility 0.4s; }
.loader-wrapper.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { width: 48px; height: 48px; border: 3px solid var(--gray); border-top-color: var(--logo); border-radius: 50%; animation: spin 0.8s linear infinite; }
.loder-section { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
#sticky-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 12px 0; transition: background var(--transition), box-shadow var(--transition);background:#f5f5f5;}
#sticky-header.scrolled { background: rgba(26,22,37,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.logo a { display: inline-block; }
.logo .logo_img { display: inline-block; }
.logo .main_sticky { display: none; }
#sticky-header.scrolled .logo .logo_img { display: none; }
#sticky-header.scrolled .logo .main_sticky { display: inline-block; }
/* Inner pages (privacy, refund, terms): always show dark header so menu is visible on light content */
body.inner-page #sticky-header { background: rgba(26,22,37,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
body.inner-page #sticky-header .logo .logo_img { display: none; }
body.inner-page #sticky-header .logo .main_sticky { display: inline-block; }
body.inner-page{margin-top:110px;}
body.inner-page #sticky-header .consen_menu a{color:#fff;}
body.inner-page .breadcumb-area{padding-top: 50px !important;}
.logo img { height: 80px; width: auto; }
.consen_menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; justify-content: flex-end; flex-wrap: wrap; }
.consen_menu a { color: var(--dark-bg); font-weight: 500; transition: color var(--transition); }
.consen_menu a:hover { color: var(--logo-light); }
#sticky-header.scrolled .consen_menu a{color:#fff;}
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

/* Mobile menu */
.mobile-menu-area { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); z-index: 999; padding: 80px 24px 24px; overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.mobile-menu-area.open { opacity: 1; visibility: visible; }
.mobile-menu .consen_menu ul { flex-direction: column; justify-content: center; align-items: center; font-size: 1.25rem; }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
.menu-toggle { display: none; position: fixed; top: 20px; right: 20px; z-index: 1001; background: var(--dark); border: 2px solid var(--logo); color: var(--white); width: 44px; height: 44px; border-radius: var(--radius-sm); align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); overflow: hidden; }
.menu-toggle:hover { background: var(--logo-dark); }
.menu-toggle .menu-icon { position: absolute; transition: opacity 0.25s ease, transform 0.25s ease; }
/* Hamburger: 3 lines via box-shadow */
.menu-toggle .menu-icon-bar { width: 20px; height: 2px; background: currentColor; border-radius: 1px; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; }
.menu-toggle .menu-icon-close { width: 20px; height: 20px; opacity: 0; transform: rotate(-90deg); pointer-events: none; }
.menu-toggle .menu-icon-close::before,
.menu-toggle .menu-icon-close::after { content: ''; position: absolute; left: 50%; top: 50%; width: 100%; height: 2px; background: currentColor; border-radius: 1px; margin-left: -50%; margin-top: -1px; }
.menu-toggle .menu-icon-close::before { transform: rotate(45deg); }
.menu-toggle .menu-icon-close::after { transform: rotate(-45deg); }
.menu-toggle.is-open .menu-icon-bar { opacity: 0; transform: rotate(90deg); pointer-events: none; }
.menu-toggle.is-open .menu-icon-close { opacity: 1; transform: rotate(0); pointer-events: auto; }

/* Hero / Slider */
.slider-area { min-height: 100vh; background: var(--dark); color: var(--white); padding: 140px 0 80px; position: relative; overflow: hidden; }
.slider-area::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 70% 50%, rgba(199,126,181,0.12) 0%, transparent 50%); pointer-events: none; }
.slider-content h3 { font-size: 1rem; font-weight: 600; color: var(--logo-light); margin-bottom: 8px; letter-spacing: 0.05em; }
.slider-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin: 0 0 16px; line-height: 1.2; }
.slider-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.lines .line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--logo), var(--logo-light)); border-radius: 2px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.hero-social { display: flex; gap: 12px; margin-bottom: 24px; }
.hero-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--logo-light); color: var(--logo-light); border-radius: 50%; font-size: 1.1rem; font-weight: 700; transition: background var(--transition), color var(--transition); }
.hero-social a:hover .hero-social-icon { background: var(--logo-light); color: var(--dark); }
.hero-social-icon svg { display: block; flex-shrink: 0; }
.banner-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.banner-buttons a { display: block; line-height: 0; transition: opacity var(--transition); }
.banner-buttons a:hover { opacity: 0.9; }
.store-badge { height: 44px; width: auto; display: block; }
.mt-3 { margin-top: 1rem; }
.slider-thumb { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.06); }
.hero-video-wrap { min-height: 320px; display: block; background: var(--dark); }
.hero-video-wrap .hero-video { width: 100%; height: 500px; min-height: 320px; max-height: 70vh; object-fit: contain; display: block; border-radius: var(--radius); }
.video-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.video-vemo-icon { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: rgba(255,255,255,0.95); color: var(--dark); border-radius: 50%; font-size: 28px; transition: transform var(--transition), background var(--transition); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.video-vemo-icon:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--white); color: var(--logo); }
.video-vemo-icon .fa-play { margin-left: 4px; }
.slider-shape { display: none; }

/* Hero Owl Carousel */
.hero-slider.owl-carousel .owl-nav button { color: var(--white); background: rgba(199,126,181,0.8) !important; width: 44px; height: 44px; border-radius: 50%; transition: background var(--transition); }
.hero-slider.owl-carousel .owl-nav button:hover { background: var(--logo) !important; color: var(--white); }
.hero-slider.owl-carousel .owl-dots .owl-dot span { background: rgba(255,255,255,0.4); }
.hero-slider.owl-carousel .owl-dots .owl-dot.active span { background: var(--logo); }
.hero-slider .item .slider-thumb { margin: 0; }
.hero-video-slider .item .hero-video-wrap { margin: 0; background: var(--dark); }
.hero-video-slider .item .hero-video { width: 100%; height: 500px; min-height: 320px; max-height: 70vh; object-fit: contain; display: block; border-radius: var(--radius); }
.hero-slide-img { border-radius: var(--radius); min-height: 320px; object-fit: cover; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.w-100 { width: 100%; }

/* Section titles - Oswald, uppercase */
.consen-section-title h2,
.process-heading,
.app-cta-title,
.app-cta-accent,
.em-service-title h2,
.skill-title h3,
.process-title h3,
.contact-form-title h4,
.widget-title,
.breadcumb-content h1 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.consen-section-title h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin: 0 0 12px; }
.consen-section-title h2 span { color: var(--logo); }
.consen-section-title.white h2, .consen-section-title.white p { color: var(--white); }
.consen-section-title.white h2 span { color: var(--logo-light); }
.consen-section-title p { margin: 0; opacity: 0.9; font-family: 'Inter', sans-serif; text-transform: none; }
.pb-10 { padding-bottom: 10px; }
.mb-90 { margin-bottom: 48px; }

/* Service area - cards */
.service-area { padding: 80px 0; background: var(--gray-light); }
.dreamit-service-box { height: 100%; }
.service-box-inner { background: var(--white); padding: 32px 24px; border-radius: var(--radius); height: 100%; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border-left: 4px solid transparent; }
.service-box-inner:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(199,126,181,0.12); border-left-color: var(--logo); }
.em-service-icon { margin-bottom: 16px; }
.em-service-icon img { width: 56px; height: 56px; object-fit: contain; }
.em-service-title h2 { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px; color: var(--dark); }
.service-number h1 { font-size: 2.5rem; font-weight: 800; color: rgba(0,0,0,0.06); margin: 0 0 8px; line-height: 1; }
.em-service-title { order: 1; }
.em-service-text p { margin: 0; font-size: 0.95rem; color: #555; line-height: 1.6; }
.p-0 { padding: 0 !important; }
.h-100 { height: 100%; }
.mb-5 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* About area - dark */
.about-area { padding: 80px 0; background: var(--dark-bg); color: var(--white); position: relative; }
.dreamit-about-thumb { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img { border-radius: var(--radius); width: 100%; object-fit: cover; min-height: 280px; }
.about-shape-thumb1, .about-shape-thumb2 { display: none; }
.dreamit-icon-title h4 { font-size: 1.1rem; margin: 16px 0 0; }
.dreamit-icon-title h4 span { color: var(--logo-light); }
.lines.style-two .line { background: linear-gradient(90deg, var(--logo), transparent); }
.pb-15 { padding-bottom: 15px; }

/* Counter - Honor with Success section */
.counter-vip { padding: 40px 0 0; }
.honor-counters { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.honor-counters.in-view { opacity: 1; transform: translateY(0); }
.honor-counter-item { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.honor-counters.in-view .honor-counter-item { opacity: 1; transform: translateY(0); }
.honor-counters.in-view .col-md-3:nth-child(1) .honor-counter-item { transition-delay: 0.1s; }
.honor-counters.in-view .col-md-3:nth-child(2) .honor-counter-item { transition-delay: 0.2s; }
.honor-counters.in-view .col-md-3:nth-child(3) .honor-counter-item { transition-delay: 0.3s; }
.honor-counters.in-view .col-md-3:nth-child(4) .honor-counter-item { transition-delay: 0.4s; }
.couter-top-title { margin-bottom: 24px; text-align: center; }
.couter-top-title h3 { font-size: 1.1rem; margin: 0; opacity: 0.9; }
.counter-single-box { text-align: center; padding: 16px; }
.counter-vip .counter-title h4 { font-family: 'Oswald', sans-serif; }
.counter-vip .counter-title h4::after { content: '+'; }
.honor-counters.in-view .col-md-3:nth-child(4) .counter-title h4::after{content:"" !important;}
.counter-title h4 { font-size: 2.25rem; font-weight: 800; margin: 0; color: var(--logo-light); }
.counter-title span { font-size: 1.5rem; color: var(--logo-light); }
.counter-title p { margin: 4px 0 0; font-size: 0.9rem; opacity: 0.85; }
/* Vertical dividers between counter stats */
.honor-counters .counter-single-box { position: relative; }
.honor-counters [class*="col-"]:not(:first-child) .counter-single-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  min-height: 32px;
  background: var(--logo);
  opacity: 0.9;
}

/* CEO / Founder */
.ceo-cod-area { padding: 80px 0; background: var(--white); }
.consen-section-title h2 span { color: var(--logo); }
.lines.style-three .line { width: 60px; height: 4px; background: var(--logo); border-radius: 2px; }
.pt-20 { padding-top: 20px; }
.about-text2, .about-text { margin: 0 0 16px; color: #444; }
.founder-quote { margin: 0 0 24px; padding: 0; border: none; }
.founder-quote cite { display: block; margin-top: 16px; font-size: 1rem; font-weight: 600; color: var(--logo); font-style: normal; }
.dreamit-about-thumb1 { position: relative; border-radius: var(--radius); overflow: hidden; }
.dreamit-about-thumb1 .about-img { min-height: 320px; }
.about-shape-box { display: none; }

/* Skill / Mission */
.skill-area { padding: 80px 0; background: var(--dark-bg); color: var(--white); }
.upper { margin-top: 0; }
.pt-30 { padding-top: 30px; }
.slill-text { margin: 0 0 16px; opacity: 0.9; }
.dreamit-icon-list { list-style: none; margin: 0; padding: 0; }
.dreamit-icon-list li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.dreamit-icon-list li i { color: var(--logo); flex-shrink: 0; margin-top: 4px; }
.dreamit-icon-list li i::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(199,126,181,0.25); border-radius: 50%; font-size: 12px; font-weight: bold; font-style: normal; }
.slill-single-thumb { position: relative; }
.slill-single-thumb img { border-radius: 50px 50px 50px 0; }
.skill-img { min-height: 260px; object-fit: cover; }
.section-subtitle { font-size: 1rem; color: var(--logo); margin: 8px 0 0; font-weight: 600; }
.skill-thumb-content { position: absolute; bottom: 24px; right: 24px; background: var(--logo); color: var(--white); padding: 20px 28px; border-radius: var(--radius-sm); text-align: center; box-shadow: 0 8px 24px rgba(199,126,181,0.4); }
.skill-title h3 { margin: 0; font-size: 2rem; font-weight: 800; }
.skill-title h5 { margin: 4px 0 0; font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.9; }
.pl-50 { padding-left: 40px; }
.mt-4 { margin-top: 24px; }
.skill-shape, .skill-shape1 { display: none; }

/* Process / Membership - proper 2x2 grid + right content */
.process-area { padding: 80px 0; background: var(--gray-light); }
.process-row { gap: 2rem; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.process-card { background: var(--white); padding: 28px 24px; border-radius: var(--radius); box-shadow: var(--shadow); transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; min-height: 0; }
.process-card:hover { box-shadow: 0 12px 32px rgba(199,126,181,0.12); transform: translateY(-2px); }
.process-card .process-number { width: 48px; height: 48px; background: var(--logo); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.25rem; margin-bottom: 16px; flex-shrink: 0; }
.process-card .process-title { flex: 1; }
.process-title h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--dark); font-weight: 700; line-height: 1.3; }
.process-title p { margin: 0; font-size: 0.9rem; color: #555; line-height: 1.55; }
.process-content { padding-left: 0; }
.process-heading { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin: 0 0 4px; color: var(--dark); }
.process-content .section-subtitle { font-size: 1rem; color: var(--logo); margin: 0 0 12px; font-weight: 600; display: block; }
.process-desc { margin: 0 0 12px; font-size: 0.95rem; color: #555; line-height: 1.6; }
.process-desc:last-child { margin-bottom: 0; }

/* Contact / FAQ area */
.faq-area.two { padding: 80px 0; background: var(--dark-bg); color: var(--white); position: relative; }
.tab_container .consen-section-title.white h5 { font-size: 0.9rem; color: var(--logo-light); margin: 0 0 8px; }
.tab_container .consen-section-title.white h2 { margin: 0; }
.pb-40 { padding-bottom: 40px; }
.mb-1 { margin-bottom: 4px; }

/* Service widgets - 3 columns per row on tablet/desktop; 2 col tablet, 1 col mobile */
/* .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
} */
.services-grid .widget-service { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 16px; }
.widget-service { width: 100%; color: var(--white); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 20px; border-radius: var(--radius); transition: background var(--transition), border-color var(--transition); }
.widget-service:hover { background: rgba(199,126,181,0.15); border-color: var(--logo); }
.widget-service img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 12px; }
.widget-service h6 { margin: 0; font-size: 0.9rem; font-weight: 600; line-height: 1.35; text-align: center; color: var(--white); }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.text-white { color: var(--white); }
.text-center { text-align: center; }
[style*="padding-top: 15px"] { padding-top: 12px !important; padding-bottom: 12px !important; }

/* Contact form */
.contract-form-bg { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; }
.contact-form-title h4 { margin: 0 0 8px; font-size: 1.5rem; color: var(--white); }
.contact-form-title p { margin: 0 0 24px; opacity: 0.8; font-size: 0.95rem; }
.form_box { margin-bottom: 20px; }
.form_box input, .form_box textarea { width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); color: var(--white); font-size: 1rem; font-family: inherit; transition: border-color var(--transition), box-shadow var(--transition); }
.form_box input::placeholder, .form_box textarea::placeholder { color: rgba(255,255,255,0.5); }
.form_box input:focus, .form_box textarea:focus { outline: none; border-color: var(--logo); box-shadow: 0 0 0 3px rgba(199,126,181,0.2); }
.form_box textarea { min-height: 120px; resize: vertical; }
.quote_button { margin-top: 8px; }
.quote_button .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--logo); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background var(--transition), transform var(--transition); }
.quote_button .btn:hover { background: var(--logo-dark); transform: translateY(-1px); }
.quote_button .btn-send { letter-spacing: 0.08em; padding: 14px 32px; }
.quote_button .btn-send:disabled { opacity: 0.8; cursor: not-allowed; transform: none; }
.contact-form-status { margin-top: 16px; min-height: 24px; }
.contact-form-message { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.contact-form-success { color: var(--logo-light); }
.contact-form-error { color: #f5a8b8; }
.contact-form-status-error .contact-form-message { font-weight: 500; }
.ml-2 { margin-left: 8px; }
.form-shape { display: none; }
.map-link { background: var(--gray-light) !important; }
.map-link a { color: var(--dark); }
.map-link a:hover { color: var(--logo); }

/* App download CTA section - gradient follows mouse */
.app-cta-section {
  position: relative;
  padding: 80px 24px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--white);
  overflow: hidden;
}
.app-cta-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(199, 126, 181, 0.35) 0%,
    rgba(155, 91, 138, 0.15) 35%,
    transparent 60%
  );
  transition: background 0.15s ease-out;
}
.app-cta-section .container { position: relative; z-index: 1; text-align: center; }
.app-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.app-cta-accent {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--logo-light);
}
.app-cta-desc {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.6;
}
.app-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.app-cta-btn {
  display: block;
  line-height: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.app-cta-btn:hover { transform: scale(1.03); opacity: 0.95; }
.app-cta-btn-img { height: 44px; width: auto; display: block; }
.app-cta-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.9;
}
.app-cta-benefits li {
  position: relative;
  padding-left: 20px;
}
.app-cta-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--logo-light);
}

/* Map - responsive height */
.blog-area.blog-new { padding: 0; }
.blog-area.blog-new iframe { display: block; height: 320px; }
.blog-area.blog-new p { margin: 0; }
.blog-area.blog-new .map-link { padding: 12px 16px; }

/* Footer */
.footer-middle { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-bg { position: relative; padding-bottom: 40px; }
.widget-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 16px; color: var(--white); }
.company-info-desc p { margin: 0 0 12px; font-size: 0.95rem; opacity: 0.85; line-height: 1.6; }
.pr-2 { padding-right: 8px; }
.footer-logo a { display: inline-block; }
.footer-logo img { height: 48px; width: auto; }
.follow-company-icon { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.follow-company-icon a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); transition: background var(--transition), color var(--transition); }
.follow-company-icon a:hover { background: var(--logo); color: var(--white); }
.follow-company-icon a svg { flex-shrink: 0; }
.footer-app-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-app-badges a { display: block; line-height: 0; }
.footer-badge { height: 36px; width: auto; display: block; transition: opacity var(--transition); }
.footer-badge:hover { opacity: 0.9; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; }
.footer-contact-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--logo-light); flex-shrink: 0; }
.footer-contact-icon svg { display: block; }
.mb-3 { margin-bottom: 1rem; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer-menu a:hover { color: var(--logo-light); }
.foorer-shape { display: none; }
.footer-bottom-area { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-content p { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.footer-bottom-content a { color: var(--logo-light); }
.mb-4 { margin-bottom: 24px; }
.mt-5 { margin-top: 32px; }
.p-0 { padding: 0 !important; }
.mr-2 { margin-right: 8px; }

/* Policy pages: breadcrumb / page header - clear fixed nav, no overlap */
.breadcumb-area {
  padding-top: 100px;
  padding-bottom: 32px;
  min-height: 0;
  background: var(--gray-light);
}
.breadcumb-content h1 {
  margin: 0 0 12px 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.breadcumb-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--gray);
}
.breadcumb-content ul li {
  display: inline;
}
.breadcumb-content ul li:not(:last-child)::after {
  content: ' \00a0/\00a0 ';
  color: var(--gray);
}
.breadcumb-content ul a {
  color: var(--logo);
}
.breadcumb-content ul a:hover {
  color: var(--logo-dark);
}
.britcam-shape {
  display: none;
}
.feature-area.style-two {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Scroll to top */
.scroll-area { position: fixed; bottom: 24px; right: 24px; z-index: 99; }
.go-top-btn-wraper { display: block; }
.go-top { width: 48px; height: 48px; background: var(--logo); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(199,126,181,0.4); transition: transform var(--transition), background var(--transition); border: none; }
.go-top:hover { background: var(--logo-dark); transform: translateY(-2px); }
.go-top i { font-size: 18px; }
.go-top i:last-child { display: none; }
.scroll-area.hide { opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.scroll-area { opacity: 1; transition: opacity var(--transition); }

/* Simple fade-in (replaces WOW) */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE (all breakpoints in one place: 991px / 767px / 575px) ========== */
.container { padding-left: 16px; padding-right: 16px; }
.service-area,
.about-area,
.ceo-cod-area,
.skill-area,
.process-area,
.faq-area.two,
.app-cta-section { padding-top: 56px; padding-bottom: 56px; }
.consen-section-title h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
.about-area .about-main-row { gap: 0; }
.counter-vip { padding-top: 32px; }
.faq-contact-row .col-md-12:first-child { margin-bottom: 0; }
.footer-row .widget { margin-bottom: 0; }
.scroll-area { bottom: 24px; right: 24px; }

/* Min-width: larger screens get more padding / size */
@media (min-width: 576px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .store-badge { height: 50px; }
  .app-cta-btn-img { height: 50px; }
  .blog-area.blog-new iframe { height: 380px; }
  .footer-badge { height: 40px; }
}
@media (min-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .service-area,
  .about-area,
  .ceo-cod-area,
  .skill-area,
  .process-area,
  .faq-area.two,
  .app-cta-section { padding-top: 64px; padding-bottom: 64px; }
  .blog-area.blog-new iframe { height: 450px; }
}
@media (min-width: 992px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .service-area,
  .about-area,
  .ceo-cod-area,
  .skill-area,
  .process-area,
  .faq-area.two,
  .app-cta-section { padding-top: 80px; padding-bottom: 80px; }
}

/* max-width: 991px — tablet and below */
@media (max-width: 991px) {
  .menu-toggle { display: flex; }
  .consen_nav_manu .consen_menu { display: none; }
  .mobile-menu-area { display: block; }
  .slider-area { min-height: auto; padding: 100px 0 60px; }
  .slider-content h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); margin-bottom: 12px; }
  .slider-content h3 { font-size: 0.95rem; }
  .slider-content p { font-size: 1rem; margin-bottom: 20px; }
  .hero-slide-img { min-height: 260px; }
  .about-img { min-height: 240px; }
  .consen-section-title.white p { font-size: 0.95rem; line-height: 1.6; }
  .dreamit-icon-title h4 { font-size: 1rem; }
  .counter-vip { padding-top: 28px; }
  .service-area { padding-top: 48px; padding-bottom: 48px; }
  .service-box-inner { padding: 24px 20px; }
  .em-service-title h2 { font-size: 1.15rem; }
  .em-service-text p { font-size: 0.9rem; }
  .ceo-cod-area .row.align-items-center > div:first-child { margin-bottom: 24px; }
  .dreamit-about-thumb1 .about-img { min-height: 280px; }
  .skill-area .row [class*="col-"]:first-child { margin-bottom: 24px; }
  .skill-title h3 { font-size: 1.5rem; }
  .slill-text { font-size: 0.95rem; }
  .process-content { padding-left: 0; margin-bottom: 2rem; text-align: center; }
  .process-content .lines { display: flex; justify-content: center; }
  .process-content .line { margin: 0; }
  .process-row { gap: 1.5rem; }
  .process-content { margin-bottom: 1.5rem; }
  .faq-contact-row .col-md-12:first-child { margin-bottom: 32px; }
  .faq-area.two .tab_container .row [class*="col-"]:first-child { margin-bottom: 24px; }
  .faq-area.two .pl-0 { padding-left: 0; }
  .faq-area.two .tab_container .consen-section-title { text-align: center; }
  .contract-form-bg { padding: 24px; }
  .contact-form-title h4 { font-size: 1.35rem; }
  .footer-middle { padding-top: 48px; }
  .footer-bg { padding-bottom: 32px; }
  .footer-row > [class*="col-"] { margin-bottom: 28px; }
  .footer-row > [class*="col-"]:last-child { margin-bottom: 0; }
  .mb-4 { margin-bottom: 20px; }
}

/* max-width: 767px — mobile / tablet (single main breakpoint) */
@media (max-width: 767px) {
  .honor-counters [class*="col-"]:nth-child(3) .counter-single-box::before { display: none; }
  .pl-50 { padding-left: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-area .about-main-row > [class*="col-"] { margin-bottom: 24px; }
  .about-area .about-main-row > [class*="col-"]:last-child { margin-bottom: 0; }
  .counter-single-box { padding: 12px 8px; }
  .counter-title h4 { font-size: 1.75rem; }
  .counter-title p { font-size: 0.85rem; }
  .faq-contact-row .col-md-12:first-child { margin-bottom: 28px; }
  .faq-area.two .tab_container .row [class*="col-"]:first-child { margin: 0; }
  .faq-area.two .tab_container .row [class*="col-"]:last-child { margin-bottom: 0; }
  .app-cta-section { padding: 56px 16px; min-height: 360px; }
  .app-cta-title { font-size: 1.35rem; }
  .app-cta-accent { font-size: 1.2rem; }
  .app-cta-desc { font-size: 0.95rem; margin-bottom: 24px; }
  .app-cta-benefits { font-size: 0.85rem; gap: 12px 20px; }
  .footer-row > [class*="col-"] { margin-bottom: 24px; }
  .footer-row .widget-title { margin-top: 0; }
  .scroll-area { bottom: 20px; right: 20px; }
  .slider-thumb{margin-top:20px;}
}

/* max-width: 575px — small mobile */
@media (max-width: 575px) {
  .slider-area { padding: 88px 0 48px; }
  .slider-content h1 { font-size: 1.75rem; }
  .slider-content p { font-size: 0.95rem; }
  .banner-buttons { gap: 10px; }
  .store-badge { height: 40px; }
  .hero-slide-img { min-height: 220px; }
  .video-vemo-icon { width: 64px; height: 64px; font-size: 22px; }
  .consen-section-title h2 { font-size: 1.35rem; margin-bottom: 8px; }
  .consen-section-title p { font-size: 0.95rem; }
  .mb-5 { margin-bottom: 1.5rem; }
  .about-img { min-height: 200px; }
  .about-area .about-main-row > [class*="col-"] { margin-bottom: 20px; }
  .counter-vip { padding-top: 24px; }
  .counter-title h4 { font-size: 1.5rem; }
  .counter-single-box { padding: 10px 4px; }
  .honor-counters [class*="col-"]:not(:first-child) .counter-single-box::before { height: 50%; }
  .service-area .row.g-4 { gap: 1rem; }
  .service-box-inner { padding: 20px 16px; }
  .em-service-title h2 { font-size: 1.1rem; }
  .em-service-icon img { width: 48px; height: 48px; }
  .service-number h1 { font-size: 2rem; }
  .about-text2, .about-text { font-size: 0.95rem; }
  .founder-quote cite { font-size: 0.9rem; margin-top: 12px; }
  .dreamit-about-thumb1 .about-img { min-height: 240px; }
  .skill-img { min-height: 220px; }
  .skill-thumb-content { padding: 16px 20px; bottom: 16px; right: 16px; font-size: 0.9rem; }
  .skill-title h3 { font-size: 1.35rem; }
  .process-heading { font-size: 1.35rem; }
  .process-card { padding: 20px 16px; }
  .process-title h3 { font-size: 1.05rem; }
  .process-title p { font-size: 0.85rem; }
  .process-desc { font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-grid .col-12 { margin-bottom: 0; }
  .faq-contact-row .col-md-12:first-child { margin-bottom: 24px; }
  .contract-form-bg { padding: 20px 16px; }
  .contact-form-title h4 { font-size: 1.2rem; }
  .contact-form-title p { font-size: 0.9rem; }
  .form_box input, .form_box textarea { padding: 12px 14px; font-size: 16px; }
  .quote_button .btn { padding: 12px 24px; font-size: 0.95rem; min-height: 44px; }
  .widget-service { padding: 18px 16px; }
  .widget-service h6 { font-size: 0.9rem; }
  .app-cta-section { padding: 48px 16px; min-height: 320px; }
  .app-cta-title { font-size: 1.25rem; }
  .app-cta-accent { font-size: 1.1rem; }
  .app-cta-buttons { margin-bottom: 24px; gap: 12px; }
  .app-cta-btn-img { height: 40px; }
  .footer-middle { padding-top: 40px; }
  .footer-bg { padding-bottom: 24px; }
  .footer-row > [class*="col-"] { margin-bottom: 20px; }
  .widget-title { font-size: 1rem; margin-bottom: 12px; }
  .company-info-desc p { font-size: 0.9rem; }
  .footer-logo img { height: 40px; }
  .footer-bottom-area { padding: 20px 0; padding-bottom: 72px; }
  .footer-bottom-content p { font-size: 0.85rem; }
  .follow-company-icon a { width: 44px; height: 44px; }
  .logo img { height: 48px; }
  #sticky-header { padding: 10px 0; }
  .menu-toggle { width: 40px; height: 40px; top: 14px; right: 14px; font-size: 22px; }
  .scroll-area { bottom: 16px; right: 16px; }
  .go-top { width: 44px; height: 44px; font-size: 16px; }
  .breadcumb-area { padding-top: 88px; padding-bottom: 24px; }
  .breadcumb-content h1 { font-size: 1.35rem; }
  .breadcumb-content ul { font-size: 0.85rem; }
  .feature-area.style-two { padding-top: 32px; padding-bottom: 48px; }
}

/* Touch-friendly: ensure tap targets */
@media (hover: none) and (pointer: coarse) {
  .consen_menu a { min-height: 44px; display: inline-flex; align-items: center; }
  .banner-buttons a { min-height: 44px; }
  .quote_button .btn { min-height: 48px; }
}

/* Bootstrap icons fallback (minimal) */
.bi::before { font-style: normal; }
.bi-telephone::before { content: '📞'; }
.bi-plus::before { content: '+'; }
.bi-arrow-right::before { content: '→'; }
.bi-facebook::before { content: 'f'; font-family: inherit; font-weight: 700; }
.bi-instagram::before { content: '📷'; }
.bi-whatsapp::before { content: '💬'; }
.bi-youtube::before { content: '▶'; font-family: inherit; }
.bi-envelope::before { content: '✉'; }
.fa-play::before { content: '▶'; font-style: normal; }
.fas.fa-arrow-up::before { content: '↑'; font-style: normal; font-weight: bold; }

/* Gallery section */
.gallery-area {
  padding: 90px 0 70px;
  background: #0f0a22;
}

.gallery-subtitle {
  color: #c8c6d3;
  margin-top: 10px;
}

.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1333;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Separate gallery page masonry */
.gallery-page-area {
  padding: 130px 0 80px;
  background: #0f0a22;
  min-height: 100vh;
}

.gallery-masonry-grid {
  column-count: 3;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
}

.masonry-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1333;
}

.masonry-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .gallery-masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .gallery-masonry-grid {
    column-count: 1;
  }
}

